Searched defs:textArray (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/jni/android/graphics/
H A DCanvas.cpp739 jchar* textArray = env->GetCharArrayElements(text, NULL); local
740 drawTextWithGlyphs(canvas, textArray + index, 0, count, x, y, flags, paint);
741 env->ReleaseCharArrayElements(text, textArray, JNI_ABORT);
748 const jchar* textArray = env->GetStringChars(text, NULL); local
749 drawTextWithGlyphs(canvas, textArray, start, end, x, y, flags, paint);
750 env->ReleaseStringChars(text, textArray);
753 static void drawTextWithGlyphs(SkCanvas* canvas, const jchar* textArray, argument
758 drawTextWithGlyphs(canvas, textArray + start, 0, count, count, x, y, flags, paint);
761 static void drawTextWithGlyphs(SkCanvas* canvas, const jchar* textArray, argument
766 textArray, star
863 jchar* textArray = text ? env->GetCharArrayElements(text, NULL) : NULL; local
921 jchar* textArray = env->GetCharArrayElements(text, NULL); local
[all...]
H A DPaint.cpp400 const jchar* textArray = env->GetCharArrayElements(text, NULL); local
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); local
428 TextLayout::getTextRunAdvances(paint, textArray, start, count, textLength,
431 env->ReleaseStringChars(text, textArray);
444 const jchar* textArray = env->GetStringChars(text, NULL); local
448 TextLayout::getTextRunAdvances(paint, textArray, 0, textLength, textLength,
451 env->ReleaseStringChars(text, textArray);
482 const jchar* textArray local
491 const jchar* textArray = env->GetStringChars(text, NULL); local
530 const jchar* textArray = env->GetStringChars(text, NULL); local
605 jchar* textArray = env->GetCharArrayElements(text, NULL); local
618 const jchar* textArray = env->GetStringChars(text, NULL); local
674 jchar* textArray = env->GetCharArrayElements(text, NULL); local
683 const jchar* textArray = env->GetStringChars(text, NULL); local
697 const jchar* textArray = env->GetCharArrayElements(text, NULL); local
704 const jchar* textArray = env->GetStringChars(text, NULL); local
811 const jchar* textArray = env->GetStringChars(text, NULL); local
819 const jchar* textArray = env->GetCharArrayElements(text, NULL); local
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_GLES20Canvas.cpp575 jchar* textArray = env->GetCharArrayElements(text, NULL); local
576 renderText(renderer, textArray + index, count, x, y, flags, paint);
577 env->ReleaseCharArrayElements(text, textArray, JNI_ABORT);
583 const jchar* textArray = env->GetStringChars(text, NULL); local
584 renderText(renderer, textArray + start, end - start, x, y, flags, paint);
585 env->ReleaseStringChars(text, textArray);
591 jchar* textArray = env->GetCharArrayElements(text, NULL); local
592 renderTextOnPath(renderer, textArray + index, count, path,
594 env->ReleaseCharArrayElements(text, textArray, JNI_ABORT);
600 const jchar* textArray local
610 jchar* textArray = env->GetCharArrayElements(text, NULL); local
620 const jchar* textArray = env->GetStringChars(text, NULL); local
646 jchar* textArray = env->GetCharArrayElements(text, NULL); local
658 const jchar* textArray = env->GetStringChars(text, NULL); local
684 const char* textArray = env->GetStringUTFChars(name, NULL); local
[all...]

Completed in 357 milliseconds