Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for LatinOffset (0.34 sec)

  1. src/unicode/tables.go

    		{0x1d173, 0x1d17a, 1},
    		{0xe0001, 0xe0020, 31},
    		{0xe0021, 0xe007f, 1},
    		{0xf0000, 0xffffd, 1},
    		{0x100000, 0x10fffd, 1},
    	},
    	LatinOffset: 2,
    }
    
    var _Cc = &RangeTable{
    	R16: []Range16{
    		{0x0000, 0x001f, 1},
    		{0x007f, 0x009f, 1},
    	},
    	LatinOffset: 2,
    }
    
    var _Cf = &RangeTable{
    	R16: []Range16{
    		{0x00ad, 0x0600, 1363},
    		{0x0601, 0x0605, 1},
    		{0x061c, 0x06dd, 193},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  2. src/unicode/letter_test.go

    		Scripts,
    	}
    	for _, m := range maps {
    		for name, tab := range m {
    			i := 0
    			for i < len(tab.R16) && tab.R16[i].Hi <= MaxLatin1 {
    				i++
    			}
    			if tab.LatinOffset != i {
    				t.Errorf("%s: LatinOffset=%d, want %d", name, tab.LatinOffset, i)
    			}
    		}
    	}
    }
    
    func TestSpecialCaseNoMapping(t *testing.T) {
    	// Issue 25636
    	// no change for rune 'A', zero delta, under upper/lower/title case change.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  3. src/unicode/letter.go

    // The two slices must be in sorted order and non-overlapping.
    // Also, R32 should contain only values >= 0x10000 (1<<16).
    type RangeTable struct {
    	R16         []Range16
    	R32         []Range32
    	LatinOffset int // number of entries in R16 with Hi <= MaxLatin1
    }
    
    // Range16 represents of a range of 16-bit Unicode code points. The range runs from Lo to Hi
    // inclusive and has the specified stride.
    type Range16 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. src/go/internal/gccgoimporter/testdata/unicode.gox

    var Adlam <type 1>;
    var Ahom <type 1>;
    var Anatolian_Hieroglyphs <type 1>;
    var Arabic <type 1>;
    var Armenian <type 1>;
    var Avestan <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)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Range16.Stride", Field, 0},
    		{"Range32", Type, 0},
    		{"Range32.Hi", Field, 0},
    		{"Range32.Lo", Field, 0},
    		{"Range32.Stride", Field, 0},
    		{"RangeTable", Type, 0},
    		{"RangeTable.LatinOffset", Field, 1},
    		{"RangeTable.R16", Field, 0},
    		{"RangeTable.R32", Field, 0},
    		{"Regional_Indicator", Var, 10},
    		{"Rejang", Var, 0},
    		{"ReplacementChar", Const, 0},
    		{"Runic", 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)
  6. api/go1.1.txt

    pkg unicode, const TitleCase = 2
    pkg unicode, const UpperCase = 0
    pkg unicode, const UpperLower = 1114112
    pkg unicode, const Version = "6.2.0"
    pkg unicode, type RangeTable struct, LatinOffset int
    pkg unicode, var Chakma *RangeTable
    pkg unicode, var Meroitic_Cursive *RangeTable
    pkg unicode, var Meroitic_Hieroglyphs *RangeTable
    pkg unicode, var Miao *RangeTable
    pkg unicode, var Sharada *RangeTable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top