Lines Matching refs:textArray

529         const jchar* textArray = env->GetCharArrayElements(text, NULL);
534 MinikinUtils::doLayout(&layout, paint, bidiFlags, typeface, textArray, index, count, textLength);
536 env->ReleaseCharArrayElements(text, const_cast<jchar*>(textArray), JNI_ABORT);
555 const jchar* textArray = env->GetStringChars(text, NULL);
561 MinikinUtils::doLayout(&layout, paint, bidiFlags, typeface, textArray, start, count, textLength);
564 env->ReleaseStringChars(text, textArray);
577 const jchar* textArray = env->GetStringChars(text, NULL);
583 MinikinUtils::doLayout(&layout, paint, bidiFlags, typeface, textArray, 0, textLength, textLength);
586 env->ReleaseStringChars(text, textArray);
622 const jchar* textArray = env->GetCharArrayElements(text, NULL);
623 count = dotextwidths(env, paint, typeface, textArray + index, count, widths, bidiFlags);
624 env->ReleaseCharArrayElements(text, const_cast<jchar*>(textArray),
633 const jchar* textArray = env->GetStringChars(text, NULL);
634 int count = dotextwidths(env, paint, typeface, textArray + start, end - start, widths, bidiFlags);
635 env->ReleaseStringChars(text, textArray);
682 jchar* textArray = env->GetCharArrayElements(text, NULL);
683 jfloat result = doTextRunAdvances(env, paint, typeface, textArray + contextIndex,
685 env->ReleaseCharArrayElements(text, textArray, JNI_ABORT);
695 const jchar* textArray = env->GetStringChars(text, NULL);
696 jfloat result = doTextRunAdvances(env, paint, typeface, textArray + contextStart,
699 env->ReleaseStringChars(text, textArray);
713 jchar* textArray = env->GetCharArrayElements(text, NULL);
714 jint result = doTextRunCursor(env, paint, textArray, contextStart, contextCount, dir,
716 env->ReleaseCharArrayElements(text, textArray, JNI_ABORT);
723 const jchar* textArray = env->GetStringChars(text, NULL);
724 jint result = doTextRunCursor(env, paint, textArray, contextStart,
726 env->ReleaseStringChars(text, textArray);
786 const jchar* textArray = env->GetCharArrayElements(text, NULL);
787 getTextPath(env, paint, typeface, textArray + index, count, bidiFlags, x, y, path);
788 env->ReleaseCharArrayElements(text, const_cast<jchar*>(textArray), JNI_ABORT);
797 const jchar* textArray = env->GetStringChars(text, NULL);
798 getTextPath(env, paint, typeface, textArray + start, end - start, bidiFlags, x, y, path);
799 env->ReleaseStringChars(text, textArray);
921 const jchar* textArray = env->GetStringChars(text, NULL);
922 doTextBounds(env, textArray + start, end - start, bounds, *paint, typeface, bidiFlags);
923 env->ReleaseStringChars(text, textArray);
930 const jchar* textArray = env->GetCharArrayElements(text, NULL);
931 doTextBounds(env, textArray + index, count, bounds, *paint, typeface, bidiFlags);
932 env->ReleaseCharArrayElements(text, const_cast<jchar*>(textArray),