Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for nextComposed (0.17 sec)

  1. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    	i.rb.ss = 0
    	i.rb.insertCGJ()
    	i.next = nextDecomposed
    	i.rb.ss.first(i.info)
    	buf := doNormDecomposed(i)
    	return buf
    }
    
    // nextComposed is the implementation of Next for forms NFC and NFKC.
    func nextComposed(i *Iter) []byte {
    	outp, startp := 0, i.p
    	var prevCC uint8
    	for {
    		if !i.info.isYesC() {
    			goto doNorm
    		}
    		prevCC = i.info.tccc
    		sz := int(i.info.size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/norm/iter.go

    	i.rb.ss = 0
    	i.rb.insertCGJ()
    	i.next = nextDecomposed
    	i.rb.ss.first(i.info)
    	buf := doNormDecomposed(i)
    	return buf
    }
    
    // nextComposed is the implementation of Next for forms NFC and NFKC.
    func nextComposed(i *Iter) []byte {
    	outp, startp := 0, i.p
    	var prevCC uint8
    	for {
    		if !i.info.isYesC() {
    			goto doNorm
    		}
    		prevCC = i.info.tccc
    		sz := int(i.info.size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	compatibility: false,
    	info:          lookupInfoNFC,
    	nextMain:      nextComposed,
    }, {
    	form:          NFD,
    	composing:     false,
    	compatibility: false,
    	info:          lookupInfoNFC,
    	nextMain:      nextDecomposed,
    }, {
    	form:          NFKC,
    	composing:     true,
    	compatibility: true,
    	info:          lookupInfoNFKC,
    	nextMain:      nextComposed,
    }, {
    	form:          NFKD,
    	composing:     false,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	compatibility: false,
    	info:          lookupInfoNFC,
    	nextMain:      nextComposed,
    }, {
    	form:          NFD,
    	composing:     false,
    	compatibility: false,
    	info:          lookupInfoNFC,
    	nextMain:      nextDecomposed,
    }, {
    	form:          NFKC,
    	composing:     true,
    	compatibility: true,
    	info:          lookupInfoNFKC,
    	nextMain:      nextComposed,
    }, {
    	form:          NFKD,
    	composing:     false,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top