Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Hex_Digit (0.29 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/stream/EncodedStream.java

                this.delegate = delegate;
            }
    
            @Override
            public void write(int b) throws IOException {
                delegate.write(HEX_DIGIT[(b >> 4) & 0x0f]);
                delegate.write(HEX_DIGIT[b & 0x0f]);
            }
    
            @Override
            public void flush() throws IOException {
                delegate.flush();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/unicode/script_test.go

    	{0x00a0, "Z"},
    }
    
    var inPropTest = []T{
    	{0x0046, "ASCII_Hex_Digit"},
    	{0x200F, "Bidi_Control"},
    	{0x2212, "Dash"},
    	{0xE0001, "Deprecated"},
    	{0x00B7, "Diacritic"},
    	{0x30FE, "Extender"},
    	{0xFF46, "Hex_Digit"},
    	{0x2E17, "Hyphen"},
    	{0x2FFB, "IDS_Binary_Operator"},
    	{0x2FF3, "IDS_Trinary_Operator"},
    	{0xFA6A, "Ideographic"},
    	{0x200D, "Join_Control"},
    	{0x0EC4, "Logical_Order_Exception"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 14:09:01 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  3. src/go/internal/gccgoimporter/testdata/unicode.gox

    var Greek <type 1>;
    var Gujarati <type 1>;
    var Gurmukhi <type 1>;
    var Han <type 1>;
    var Hangul <type 1>;
    var Hanunoo <type 1>;
    var Hatran <type 1>;
    var Hebrew <type 1>;
    var Hex_Digit <type 1>;
    var Hiragana <type 1>;
    var Hyphen <type 1>;
    var IDS_Binary_Operator <type 1>;
    var IDS_Trinary_Operator <type 1>;
    var Ideographic <type 1>;
    var Imperial_Aramaic <type 1>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    octal_byte_value = `\` octal_digit octal_digit octal_digit .
    hex_byte_value   = `\` "x" hex_digit hex_digit .
    little_u_value   = `\` "u" hex_digit hex_digit hex_digit hex_digit .
    big_u_value      = `\` "U" hex_digit hex_digit hex_digit hex_digit
                               hex_digit hex_digit hex_digit hex_digit .
    escaped_char     = `\` ( "a" | "b" | "f" | "n" | "r" | "t" | "v" | `\` | "'" | `"` ) .
    </pre>
    
    <pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. doc/go_spec.html

    octal_byte_value = `\` octal_digit octal_digit octal_digit .
    hex_byte_value   = `\` "x" hex_digit hex_digit .
    little_u_value   = `\` "u" hex_digit hex_digit hex_digit hex_digit .
    big_u_value      = `\` "U" hex_digit hex_digit hex_digit hex_digit
                               hex_digit hex_digit hex_digit hex_digit .
    escaped_char     = `\` ( "a" | "b" | "f" | "n" | "r" | "t" | "v" | `\` | "'" | `"` ) .
    </pre>
    
    <pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  6. src/unicode/tables.go

    	Extender                           = _Extender                           // Extender is the set of Unicode characters with property Extender.
    	Hex_Digit                          = _Hex_Digit                          // Hex_Digit is the set of Unicode characters with property Hex_Digit.
    	Hyphen                             = _Hyphen                             // Hyphen is the set of Unicode characters with property Hyphen.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Gurmukhi", Var, 0},
    		{"Han", Var, 0},
    		{"Hangul", Var, 0},
    		{"Hanifi_Rohingya", Var, 13},
    		{"Hanunoo", Var, 0},
    		{"Hatran", Var, 5},
    		{"Hebrew", Var, 0},
    		{"Hex_Digit", Var, 0},
    		{"Hiragana", Var, 0},
    		{"Hyphen", Var, 0},
    		{"IDS_Binary_Operator", Var, 0},
    		{"IDS_Trinary_Operator", Var, 0},
    		{"Ideographic", Var, 0},
    		{"Imperial_Aramaic", Var, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg unicode, var Gurmukhi *RangeTable
    pkg unicode, var Han *RangeTable
    pkg unicode, var Hangul *RangeTable
    pkg unicode, var Hanunoo *RangeTable
    pkg unicode, var Hebrew *RangeTable
    pkg unicode, var Hex_Digit *RangeTable
    pkg unicode, var Hiragana *RangeTable
    pkg unicode, var Hyphen *RangeTable
    pkg unicode, var IDS_Binary_Operator *RangeTable
    pkg unicode, var IDS_Trinary_Operator *RangeTable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top