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/chromium_org/third_party/icu/source/i18n/
usearch.cpp 676 * @param textoffset current offset
683 int32_t textoffset,
686 if (textoffset < textlength) {
687 int32_t temp = textoffset;
699 return textoffset;
706 * @param textoffset current offset, one offset away from the last character
713 int32_t textoffset)
717 textoffset < textlength) {
718 int32_t temp = textoffset;
722 return getNextBaseOffset(text, textoffset, textlength)
4335 int32_t textoffset = ucol_getOffset(coleiter); local
4449 int32_t textoffset = ucol_getOffset(coleiter); local
4563 int32_t textoffset = ucol_getOffset(coleiter); local
4705 int32_t textoffset = ucol_getOffset(coleiter); local
    [all...]
smpdtfmt.cpp     [all...]
  /external/icu/icu4c/source/i18n/
usearch.cpp 663 * @param textoffset current offset
670 int32_t textoffset,
673 if (textoffset < textlength) {
674 int32_t temp = textoffset;
686 return textoffset;
693 * @param textoffset current offset, one offset away from the last character
700 int32_t textoffset)
704 textoffset < textlength) {
705 int32_t temp = textoffset;
709 return getNextBaseOffset(text, textoffset, textlength)
4342 int32_t textoffset = ucol_getOffset(coleiter); local
4456 int32_t textoffset = ucol_getOffset(coleiter); local
4570 int32_t textoffset = ucol_getOffset(coleiter); local
4716 int32_t textoffset = ucol_getOffset(coleiter); local
    [all...]
smpdtfmt.cpp     [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/location_bar/
bubble_decoration.mm 78 CGFloat textOffset = NSMinX(decoration_frame);
92 textOffset = NSMaxX(imageRect) + kIconLabelPadding;
97 textRect.origin.x = textOffset;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTextControlSingleLine.cpp 180 LayoutPoint textOffset;
182 textOffset = innerEditorRenderer->location();
184 textOffset += toLayoutSize(editingViewPortElement()->renderBox()->location());
186 textOffset += toLayoutSize(containerRenderer->location());
187 placeholderBox->setLocation(textOffset);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp 602 unsigned textOffset = currentPos.offsetInLeafNode();
606 if (textOffset <= box->start() + box->len()) {
607 if (textOffset > box->start())
612 if (box == lastTextBox || textOffset != box->start() + box->len() + 1)
624 if (otherBox == lastTextBox || (otherBox->renderer() == textRenderer && toInlineTextBox(otherBox)->start() > textOffset))
633 if (otherBox == lastTextBox || (otherBox->renderer() == textRenderer && toInlineTextBox(otherBox)->start() > textOffset))
726 unsigned textOffset = currentPos.offsetInLeafNode();
730 if (textOffset <= box->end()) {
731 if (textOffset >= box->start())
736 if (box == lastTextBox || textOffset != box->start() + box->len()
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/
gradient_button_cell.mm 684 NSPoint textOffset = NSZeroPoint;
700 textOffset = NSMakePoint(textLeft,
703 [title drawAtPoint:textOffset];
717 [title drawAtPoint:textOffset];
  /external/chromium_org/third_party/icu/source/i18n/unicode/
smpdtfmt.h     [all...]
  /external/icu/icu4c/source/i18n/unicode/
smpdtfmt.h     [all...]

Completed in 4230 milliseconds