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

  /frameworks/base/core/jni/android/graphics/
Paint.cpp 401 const jchar* textArray = env->GetCharArrayElements(text, NULL);
404 TextLayout::getTextRunAdvances(paint, textArray, index, count, textLength,
407 env->ReleaseCharArrayElements(text, const_cast<jchar*>(textArray), JNI_ABORT);
426 const jchar* textArray = env->GetStringChars(text, NULL);
430 TextLayout::getTextRunAdvances(paint, textArray, start, count, textLength,
433 env->ReleaseStringChars(text, textArray);
446 const jchar* textArray = env->GetStringChars(text, NULL);
450 TextLayout::getTextRunAdvances(paint, textArray, 0, textLength, textLength,
453 env->ReleaseStringChars(text, textArray);
486 const jchar* textArray = env->GetCharArrayElements(text, NULL)
    [all...]
Canvas.cpp 765 jchar* textArray = env->GetCharArrayElements(text, NULL);
766 drawTextWithGlyphs(canvas, textArray + index, 0, count, x, y, flags, paint);
767 env->ReleaseCharArrayElements(text, textArray, JNI_ABORT);
774 const jchar* textArray = env->GetStringChars(text, NULL);
775 drawTextWithGlyphs(canvas, textArray, start, end, x, y, flags, paint);
776 env->ReleaseStringChars(text, textArray);
779 static void drawTextWithGlyphs(SkCanvas* canvas, const jchar* textArray,
784 drawTextWithGlyphs(canvas, textArray + start, 0, count, count, x, y, flags, paint);
787 static void drawTextWithGlyphs(SkCanvas* canvas, const jchar* textArray,
792 textArray, start, count, contextCount, flags)
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
DatabaseQueryView.js 70 function accumulateMatches(textArray)
74 for (var i = 0; i < textArray.length; ++i) {
75 var text = textArray[i].toLowerCase();
80 results.push(textArray[i]);
  /frameworks/base/core/jni/
android_view_GLES20Canvas.cpp 163 const char* textArray = env->GetStringUTFChars(name, NULL);
164 renderer->setName(textArray);
165 env->ReleaseStringUTFChars(name, textArray);
620 jchar* textArray = env->GetCharArrayElements(text, NULL);
621 renderText(renderer, textArray + index, count, x, y, flags, paint);
622 env->ReleaseCharArrayElements(text, textArray, JNI_ABORT);
628 const jchar* textArray = env->GetStringChars(text, NULL);
629 renderText(renderer, textArray + start, end - start, x, y, flags, paint);
630 env->ReleaseStringChars(text, textArray);
636 jchar* textArray = env->GetCharArrayElements(text, NULL)
    [all...]
android_view_GLES20DisplayList.cpp 57 const char* textArray = env->GetStringUTFChars(name, NULL);
58 displayList->setName(textArray);
59 env->ReleaseStringUTFChars(name, textArray);
  /cts/tests/tests/content/src/android/content/res/cts/
TypedArrayTest.java 124 CharSequence[] textArray = mTypedArray.getTextArray(R.styleable.style1_type15);
125 assertEquals(EXPECTED_TEXT_ARRAY[0], textArray[0]);
126 assertEquals(EXPECTED_TEXT_ARRAY[1], textArray[1]);
127 assertEquals(EXPECTED_TEXT_ARRAY[2], textArray[2]);
  /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];
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
Avrcp.java 239 String[] textArray;
245 textArray = new String[numAttr];
248 textArray[i] = getAttributeString(attrIds[i]);
250 getElementAttrRspNative(numAttr, attrIds, textArray);
552 private native boolean getElementAttrRspNative(byte numAttr, int[] attrIds, String[] textArray);
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_avrcp.cpp 193 jintArray attrIds, jobjectArray textArray) {
222 text = (jstring) env->GetObjectArrayElement(textArray, i);

Completed in 189 milliseconds