HomeSort by relevance Sort by last modified time
    Searched full:textoffset (Results 1 - 12 of 12) sorted by null

  /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...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
TextField.java 106 protected float fontOffset, textHeight, textOffset;
143 x -= textOffset + fontOffset - style.font.getData().cursorX - glyphPositions.get(visibleTextStart);
251 textOffset = visibleWidth - (glyphPositions[visibleTextEnd] - startX);
252 if ((textHAlign & Align.center) != 0) textOffset = Math.round(textOffset * 0.5f);
254 textOffset = startX + renderOffset;
263 if (renderOffset == 0) selectionX += textOffset;
347 font.draw(batch, displayText, x + textOffset, y, visibleTextStart, visibleTextEnd, 0, Align.left, false);
352 x + textOffset + glyphPositions.get(cursor) - glyphPositions.get(visibleTextStart) + fontOffset + font.getData().cursorX,
    [all...]
TextArea.java 254 float textOffset = cursor >= glyphPositions.size || cursorLine * 2 >= linesBreak.size ? 0
256 cursorPatch.draw(batch, x + textOffset + fontOffset + font.getData().cursorX,
354 return textOffset + fontOffset + style.font.getData().cursorX;
  /frameworks/support/design/src/android/support/design/widget/
CollapsingTextHelper.java 413 float textOffset = (textHeight / 2) - mTextPaint.descent();
414 mCollapsedDrawY = mCollapsedBounds.centerY() + textOffset;
445 float textOffset = (textHeight / 2) - mTextPaint.descent();
446 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...]
  /prebuilts/sdk/current/support/design/libs/
android-support-design.jar 

Completed in 1640 milliseconds