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

/frameworks/support/v4/api20/android/support/v4/app/
H A DRemoteInputCompatApi20.java24 static RemoteInputCompatBase.RemoteInput[] toCompat(RemoteInput[] srcArray, argument
26 if (srcArray == null) {
29 RemoteInputCompatBase.RemoteInput[] result = factory.newArray(srcArray.length);
30 for (int i = 0; i < srcArray.length; i++) {
31 RemoteInput src = srcArray[i];
38 static RemoteInput[] fromCompat(RemoteInputCompatBase.RemoteInput[] srcArray) { argument
39 if (srcArray == null) {
42 RemoteInput[] result = new RemoteInput[srcArray.length];
43 for (int i = 0; i < srcArray.length; i++) {
44 RemoteInputCompatBase.RemoteInput src = srcArray[
[all...]
/frameworks/base/core/jni/
H A Dandroid_text_AndroidCharacter.cpp54 static void getDirectionalities(JNIEnv* env, jobject obj, jcharArray srcArray, argument
57 ScopedCharArrayRO src(env, srcArray);
66 if (env->GetArrayLength(srcArray) < count || env->GetArrayLength(destArray) < count) {
105 static void getEastAsianWidths(JNIEnv* env, jobject obj, jcharArray srcArray, argument
108 ScopedCharArrayRO src(env, srcArray);
118 || env->GetArrayLength(srcArray) < (start + count)
/frameworks/base/core/jni/android/graphics/
H A DMatrix.cpp245 float* srcArray = autoSrc.ptr() + srcIndex; local
249 matrix->mapPoints((SkPoint*)dstArray, (const SkPoint*)srcArray,
252 matrix->mapVectors((SkVector*)dstArray, (const SkVector*)srcArray,

Completed in 464 milliseconds