Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 0x1234PAB (0.18 sec)

  1. src/cmd/compile/internal/syntax/scanner_test.go

    		{FloatLit, "0x1.2gp1a", "0x1.2 gp1a", "hexadecimal mantissa requires a 'p' exponent"},
    		{FloatLit, "0x0p", "0x0p", "exponent has no digits"},
    		{FloatLit, "0xeP-", "0xeP-", "exponent has no digits"},
    		{FloatLit, "0x1234PAB", "0x1234P AB", "exponent has no digits"},
    		{FloatLit, "0x1.2p1a", "0x1.2p1 a", ""},
    
    		{ImagLit, "0xf00.bap+12i", "0xf00.bap+12i", ""},
    
    		// separators
    		{IntLit, "0b_1000_0001", "0b_1000_0001", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  2. src/text/scanner/scanner_test.go

    		{Float, "0x1.2gp1a", "0x1.2 gp1a", "hexadecimal mantissa requires a 'p' exponent"},
    		{Float, "0x0p", "0x0p", "exponent has no digits"},
    		{Float, "0xeP-", "0xeP-", "exponent has no digits"},
    		{Float, "0x1234PAB", "0x1234P AB", "exponent has no digits"},
    		{Float, "0x1.2p1a", "0x1.2p1 a", ""},
    
    		// separators
    		{Int, "0b_1000_0001", "0b_1000_0001", ""},
    		{Int, "0o_600", "0o_600", ""},
    		{Int, "0_466", "0_466", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  3. src/go/scanner/scanner_test.go

    		{token.FLOAT, "0x0p", "0x0p", "exponent has no digits"},
    		{token.FLOAT, "0xeP-", "0xeP-", "exponent has no digits"},
    		{token.FLOAT, "0x1234PAB", "0x1234P AB", "exponent has no digits"},
    		{token.FLOAT, "0x1.2p1a", "0x1.2p1 a", ""},
    
    		{token.IMAG, "0xf00.bap+12i", "0xf00.bap+12i", ""},
    
    		// separators
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
Back to top