/frameworks/base/core/jni/android/graphics/ |
TextLayoutCache.cpp | 90 const jchar* text, jint start, jint count, jint contextCount, jint dirFlags) { 98 TextLayoutCacheKey key(paint, text, start, count, contextCount, dirFlags); 109 value = new TextLayoutValue(contextCount); 114 size_t(contextCount), int(dirFlags)); 145 " - start = %d, count = %d, contextCount = %d - Text = '%s'", 146 start, count, contextCount, String8(key.getText() + start, count).string()); 151 "with start = %d, count = %d, contextCount = %d, " 154 value.get(), start, count, contextCount, size, mMaxSize - mSize, 162 "with start = %d, count = %d, contextCount = %d, " 165 start, count, contextCount, size, mMaxSize - mSize [all...] |
TextLayoutCache.h | 72 size_t contextCount, int dirFlags); 98 size_t contextCount; 127 TextLayoutValue(size_t contextCount); 188 size_t start, size_t count, size_t contextCount, int dirFlags); 214 size_t start, size_t count, size_t contextCount, int dirFlags, 219 size_t start, size_t count, size_t contextCount, bool isRTL, 250 jint count, jint contextCount, jint dirFlags); 302 jint count, jint contextCount, jint dirFlags);
|
TextLayout.cpp | 68 jint count, jint contextCount, jint dirFlags, 71 chars, start, count, contextCount, dirFlags);
|
TextLayout.h | 66 jint count, jint contextCount, jint dirFlags,
|
Paint.cpp | 510 jint contextCount, jint flags, jcharArray glyphs) { 514 if ((start | count | contextCount) < 0 || contextCount < count || !glyphs) { 530 text, start, count, contextCount, flags); 550 jint start, jint count, jint contextCount, jint flags, 555 if ((start | count | contextCount | advancesIndex) < 0 || contextCount < count) { 572 TextLayout::getTextRunAdvances(paint, text, start, count, contextCount, flags, 583 jcharArray text, jint index, jint count, jint contextIndex, jint contextCount, 587 index - contextIndex, count, contextCount, flags, advances, advancesIndex) [all...] |
Canvas.cpp | 771 int start, int count, int contextCount, 775 textArray, start, count, contextCount, flags); [all...] |
/cts/tests/tests/text/src/android/text/cts/ |
StaticLayoutLineBreakingTest.java | 51 int contextIndex, int contextCount, int flags, float[] advances, 63 if ((index | count | contextIndex | contextCount | advancesIndex 64 | (index - contextIndex) | (contextCount - count) 65 | ((contextIndex + contextCount) - (index + count)) 66 | (chars.length - (contextIndex + contextCount))
|
/frameworks/base/graphics/java/android/graphics/ |
Paint.java | [all...] |
Canvas.java | [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/ |
DurationMinimap.java | 440 public PositionHelper(int fontHeight, int contextCount, 442 mContextCount = contextCount;
|
/frameworks/base/core/jni/ |
android_view_GLES20Canvas.cpp | 639 jint start, jint count, jint contextCount, jfloat x, jfloat y, 642 text, start, count, contextCount, flags); 696 jint contextIndex, jint contextCount, jfloat x, jfloat y, jint dirFlags, 700 count, contextCount, x, y, dirFlags, paint); 710 jint contextCount = contextEnd - contextStart; 712 count, contextCount, x, y, dirFlags, paint); [all...] |
/frameworks/base/core/java/android/text/ |
TextLine.java | [all...] |
/frameworks/base/core/java/android/view/ |
GLES20Canvas.java | [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Paint_Delegate.java | 982 char[] text, int index, int count, int contextIndex, int contextCount, [all...] |
Canvas_Delegate.java | [all...] |
/frameworks/base/core/java/android/widget/ |
TextView.java | [all...] |