HomeSort by relevance Sort by last modified time
    Searched refs:getTextWidths (Results 1 - 25 of 37) sorted by null

1 2

  /frameworks/base/core/java/android/text/
GraphicsOperations.java 49 * Just like {@link Paint#getTextWidths}.
51 public int getTextWidths(int start, int end, float[] widths, Paint p);
SpannableStringBuilder.java     [all...]
  /external/skia/gm/
getpostextpath.cpp 52 paint.getTextWidths(text, len, &widths[0]);
verttext.cpp 60 paint.getTextWidths(gText, gLen, adv, NULL);
techtalk1.cpp 302 int count = paint.getTextWidths(text, len, widths, bounds);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
MeasureText.java 74 int count = mPaint.getTextWidths(text, 0, text.length(), widths);
TextAlign.java 55 int n = paint.getTextWidths(text, widths);
  /frameworks/base/graphics/java/android/graphics/
Paint.java     [all...]
  /external/skia/legacy/src/ports/
SkHarfBuzzFont.cpp 65 paint.getTextWidths(glyphs16, numGlyphs * sizeof(uint16_t), scalarWidths);
121 paint.getTextWidths(&glyph16, sizeof(glyph16), &width, &bounds);
  /external/skia/src/ports/
SkHarfBuzzFont.cpp 65 paint.getTextWidths(glyphs16, numGlyphs * sizeof(uint16_t), scalarWidths);
121 paint.getTextWidths(&glyph16, sizeof(glyph16), &width, &bounds);
  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
HarfbuzzSkia.cpp 89 paint.getTextWidths(glyphs16.get(), numGlyphs * sizeof(uint16_t), reinterpret_cast<SkScalar*>(advances));
161 paint.getTextWidths(&glyph16, sizeof(glyph16), &width, &bounds);
FontAndroid.cpp 363 count = paint.getTextWidths(run.characters(), count << 1, widths);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
HarfbuzzSkia.cpp 102 paint.getTextWidths(glyphs16.get(), numGlyphs * sizeof(uint16_t), reinterpret_cast<SkScalar*>(advances));
178 paint.getTextWidths(&glyph16, sizeof(glyph16), &width, &bounds);
  /external/webkit/Source/WebKit/android/plugins/
ANPPaintInterface.cpp 157 return paint->getTextWidths(text, byteLength, widths,
210 ASSIGN(i, getTextWidths);
android_npapi.h 593 int (*getTextWidths)(ANPPaint*, const void* text, uint32_t byteLength,
    [all...]
  /external/skia/bench/
PicturePlaybackBench.cpp 110 paint.getTextWidths(text, len, adv);
TextBench.cpp 65 fPaint.getTextWidths(text, len, adv);
  /frameworks/base/core/jni/android/graphics/
HarfBuzzNGFaceSkia.cpp 64 paint->getTextWidths(&glyph, sizeof(glyph), &skWidth, &skBounds);
  /cts/tests/tests/graphics/src/android/graphics/cts/
PaintTest.java 69 assertEquals(text.length(), p.getTextWidths(text, widths));
489 /** Tests all four overloads of getTextWidths are the same. */
502 assertEquals(count, p.getTextWidths(textSlice, widths[0]));
503 assertEquals(count, p.getTextWidths(textChars, start, count, widths[1]));
504 assertEquals(count, p.getTextWidths(textSpan, start, end, widths[2]));
505 assertEquals(count, p.getTextWidths(text, start, end, widths[3]));
  /cts/tests/tests/text/src/android/text/method/cts/
TouchTest.java 187 paint.getTextWidths(str, widths);
  /external/skia/include/core/
SkPaint.h 725 methods like measureText() and getTextWidths().
    [all...]
  /external/skia/legacy/include/core/
SkPaint.h 731 methods like measureText() and getTextWidths().
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
CountingTimerView.java 104 int ll = mPaint.getTextWidths(allDigits, widths);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
SuggestionStripView.java 537 final int count = paint.getTextWidths(text, 0, len, widths);
    [all...]
  /frameworks/ex/chips/src/com/android/ex/chips/
RecipientEditTextView.java 540 paint.getTextWidths(" ", widths);
583 paint.getTextWidths(" ", widths);
    [all...]

Completed in 1385 milliseconds

1 2