Home
last modified time | relevance | path

Searched refs:textOffset (Results 1 – 8 of 8) sorted by relevance

/external/fonttools/Lib/fontTools/ttLib/tables/
DT_S_I__0.py8 def fixlongs(glyphID, textLength, textOffset): argument
9 return int(glyphID), int(textLength), textOffset
21 glyphID, textLength, textOffset = fixlongs(*struct.unpack(tsi0Format, data[:size]))
22 indices.append((glyphID, textLength, textOffset))
35 for index, textLength, textOffset in self.indices:
36 data = data + struct.pack(tsi0Format, index, textLength, textOffset)
38 for index, textLength, textOffset in self.extra_indices:
39 data = data + struct.pack(tsi0Format, index, textLength, textOffset)
DT_S_I__1.py15 glyphID, textLength, textOffset = indextable.indices[i]
21 text = data[textOffset:textOffset+textLength]
28 extraCode, textLength, textOffset = indextable.extra_indices[i]
31 textLength = len(data) - textOffset
34 text = data[textOffset:textOffset+textLength]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DStringSearch.java1507 int textOffset = textIter_.getOffset(); in handleNextCommonImpl() local
1510 if (search(textOffset, match)) { in handleNextCommonImpl()
1534 int textOffset; in handlePreviousCommonImpl() local
1538 textOffset = search_.matchedIndex_ + search_.matchedLength() - 1; in handlePreviousCommonImpl()
1553 textOffset = textIter_.getOffset(); in handlePreviousCommonImpl()
1556 textOffset = textIter_.getOffset(); in handlePreviousCommonImpl()
1560 if (searchBackwards(textOffset, match)) { in handlePreviousCommonImpl()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
DStringSearch.java1523 int textOffset = textIter_.getOffset(); in handleNextCommonImpl() local
1526 if (search(textOffset, match)) { in handleNextCommonImpl()
1550 int textOffset; in handlePreviousCommonImpl() local
1554 textOffset = search_.matchedIndex_ + search_.matchedLength() - 1; in handlePreviousCommonImpl()
1569 textOffset = textIter_.getOffset(); in handlePreviousCommonImpl()
1572 textOffset = textIter_.getOffset(); in handlePreviousCommonImpl()
1576 if (searchBackwards(textOffset, match)) { in handlePreviousCommonImpl()
/external/icu/icu4c/source/i18n/
Dusearch.cpp4520 int32_t textOffset = ucol_getOffset(strsrch->textIter); in usearch_handleNextExact() local
4524 if (usearch_search(strsrch, textOffset, &start, &end, status)) { in usearch_handleNextExact()
4635 int32_t textOffset = ucol_getOffset(strsrch->textIter); in usearch_handleNextCanonical() local
4639 if (usearch_search(strsrch, textOffset, &start, &end, status)) { in usearch_handleNextCanonical()
4752 int32_t textOffset; in usearch_handlePreviousExact() local
4756 textOffset = strsrch->search->matchedIndex + strsrch->search->matchedLength - 1; in usearch_handlePreviousExact()
4775 textOffset = ucol_getOffset(strsrch->textIter); in usearch_handlePreviousExact()
4778 textOffset = ucol_getOffset(strsrch->textIter); in usearch_handlePreviousExact()
4784 if (usearch_searchBackwards(strsrch, textOffset, &start, &end, status)) { in usearch_handlePreviousExact()
4905 int32_t textOffset; in usearch_handlePreviousCanonical() local
[all …]
Dsmpdtfmt.cpp2613 int32_t &textOffset, in matchLiterals() argument
2646 int32_t t = textOffset; in matchLiterals()
2699 if (t == textOffset && text.charAt(t) == 0x2e && in matchLiterals()
2738 for (t = textOffset; t < text.length(); t += 1) { in matchLiterals()
2749 textOffset = t; in matchLiterals()
/external/icu/icu4c/source/i18n/unicode/
Dsmpdtfmt.h1392 const UnicodeString &text, int32_t &textOffset,
/external/skia/src/core/
DSkCanvas.cpp2474 SkPoint textOffset = SkPoint::Make(0, 0); in onDrawPosText() local
2480 iter.fDevice->drawPosText(text, byteLength, &pos->fX, 2, textOffset, in onDrawPosText()
2490 SkPoint textOffset = SkPoint::Make(0, constY); in onDrawPosTextH() local
2496 iter.fDevice->drawPosText(text, byteLength, xpos, 1, textOffset, in onDrawPosTextH()