OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:textArray
(Results
1 - 10
of
10
) sorted by null
/frameworks/base/core/jni/android/graphics/
Paint.cpp
409
const jchar*
textArray
= env->GetCharArrayElements(text, NULL);
412
TextLayout::getTextRunAdvances(paint,
textArray
, index, count, textLength,
415
env->ReleaseCharArrayElements(text, const_cast<jchar*>(
textArray
), JNI_ABORT);
434
const jchar*
textArray
= env->GetStringChars(text, NULL);
438
TextLayout::getTextRunAdvances(paint,
textArray
, start, count, textLength,
441
env->ReleaseStringChars(text,
textArray
);
454
const jchar*
textArray
= env->GetStringChars(text, NULL);
458
TextLayout::getTextRunAdvances(paint,
textArray
, 0, textLength, textLength,
461
env->ReleaseStringChars(text,
textArray
);
494
const jchar*
textArray
= env->GetCharArrayElements(text, NULL)
[
all
...]
Canvas.cpp
748
jchar*
textArray
= env->GetCharArrayElements(text, NULL);
749
drawTextWithGlyphs(canvas,
textArray
+ index, 0, count, x, y, flags, paint);
750
env->ReleaseCharArrayElements(text,
textArray
, JNI_ABORT);
757
const jchar*
textArray
= env->GetStringChars(text, NULL);
758
drawTextWithGlyphs(canvas,
textArray
, start, end, x, y, flags, paint);
759
env->ReleaseStringChars(text,
textArray
);
762
static void drawTextWithGlyphs(SkCanvas* canvas, const jchar*
textArray
,
767
drawTextWithGlyphs(canvas,
textArray
+ start, 0, count, count, x, y, flags, paint);
770
static void drawTextWithGlyphs(SkCanvas* canvas, const jchar*
textArray
,
775
textArray
, start, count, contextCount, flags)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DatabaseQueryView.js
77
function accumulateMatches(
textArray
)
79
for (var i = 0; i <
textArray
.length; ++i) {
80
var text =
textArray
[i].toLowerCase();
85
results.push(
textArray
[i]);
/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_GLES20Canvas.cpp
180
const char*
textArray
= env->GetStringUTFChars(name, NULL);
181
renderer->setName(
textArray
);
182
env->ReleaseStringUTFChars(name,
textArray
);
663
jchar*
textArray
= env->GetCharArrayElements(text, NULL);
664
renderText(renderer,
textArray
+ index, count, x, y, flags, paint);
665
env->ReleaseCharArrayElements(text,
textArray
, JNI_ABORT);
671
const jchar*
textArray
= env->GetStringChars(text, NULL);
672
renderText(renderer,
textArray
+ start, end - start, x, y, flags, paint);
673
env->ReleaseStringChars(text,
textArray
);
679
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
);
/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/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/jni/
com_android_bluetooth_avrcp.cpp
253
jintArray attrIds, jobjectArray
textArray
) {
282
text = (jstring) env->GetObjectArrayElement(
textArray
, i);
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
Avrcp.java
313
String[]
textArray
;
319
textArray
= new String[numAttr];
322
textArray
[i] = getAttributeString(attrIds[i]);
324
getElementAttrRspNative(numAttr, attrIds,
textArray
);
[
all
...]
Completed in 510 milliseconds