Lines Matching refs:textArray

400         const jchar* textArray = env->GetCharArrayElements(text, NULL);
403 TextLayout::getTextRunAdvances(paint, textArray, index, count, textLength,
406 env->ReleaseCharArrayElements(text, const_cast<jchar*>(textArray), JNI_ABORT);
424 const jchar* textArray = env->GetStringChars(text, NULL);
428 TextLayout::getTextRunAdvances(paint, textArray, start, count, textLength,
431 env->ReleaseStringChars(text, textArray);
444 const jchar* textArray = env->GetStringChars(text, NULL);
448 TextLayout::getTextRunAdvances(paint, textArray, 0, textLength, textLength,
451 env->ReleaseStringChars(text, textArray);
482 const jchar* textArray = env->GetCharArrayElements(text, NULL);
483 count = dotextwidths(env, paint, textArray + index, count, widths);
484 env->ReleaseCharArrayElements(text, const_cast<jchar*>(textArray),
491 const jchar* textArray = env->GetStringChars(text, NULL);
492 int count = dotextwidths(env, paint, textArray + start, end - start, widths);
493 env->ReleaseStringChars(text, textArray);
530 const jchar* textArray = env->GetStringChars(text, NULL);
531 int count = doTextGlyphs(env, paint, textArray + contextStart, start - contextStart,
533 env->ReleaseStringChars(text, textArray);
605 jchar* textArray = env->GetCharArrayElements(text, NULL);
607 doTextRunAdvances(env, paint, textArray + contextIndex, index - contextIndex,
609 doTextRunAdvancesICU(env, paint, textArray + contextIndex, index - contextIndex,
611 env->ReleaseCharArrayElements(text, textArray, JNI_ABORT);
618 const jchar* textArray = env->GetStringChars(text, NULL);
620 doTextRunAdvances(env, paint, textArray + contextStart, start - contextStart,
622 doTextRunAdvancesICU(env, paint, textArray + contextStart, start - contextStart,
624 env->ReleaseStringChars(text, textArray);
674 jchar* textArray = env->GetCharArrayElements(text, NULL);
675 jint result = doTextRunCursor(env, paint, textArray, contextStart, contextCount, flags,
677 env->ReleaseCharArrayElements(text, textArray, JNI_ABORT);
683 const jchar* textArray = env->GetStringChars(text, NULL);
684 jint result = doTextRunCursor(env, paint, textArray, contextStart,
686 env->ReleaseStringChars(text, textArray);
697 const jchar* textArray = env->GetCharArrayElements(text, NULL);
698 getTextPath(env, paint, textArray + index, count, bidiFlags, x, y, path);
699 env->ReleaseCharArrayElements(text, const_cast<jchar*>(textArray), JNI_ABORT);
704 const jchar* textArray = env->GetStringChars(text, NULL);
705 getTextPath(env, paint, textArray + start, end - start, bidiFlags, x, y, path);
706 env->ReleaseStringChars(text, textArray);
811 const jchar* textArray = env->GetStringChars(text, NULL);
812 doTextBounds(env, textArray + start, end - start, bounds, *paint);
813 env->ReleaseStringChars(text, textArray);
819 const jchar* textArray = env->GetCharArrayElements(text, NULL);
820 doTextBounds(env, textArray + index, count, bounds, *paint);
821 env->ReleaseCharArrayElements(text, const_cast<jchar*>(textArray),