| /frameworks/base/core/jni/android/graphics/ |
| TextLayout.h | 69 jint start, jint count, jint contextCount, 73 jint count, jint contextCount, jint dirFlags, 77 jint count, jint contextCount, jint dirFlags, 94 jsize contextCount, jchar* shaped); 99 static int shapeRtlText(const jchar* context, jsize start, jsize count, jsize contextCount, 107 size_t start, size_t count, size_t contextCount, int dirFlags,
|
| TextLayoutCache.cpp | 109 const jchar* text, jint start, jint count, jint contextCount, jint dirFlags) { 117 TextLayoutCacheKey key(paint, text, start, count, contextCount, dirFlags); 131 value->computeValues(paint, text, start, count, contextCount, dirFlags); 169 "with start=%d count=%d contextCount=%d, " 172 start, count, contextCount, size, mMaxSize - mSize, endTime, 187 LOGD("CACHE HIT #%d with start=%d count=%d contextCount=%d" 190 mCacheHitCount, start, count, contextCount, 221 TextLayoutCacheKey::TextLayoutCacheKey(): text(NULL), start(0), count(0), contextCount(0), 227 size_t start, size_t count, size_t contextCount, int dirFlags) : 228 text(text), start(start), count(count), contextCount(contextCount) [all...] |
| TextLayout.cpp | 56 * @count the length of the text to render, start + count must be <= contextCount 57 * @contextCount the length of the context 61 int TextLayout::shapeRtlText(const jchar* context, jsize start, jsize count, jsize contextCount, 63 SkAutoSTMalloc<CHAR_BUFFER_SIZE, jchar> tempBuffer(contextCount); 67 u_shapeArabic(context, contextCount, buffer, contextCount, 81 // LOG(LOG_INFO, "CSRTL", "start %d count %d ccount %d\n", start, count, contextCount); 225 jsize contextCount, jchar* shaped) { 227 count = shapeRtlText(context, start, count, contextCount, shaped, status); 237 jint start, jint count, jint contextCount, [all...] |
| TextLayoutCache.h | 72 size_t contextCount, int dirFlags); 94 size_t contextCount; 126 size_t contextCount, int dirFlags); 161 size_t start, size_t count, size_t contextCount, int dirFlags, 171 SkPaint* paint, const UChar* chars, size_t contextCount); 205 jint contextCount, jint dirFlags);
|
| Paint.cpp | 468 jint contextCount, jint flags, jcharArray glyphs) { 472 if ((start | count | contextCount) < 0 || contextCount < count || !glyphs) { 488 value.computeValues(paint, text, start, count, contextCount, flags); 508 jint start, jint count, jint contextCount, jint flags, 513 if ((start | count | contextCount | advancesIndex) < 0 || contextCount < count) { 530 TextLayout::getTextRunAdvances(paint, text, start, count, contextCount, flags, 540 jint start, jint count, jint contextCount, jint flags, 545 if ((start | count | contextCount | advancesIndex) < 0 || contextCount < count) [all...] |
| Canvas.cpp | 765 int start, int count, int contextCount, 771 contextCount, flags); 778 value->computeValues(paint, textArray, start, count, contextCount, flags); 801 int count, int contextIndex, int contextCount, 807 count, contextCount, x, y, dirFlags, paint); 810 count, contextCount, dirFlags, x, y, canvas); 821 jint contextCount = contextEnd - contextStart; 825 count, contextCount, x, y, dirFlags, paint); 828 count, contextCount, dirFlags, x, y, canvas); [all...] |
| /frameworks/base/graphics/java/android/graphics/ |
| Paint.java | [all...] |
| Canvas.java | [all...] |
| /frameworks/base/core/jni/ |
| android_view_GLES20Canvas.cpp | 505 jint start, jint count, jint contextCount, jfloat x, jfloat y, 510 value = TextLayoutCache::getInstance().getValue(paint, text, start, count, contextCount, flags); 517 value->computeValues(paint, text, start, count, contextCount, flags); 526 SkAutoSTMalloc<80, jchar> buffer(contextCount); 528 if (TextLayout::prepareRtlTextRun(text, start, count, contextCount, shaped)) { 557 jint contextIndex, jint contextCount, jfloat x, jfloat y, jint dirFlags, 561 count, contextCount, x, y, dirFlags, paint); 571 jint contextCount = contextEnd - contextStart; 573 count, contextCount, x, y, dirFlags, paint); [all...] |
| /frameworks/base/core/java/android/view/ |
| GLES20RecordingCanvas.java | 286 public void drawTextRun(char[] text, int index, int count, int contextIndex, int contextCount, 288 super.drawTextRun(text, index, count, contextIndex, contextCount, x, y, dir, paint);
|
| GLES20Canvas.java | [all...] |
| /frameworks/base/core/java/android/text/ |
| TextLine.java | [all...] |
| /frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
| Paint_Delegate.java | 974 char[] text, int index, int count, int contextIndex, int contextCount, [all...] |
| Canvas_Delegate.java | [all...] |
| /frameworks/base/core/java/android/widget/ |
| TextView.java | [all...] |