OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:textArray
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/icu/source/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];
/external/icu/icu4c/source/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];
/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]);
/frameworks/base/core/jni/
android_view_RenderNode.cpp
67
const char*
textArray
= env->GetStringUTFChars(name, NULL);
68
renderNode->setName(
textArray
);
69
env->ReleaseStringUTFChars(name,
textArray
);
android_view_GLES20Canvas.cpp
701
jchar*
textArray
= env->GetCharArrayElements(text, NULL);
705
renderText(renderer,
textArray
+ index, count, x, y, bidiFlags, paint, typeface);
706
env->ReleaseCharArrayElements(text,
textArray
, JNI_ABORT);
713
const jchar*
textArray
= env->GetStringChars(text, NULL);
717
renderText(renderer,
textArray
+ start, end - start, x, y, bidiFlags, paint, typeface);
718
env->ReleaseStringChars(text,
textArray
);
726
jchar*
textArray
= env->GetCharArrayElements(text, NULL);
731
renderTextOnPath(renderer,
textArray
+ index, count, path,
733
env->ReleaseCharArrayElements(text,
textArray
, JNI_ABORT);
[
all
...]
/frameworks/base/core/jni/android/graphics/
Paint.cpp
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)
[
all
...]
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
Avrcp.java
297
String[]
textArray
;
303
textArray
= new String[numAttr];
306
textArray
[i] = getAttributeString(attrIds[i]);
308
getElementAttrRspNative(numAttr, attrIds,
textArray
);
[
all
...]
Completed in 257 milliseconds