Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for copySlice (0.11 sec)

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

    		return i.returnSlice(inCopyStart, i.p)
    	} else if inCopyStart < i.p {
    		i.rb.src.copySlice(i.buf[outCopyStart:], inCopyStart, i.p)
    	}
    	return i.buf[:outp]
    doNorm:
    	// Insert what we have decomposed so far in the reorderBuffer.
    	// As we will only reorder, there will always be enough room.
    	i.rb.src.copySlice(i.buf[outCopyStart:], inCopyStart, i.p)
    	i.rb.insertDecomposed(i.buf[0:outp])
    	return doNormDecomposed(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    		return i.returnSlice(inCopyStart, i.p)
    	} else if inCopyStart < i.p {
    		i.rb.src.copySlice(i.buf[outCopyStart:], inCopyStart, i.p)
    	}
    	return i.buf[:outp]
    doNorm:
    	// Insert what we have decomposed so far in the reorderBuffer.
    	// As we will only reorder, there will always be enough room.
    	i.rb.src.copySlice(i.buf[outCopyStart:], inCopyStart, i.p)
    	i.rb.insertDecomposed(i.buf[0:outp])
    	return doNormDecomposed(i)
    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/composition.go

    }
    
    // insertSingle inserts an entry in the reorderBuffer for the rune at
    // position i. info is the runeInfo for the rune at position i.
    func (rb *reorderBuffer) insertSingle(src input, i int, info Properties) {
    	src.copySlice(rb.byte[rb.nbyte:], i, i+int(info.size))
    	rb.insertOrdered(info)
    }
    
    // insertCGJ inserts a Combining Grapheme Joiner (0x034f) into rb.
    func (rb *reorderBuffer) insertCGJ() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/unicode/norm/composition.go

    }
    
    // insertSingle inserts an entry in the reorderBuffer for the rune at
    // position i. info is the runeInfo for the rune at position i.
    func (rb *reorderBuffer) insertSingle(src input, i int, info Properties) {
    	src.copySlice(rb.byte[rb.nbyte:], i, i+int(info.size))
    	rb.insertOrdered(info)
    }
    
    // insertCGJ inserts a Combining Grapheme Joiner (0x034f) into rb.
    func (rb *reorderBuffer) insertCGJ() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
Back to top