Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for nextDecomposed (0.23 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    			return seg
    		}
    		i.rb.insertUnsafe(input{bytes: d}, j, info)
    		j += int(info.size)
    	}
    	i.multiSeg = nil
    	i.next = nextComposed
    	return doNormComposed(i)
    }
    
    // nextDecomposed is the implementation of Next for forms NFD and NFKD.
    func nextDecomposed(i *Iter) (next []byte) {
    	outp := 0
    	inCopyStart, outCopyStart := i.p, 0
    	for {
    		if sz := int(i.info.size); sz <= 1 {
    			i.rb.ss = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. 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)
  4. src/vendor/golang.org/x/text/unicode/norm/iter.go

    			return seg
    		}
    		i.rb.insertUnsafe(input{bytes: d}, j, info)
    		j += int(info.size)
    	}
    	i.multiSeg = nil
    	i.next = nextComposed
    	return doNormComposed(i)
    }
    
    // nextDecomposed is the implementation of Next for forms NFD and NFKD.
    func nextDecomposed(i *Iter) (next []byte) {
    	outp := 0
    	inCopyStart, outCopyStart := i.p, 0
    	for {
    		if sz := int(i.info.size); sz <= 1 {
    			i.rb.ss = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
Back to top