Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for hasDecomposition (0.16 sec)

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

    func (rb *reorderBuffer) insertFlush(src input, i int, info Properties) insertErr {
    	if rune := src.hangul(i); rune != 0 {
    		rb.decomposeHangul(rune)
    		return iSuccess
    	}
    	if info.hasDecomposition() {
    		return rb.insertDecomposed(info.Decomposition())
    	}
    	rb.insertSingle(src, i, info)
    	return iSuccess
    }
    
    // insertUnsafe inserts the given rune in the buffer ordered by CCC.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    func (rb *reorderBuffer) insertFlush(src input, i int, info Properties) insertErr {
    	if rune := src.hangul(i); rune != 0 {
    		rb.decomposeHangul(rune)
    		return iSuccess
    	}
    	if info.hasDecomposition() {
    		return rb.insertDecomposed(info.Decomposition())
    	}
    	rb.insertSingle(src, i, info)
    	return iSuccess
    }
    
    // insertUnsafe inserts the given rune in the buffer ordered by CCC.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    func (p Properties) combinesForward() bool  { return p.flags&0x20 != 0 }
    func (p Properties) combinesBackward() bool { return p.flags&0x8 != 0 } // == isMaybe
    func (p Properties) hasDecomposition() bool { return p.flags&0x4 != 0 } // == isNoD
    
    func (p Properties) isInert() bool {
    	return p.flags&qcInfoMask == 0 && p.ccc == 0
    }
    
    func (p Properties) multiSegment() bool {
    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/forminfo.go

    func (p Properties) combinesForward() bool  { return p.flags&0x20 != 0 }
    func (p Properties) combinesBackward() bool { return p.flags&0x8 != 0 } // == isMaybe
    func (p Properties) hasDecomposition() bool { return p.flags&0x4 != 0 } // == isNoD
    
    func (p Properties) isInert() bool {
    	return p.flags&qcInfoMask == 0 && p.ccc == 0
    }
    
    func (p Properties) multiSegment() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top