Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for newBidiTrie (0.16 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/prop.go

    package bidi
    
    import "unicode/utf8"
    
    // Properties provides access to BiDi properties of runes.
    type Properties struct {
    	entry uint8
    	last  uint8
    }
    
    var trie = newBidiTrie(0)
    
    // TODO: using this for bidirule reduces the running time by about 5%. Consider
    // if this is worth exposing or if we can find a way to speed up the Class
    // method.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 5.7K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go

    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    	}
    	return 0
    }
    
    // bidiTrie. Total size: 16128 bytes (15.75 KiB). Checksum: 8122d83e461996f.
    type bidiTrie struct{}
    
    func newBidiTrie(i int) *bidiTrie {
    	return &bidiTrie{}
    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *bidiTrie) lookupValue(n uint32, b byte) uint8 {
    	switch {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 110.9K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go

    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    	}
    	return 0
    }
    
    // bidiTrie. Total size: 15744 bytes (15.38 KiB). Checksum: b4c3b70954803b86.
    type bidiTrie struct{}
    
    func newBidiTrie(i int) *bidiTrie {
    	return &bidiTrie{}
    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *bidiTrie) lookupValue(n uint32, b byte) uint8 {
    	switch {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 109.2K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go

    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    	}
    	return 0
    }
    
    // bidiTrie. Total size: 16896 bytes (16.50 KiB). Checksum: 6f0927067913dc6d.
    type bidiTrie struct{}
    
    func newBidiTrie(i int) *bidiTrie {
    	return &bidiTrie{}
    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *bidiTrie) lookupValue(n uint32, b byte) uint8 {
    	switch {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 118.9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go

    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    	}
    	return 0
    }
    
    // bidiTrie. Total size: 16512 bytes (16.12 KiB). Checksum: 2a9cf1317f2ffaa.
    type bidiTrie struct{}
    
    func newBidiTrie(i int) *bidiTrie {
    	return &bidiTrie{}
    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *bidiTrie) lookupValue(n uint32, b byte) uint8 {
    	switch {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 116.6K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go

    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    	}
    	return 0
    }
    
    // bidiTrie. Total size: 17408 bytes (17.00 KiB). Checksum: df85fcbfe9b8377f.
    type bidiTrie struct{}
    
    func newBidiTrie(i int) *bidiTrie {
    	return &bidiTrie{}
    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *bidiTrie) lookupValue(n uint32, b byte) uint8 {
    	switch {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 120.9K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/bidi/tables15.0.0.go

    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    	}
    	return 0
    }
    
    // bidiTrie. Total size: 19904 bytes (19.44 KiB). Checksum: b1f201ed2debb6c8.
    type bidiTrie struct{}
    
    func newBidiTrie(i int) *bidiTrie {
    	return &bidiTrie{}
    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *bidiTrie) lookupValue(n uint32, b byte) uint8 {
    	switch {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 127.4K bytes
    - Viewed (0)
Back to top