/external/stlport/test/unit/ |
ptrspec_test.cpp | 79 int *int_array[] = {0, 0, 0}; local 124 pint_vect.insert(pint_vect.end(), int_array, int_array + 3); 125 pint_vect2.insert(pint_vect2.end(), int_array, int_array + 3); 126 pcint_vect.insert(pcint_vect.end(), int_array, int_array + 3); 131 pcint_vect.insert(pcint_vect.end(), int_array, int_array + 3); 139 pint_vect.assign(int_array, int_array + 3) [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
ptrspec_test.cpp | 79 int *int_array[] = {0, 0, 0}; local 124 pint_vect.insert(pint_vect.end(), int_array, int_array + 3); 125 pint_vect2.insert(pint_vect2.end(), int_array, int_array + 3); 126 pcint_vect.insert(pcint_vect.end(), int_array, int_array + 3); 131 pcint_vect.insert(pcint_vect.end(), int_array, int_array + 3); 139 pint_vect.assign(int_array, int_array + 3) [all...] |
/ndk/tests/device/test-stlport/unit/ |
ptrspec_test.cpp | 79 int *int_array[] = {0, 0, 0}; local 124 pint_vect.insert(pint_vect.end(), int_array, int_array + 3); 125 pint_vect2.insert(pint_vect2.end(), int_array, int_array + 3); 126 pcint_vect.insert(pcint_vect.end(), int_array, int_array + 3); 131 pcint_vect.insert(pcint_vect.end(), int_array, int_array + 3); 139 pint_vect.assign(int_array, int_array + 3) [all...] |
/external/chromium_org/base/android/ |
jni_array.cc | 30 jintArray int_array = env->NewIntArray(len); local 32 DCHECK(int_array); 34 jint* elements = env->GetIntArrayElements(int_array, NULL); 36 env->ReleaseIntArrayElements(int_array, elements, 0); 39 return ScopedJavaLocalRef<jintArray>(env, int_array); 161 jintArray int_array, 165 jsize len = env->GetArrayLength(int_array); 166 jint* ints = env->GetIntArrayElements(int_array, NULL); 170 env->ReleaseIntArrayElements(int_array, ints, JNI_ABORT);
|
jni_array.h | 70 // Replaces the content of |out| with the Java ints in |int_array|. 73 jintArray int_array,
|
jni_array_unittest.cc | 32 const int* int_array, 43 ASSERT_EQ(int_array[i], value);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_arrays.py | 18 int_array = ARRAY(fmt, alen) 20 ia = int_array(*init) 36 ia = int_array() 41 self.assertRaises(IndexError, int_array, *range(alen*2))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_arrays.py | 18 int_array = ARRAY(fmt, alen) 20 ia = int_array(*init) 36 ia = int_array() 41 self.assertRaises(IndexError, int_array, *range(alen*2))
|
/external/compiler-rt/lib/asan/tests/ |
asan_benchmarks_test.cc | 46 int *int_array = new int[kLen]; local 47 ManyAccessFunc(int_array, kLen, 1 << 24); 48 delete [] int_array;
|
/external/chromium_org/tools/json_schema_compiler/test/ |
idl_pepper.idl | 47 long[] int_array;
|
/dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
CstType.java | 80 public static final CstType INT_ARRAY = intern(Type.INT_ARRAY);
|
/dalvik/dx/src/com/android/dx/rop/cst/ |
CstType.java | 79 public static final CstType INT_ARRAY = intern(Type.INT_ARRAY);
|
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
CstType.java | 80 public static final CstType INT_ARRAY = intern(Type.INT_ARRAY);
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
ArrayData.java | 86 } else if (arrayType == CstType.INT_ARRAY ||
|
/dalvik/dx/src/com/android/dx/dex/code/ |
ArrayData.java | 88 } else if (arrayType == CstType.INT_ARRAY ||
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
ArrayData.java | 86 } else if (arrayType == CstType.INT_ARRAY ||
|
/dalvik/dexgen/src/com/android/dexgen/rop/type/ |
StdTypeList.java | 94 StdTypeList.make(Type.INT_ARRAY, Type.INT); 130 StdTypeList.make(Type.INT, Type.INT_ARRAY, Type.INT);
|
Type.java | 244 public static final Type INT_ARRAY = INT.getArrayType();
|
/dalvik/dx/src/com/android/dx/rop/type/ |
StdTypeList.java | 94 StdTypeList.make(Type.INT_ARRAY, Type.INT); 130 StdTypeList.make(Type.INT, Type.INT_ARRAY, Type.INT);
|
/external/dexmaker/src/dx/java/com/android/dx/rop/type/ |
StdTypeList.java | 94 StdTypeList.make(Type.INT_ARRAY, Type.INT); 130 StdTypeList.make(Type.INT, Type.INT_ARRAY, Type.INT);
|
/dalvik/dx/src/com/android/dx/cf/code/ |
RopperMachine.java | 373 RegisterSpec.make(dest.getNextReg(), Type.INT_ARRAY); 374 rop = Rops.opFilledNewArray(Type.INT_ARRAY, sourceCount); 376 CstType.INT_ARRAY); 380 rop = Rops.opMoveResult(Type.INT_ARRAY); [all...] |
/external/chromium_org/tools/json_schema_compiler/ |
ppapi_generator_test.py | 87 self.namespace.types['MyType'].properties['int_array']))
|
/art/runtime/ |
class_linker_test.cc | [all...] |
/external/dexmaker/src/test/java/com/google/dexmaker/ |
DexMakerTest.java | 48 private static TypeId<?> INT_ARRAY = TypeId.get(int[].class); [all...] |
/external/chromium/testing/gmock/test/ |
gmock-generated-matchers_test.cc | 1069 int int_array[] = { 1, 2, 3, 4 }; local [all...] |