Home
last modified time | relevance | path

Searched refs:textPos (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/third_party/icu/source/i18n/
Dtitletrn.cpp119 int32_t textPos, delta, result, locCache=0; in handleTransliterate() local
121 for(textPos=offsets.start; textPos<offsets.limit;) { in handleTransliterate()
122 csc.cpStart=textPos; in handleTransliterate()
123 c=text.char32At(textPos); in handleTransliterate()
124 csc.cpLimit=textPos+=U16_LENGTH(c); in handleTransliterate()
154 text.handleReplaceBetween(csc.cpStart, textPos, tmp); in handleTransliterate()
156 textPos+=delta; in handleTransliterate()
163 offsets.start=textPos; in handleTransliterate()
Dcasetrn.cpp152 int32_t textPos, delta, result, locCache=0; in handleTransliterate() local
154 for(textPos=offsets.start; textPos<offsets.limit;) { in handleTransliterate()
155 csc.cpStart=textPos; in handleTransliterate()
156 c=text.char32At(textPos); in handleTransliterate()
157 csc.cpLimit=textPos+=U16_LENGTH(c); in handleTransliterate()
180 text.handleReplaceBetween(csc.cpStart, textPos, tmp); in handleTransliterate()
182 textPos+=delta; in handleTransliterate()
188 offsets.start=textPos; in handleTransliterate()
/external/icu/icu4c/source/i18n/
Dtitletrn.cpp119 int32_t textPos, delta, result, locCache=0; in handleTransliterate() local
121 for(textPos=offsets.start; textPos<offsets.limit;) { in handleTransliterate()
122 csc.cpStart=textPos; in handleTransliterate()
123 c=text.char32At(textPos); in handleTransliterate()
124 csc.cpLimit=textPos+=U16_LENGTH(c); in handleTransliterate()
154 text.handleReplaceBetween(csc.cpStart, textPos, tmp); in handleTransliterate()
156 textPos+=delta; in handleTransliterate()
163 offsets.start=textPos; in handleTransliterate()
Dcasetrn.cpp152 int32_t textPos, delta, result, locCache=0; in handleTransliterate() local
154 for(textPos=offsets.start; textPos<offsets.limit;) { in handleTransliterate()
155 csc.cpStart=textPos; in handleTransliterate()
156 c=text.char32At(textPos); in handleTransliterate()
157 csc.cpLimit=textPos+=U16_LENGTH(c); in handleTransliterate()
180 text.handleReplaceBetween(csc.cpStart, textPos, tmp); in handleTransliterate()
182 textPos+=delta; in handleTransliterate()
188 offsets.start=textPos; in handleTransliterate()
/external/icu/icu4c/source/common/
Dschriter.cpp41 int32_t textPos) in StringCharacterIterator() argument
42 : UCharCharacterIterator(textStr.getBuffer(), textStr.length(), textPos), in StringCharacterIterator()
52 int32_t textPos) in StringCharacterIterator() argument
53 : UCharCharacterIterator(textStr.getBuffer(), textStr.length(), textBegin, textEnd, textPos), in StringCharacterIterator()
/external/chromium_org/third_party/icu/source/common/
Dschriter.cpp41 int32_t textPos) in StringCharacterIterator() argument
42 : UCharCharacterIterator(textStr.getBuffer(), textStr.length(), textPos), in StringCharacterIterator()
52 int32_t textPos) in StringCharacterIterator() argument
53 : UCharCharacterIterator(textStr.getBuffer(), textStr.length(), textBegin, textEnd, textPos), in StringCharacterIterator()
/external/chromium_org/third_party/WebKit/Source/platform/
DDragImage.cpp180 …IntPoint textPos(kDragLabelBorderX, imageSize.height() - (kLabelBorderYOffset + urlFont.fontMetric… in create() local
182 buffer->context()->drawText(urlFont, TextRunPaintInfo(textRun), textPos); in create()
190 …IntPoint textPos(kDragLabelBorderX, kDragLabelBorderY + labelFont.fontDescription().computedPixelS… in create() local
194 textPos.setX(availableWidth - ceilf(textWidth)); in create()
196 buffer->context()->drawBidiText(labelFont, TextRunPaintInfo(textRun), textPos); in create()
/external/icu/icu4c/source/common/unicode/
Dschriter.h64 int32_t textPos);
85 int32_t textPos);
/external/chromium_org/third_party/icu/source/common/unicode/
Dschriter.h64 int32_t textPos);
85 int32_t textPos);
/external/skia/experimental/Intersection/
DEdgeDemo.cpp276 SkPoint textPos[testStrLen]; in drawLetters() local
290 textPos[x].fX = bias + widths[x]; in drawLetters()
291 textPos[x].fY = height / 2; in drawLetters()
306 paint.getPosTextPath(maskStr, testStrLen, textPos, &path); in drawLetters()
316 paint.getPosTextPath(testStr, testStrLen, textPos, &path); in drawLetters()
/external/chromium_org/third_party/skia/experimental/Intersection/
DEdgeDemo.cpp276 SkPoint textPos[testStrLen]; in drawLetters() local
290 textPos[x].fX = bias + widths[x]; in drawLetters()
291 textPos[x].fY = height / 2; in drawLetters()
306 paint.getPosTextPath(maskStr, testStrLen, textPos, &path); in drawLetters()
316 paint.getPosTextPath(testStr, testStrLen, textPos, &path); in drawLetters()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DInlineTextBox.cpp318 …float widthOfVisibleText = renderer().width(m_start, offset, textPos(), flowIsLTR ? LTR : RTL, isF… in placeEllipsisBox()
423 …LayoutUnit widthOfVisibleText = renderer().width(m_start, m_truncation, textPos(), isLeftToRightDi… in paint()
888 …width = renderer().width(m_start, m_truncation, textPos(), isLeftToRightDirection() ? LTR : RTL, i… in paintDecoration()
1127 …renderer().width(m_start, paintStart - m_start, textPos(), isLeftToRightDirection() ? LTR : RTL, i… in paintCompositionUnderline()
1130 …renderer().width(paintStart, paintEnd - paintStart, textPos() + start, isLeftToRightDirection() ? … in paintCompositionUnderline()
1160 float InlineTextBox::textPos() const in textPos() function in blink::InlineTextBox
1281 …TextRun run(string, textPos(), expansion(), expansionBehavior(), direction(), dirOverride() || sty… in constructTextRun()
DInlineTextBox.h151 float textPos() const; // returns the x position relative to the left start of the text line.