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

  /packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
AvrcpMediaRspInterface.java 29 String[] textArray);
Avrcp.java 523 String[] textArray;
530 textArray = new String[numAttr];
534 textArray[i] = mMediaAttributes.getString(attrIds[i]);
539 responseDebug.append(Utils.ellipsize(textArray[i]) + "] ");
541 responseDebug.append(textArray[i] + "] ");
546 getElementAttrRspNative(bdaddr, numAttr, attrIds, textArray);
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/about/
Licenses.java 84 ByteArrayOutputStream textArray = new ByteArrayOutputStream();
93 textArray.write(buffer, 0, bytes);
101 return textArray.toString("UTF-8");
  /packages/apps/TV/src/com/android/tv/license/
Licenses.java 97 ByteArrayOutputStream textArray = new ByteArrayOutputStream();
107 textArray.write(buffer, 0, bytes);
115 return textArray.toString("UTF-8");
  /external/icu/icu4c/source/common/
usc_impl.cpp 44 const UChar *textArray;
251 scriptRun->textArray = src;
271 UChar high = scriptRun->textArray[scriptRun->scriptLimit];
281 UChar low = scriptRun->textArray[scriptRun->scriptLimit + 1];
  /frameworks/base/core/jni/android/graphics/
Paint.cpp 222 jchar* textArray = env->GetCharArrayElements(text, nullptr);
223 jfloat result = doTextAdvances(env, paint, typeface, textArray + contextIndex,
225 env->ReleaseCharArrayElements(text, textArray, JNI_ABORT);
234 const jchar* textArray = env->GetStringChars(text, nullptr);
235 jfloat result = doTextAdvances(env, paint, typeface, textArray + contextStart,
238 env->ReleaseStringChars(text, textArray);
258 jchar* textArray = env->GetCharArrayElements(text, nullptr);
259 jint result = doTextRunCursor(env, paint, typeface, textArray,
261 env->ReleaseCharArrayElements(text, textArray, JNI_ABORT);
270 const jchar* textArray = env->GetStringChars(text, nullptr)
    [all...]
  /cts/tests/tests/content/src/android/content/res/cts/
TypedArrayTest.java 158 final CharSequence[] textArray = t.getTextArray(R.styleable.style1_type15);
159 assertEquals(EXPECTED_TEXT_ARRAY[0], textArray[0]);
160 assertEquals(EXPECTED_TEXT_ARRAY[1], textArray[1]);
161 assertEquals(EXPECTED_TEXT_ARRAY[2], textArray[2]);
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_avrcp.cpp 648 jobjectArray textArray) {
684 env, (jstring)env->GetObjectArrayElement(textArray, attr_cnt));
716 jobjectArray textArray) {
754 env, (jstring)env->GetObjectArrayElement(textArray, attr_cnt));
    [all...]
  /frameworks/support/core/ktx/src/androidTest/java/androidx/core/content/res/
TypedArrayTest.kt 195 @Test fun textArray() {
  /frameworks/base/core/jni/
android_view_RenderNode.cpp 64 const char* textArray = env->GetStringUTFChars(name, NULL);
65 renderNode->setName(textArray);
66 env->ReleaseStringUTFChars(name, textArray);

Completed in 291 milliseconds