/external/fonttools/Lib/fontTools/ttLib/tables/ |
T_S_I__0.py | 8 def fixlongs(glyphID, textLength, textOffset): 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)
|
T_S_I__1.py | 15 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/icu4c/source/i18n/ |
usearch.cpp | 665 * @param textoffset current offset 672 int32_t textoffset, 675 if (textoffset < textlength) { 676 int32_t temp = textoffset; 688 return textoffset; 695 * @param textoffset current offset, one offset away from the last character 702 int32_t textoffset) 706 textoffset < textlength) { 707 int32_t temp = textoffset; 711 return getNextBaseOffset(text, textoffset, textlength) 4431 int32_t textoffset = ucol_getOffset(coleiter); local 4545 int32_t textoffset = ucol_getOffset(coleiter); local 4659 int32_t textoffset = ucol_getOffset(coleiter); local 4805 int32_t textoffset = ucol_getOffset(coleiter); local [all...] |
smpdtfmt.cpp | [all...] |
/frameworks/support/design/src/android/support/design/widget/ |
CollapsingTextHelper.java | 375 float textOffset = (textHeight / 2) - mTextPaint.descent(); 376 mCollapsedDrawY = mCollapsedBounds.centerY() + textOffset; 407 float textOffset = (textHeight / 2) - mTextPaint.descent(); 408 mExpandedDrawY = mExpandedBounds.centerY() + textOffset;
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
StringSearch.java | [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
StringSearch.java | [all...] |
/external/skia/src/core/ |
SkCanvas.cpp | [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
smpdtfmt.h | [all...] |