HomeSort by relevance Sort by last modified time
    Searched defs:textArray (Results 1 - 5 of 5) sorted by null

  /external/icu4c/common/
usc_impl.c 44 const UChar *textArray;
251 scriptRun->textArray = src;
271 UChar high = scriptRun->textArray[scriptRun->scriptLimit];
281 UChar low = scriptRun->textArray[scriptRun->scriptLimit + 1];
  /cts/tests/tests/content/src/android/content/res/cts/
TypedArrayTest.java 266 CharSequence[] textArray = mTypedArray.getTextArray(R.styleable.style1_type15);
267 assertEquals(EXPECTED_TEXT_ARRAY[0], textArray[0]);
268 assertEquals(EXPECTED_TEXT_ARRAY[1], textArray[1]);
269 assertEquals(EXPECTED_TEXT_ARRAY[2], textArray[2]);
  /frameworks/base/core/jni/android/graphics/
Canvas.cpp 734 jchar* textArray = env->GetCharArrayElements(text, NULL);
736 drawTextWithGlyphs(canvas, textArray + index, 0, count, x, y, flags, paint);
738 TextLayout::drawText(paint, textArray + index, count, flags, x, y, canvas);
740 env->ReleaseCharArrayElements(text, textArray, JNI_ABORT);
747 const jchar* textArray = env->GetStringChars(text, NULL);
749 drawTextWithGlyphs(canvas, textArray, start, end, x, y, flags, paint);
751 TextLayout::drawText(paint, textArray + start, end - start, flags, x, y, canvas);
753 env->ReleaseStringChars(text, textArray);
756 static void drawTextWithGlyphs(SkCanvas* canvas, const jchar* textArray,
761 drawTextWithGlyphs(canvas, textArray + start, 0, count, count, x, y, flags, paint)
    [all...]
Paint.cpp 351 const jchar* textArray = env->GetCharArrayElements(text, NULL);
354 TextLayout::getTextRunAdvances(paint, textArray, index, count, textLength,
358 SkScalar width = paint->measureText(textArray + index, count << 1);
361 env->ReleaseCharArrayElements(text, const_cast<jchar*>(textArray), JNI_ABORT);
379 const jchar* textArray = env->GetStringChars(text, NULL);
384 TextLayout::getTextRunAdvances(paint, textArray, start, count, textLength,
388 width = SkScalarToFloat(paint->measureText(textArray + start, count << 1));
390 env->ReleaseStringChars(text, textArray);
403 const jchar* textArray = env->GetStringChars(text, NULL);
408 TextLayout::getTextRunAdvances(paint, textArray, 0, textLength, textLength
    [all...]
  /frameworks/base/core/jni/
android_view_GLES20Canvas.cpp 555 jchar* textArray = env->GetCharArrayElements(text, NULL);
556 renderText(renderer, textArray + index, count, x, y, flags, paint);
557 env->ReleaseCharArrayElements(text, textArray, JNI_ABORT);
563 const jchar* textArray = env->GetStringChars(text, NULL);
564 renderText(renderer, textArray + start, end - start, x, y, flags, paint);
565 env->ReleaseStringChars(text, textArray);
572 jchar* textArray = env->GetCharArrayElements(text, NULL);
573 renderTextRun(renderer, textArray + contextIndex, index - contextIndex,
575 env->ReleaseCharArrayElements(text, textArray, JNI_ABORT);
582 const jchar* textArray = env->GetStringChars(text, NULL)
    [all...]

Completed in 87 milliseconds