/external/clang/test/SemaTemplate/ |
instantiate-expr-5.cpp | 33 int array1[__builtin_offsetof(AnonymousUnion<T>, f) == 0? 1 : -1]; local
|
instantiate-static-var.cpp | 8 int array1[X<int, 2>::value == 5? 1 : -1]; variable
|
deduction.cpp | 80 int array1[is_same<Replace<const _1, int, float>::type, const int>::value? 1 : -1]; variable
|
default-arguments.cpp | 90 int array1[is_same<__typeof__(vi), variable
|
temp_class_spec.cpp | 18 int array1[is_pointer<int*>::value? 1 : -1]; variable
|
/external/clang/test/SemaCXX/ |
offsetof.cpp | 29 int array1[__builtin_offsetof(HasArray, array[i])]; local
|
c99-variable-length-array.cpp | 17 int array1[N]; // expected-warning{{variable length arrays are a C99 feature}} local 26 int array1[N]; // expected-warning{{variable length arrays are a C99 feature}} local
|
constant-expression.cpp | 112 int array1[recurse1]; // ok variable
|
/external/eigen/test/ |
geo_parametrizedline.cpp | 69 EIGEN_ALIGN16 Scalar array1[8]; local 74 Line4a *p1 = ::new(reinterpret_cast<void*>(array1)) Line4a;
|
geo_quaternion.cpp | 184 EIGEN_ALIGN16 Scalar array1[4]; local 189 MQuaternionA mq1(array1); 190 MCQuaternionA mcq1(array1); 195 // std::cerr << array1 << " " << array2 << " " << array3 << "\n"; 235 EIGEN_ALIGN16 Scalar array1[4]; local 240 QuaternionA *q1 = ::new(reinterpret_cast<void*>(array1)) QuaternionA;
|
geo_hyperplane.cpp | 148 EIGEN_ALIGN16 Scalar array1[4]; local 153 Plane3a *p1 = ::new(reinterpret_cast<void*>(array1)) Plane3a;
|
geo_transformations.cpp | 447 EIGEN_ALIGN16 Scalar array1[16]; local 452 Projective3a *p1 = ::new(reinterpret_cast<void*>(array1)) Projective3a;
|
/ndk/tests/device/test-gnustl-full/unit/ |
list_test.cpp | 57 int array1 [] = { 9, 16, 36 }; local 60 list<int> l1(array1, array1 + 3); 97 int array1 [] = { 1, 16 }; local 100 list<int> l1(array1, array1 + 2); 150 int array1 [] = { 1, 3, 6, 7 }; local 153 list<int> l1(array1, array1 + 4);
|
set_test.cpp | 77 int array1 [] = { 1, 3, 6, 7 }; local 78 s.insert(array1, array1 + 4); 125 int array1 [] = { 1, 3, 6, 7 }; local 126 set<int> s(array1, array1 + sizeof(array1) / sizeof(array1[0]));
|
vector_test.cpp | 236 int array1 [] = { 1, 4, 25 }; local 239 vector<int> v(array1, array1 + 3);
|
/ndk/tests/device/test-stlport/unit/ |
list_test.cpp | 57 int array1 [] = { 9, 16, 36 }; local 60 list<int> l1(array1, array1 + 3); 97 int array1 [] = { 1, 16 }; local 100 list<int> l1(array1, array1 + 2); 150 int array1 [] = { 1, 3, 6, 7 }; local 153 list<int> l1(array1, array1 + 4);
|
set_test.cpp | 77 int array1 [] = { 1, 3, 6, 7 }; local 78 s.insert(array1, array1 + 4); 125 int array1 [] = { 1, 3, 6, 7 }; local 126 set<int> s(array1, array1 + sizeof(array1) / sizeof(array1[0]));
|
vector_test.cpp | 236 int array1 [] = { 1, 4, 25 }; local 239 vector<int> v(array1, array1 + 3);
|
/external/clang/test/Analysis/ |
misc-ps.c | 120 int array1[] = { 1, 2, 3, 0 }; local 122 int *array[] = { array1, array2 };
|
/external/clang/test/CXX/expr/expr.const/ |
p5-0x.cpp | 73 int array1[ok]; variable
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
p3.cpp | 30 const int array1[] = { 1, 2, 3}; local 31 B<const int, 3> b1 = g0(array1); 32 B<int, 3> b2 = g0b(array1);
|
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
ObjectArraysTest.java | 82 private void doTestToArrayImpl2(List<Integer> list, Integer[] array1, 84 Integer[] starting = ObjectArrays.arraysCopyOf(array1, array1.length); 85 Integer[] array2 = ObjectArrays.arraysCopyOf(array1, array1.length); 86 Object[] reference = list.toArray(array1); 96 assertTrue(Arrays.equals(expectedArray1, array1)); 157 private static boolean arrayEquals(Object[] array1, Object[] array2) { 158 assertSame(array1.getClass(), array2.getClass()); 159 return Arrays.equals(array1, array2) [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
ObjectArraysTest.java | 153 private void doTestToArrayImpl2(List<Integer> list, Integer[] array1, 155 Integer[] starting = ObjectArrays.arraysCopyOf(array1, array1.length); 156 Integer[] array2 = ObjectArrays.arraysCopyOf(array1, array1.length); 157 Object[] reference = list.toArray(array1); 167 assertTrue(Arrays.equals(expectedArray1, array1)); 228 private static boolean arrayEquals(Object[] array1, Object[] array2) { 229 assertSame(array1.getClass(), array2.getClass()); 230 return Arrays.equals(array1, array2) [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
EnumMapTest.java | 434 Object[] array1 = new Object[10]; local 435 array1 = set.toArray(); 436 assertEquals("Wrong length", 2, array1.length); 441 array1 = new Object[10]; 442 array1 = set.toArray(array1); 443 assertEquals("Wrong length", 10, array1.length); 446 assertNull("Should be null", array1[2]); [all...] |
/cts/tests/tests/content/src/android/content/res/cts/ |
ResourcesTest.java | 419 int[]array1 = mResources.getIntArray(R.array.strings); local 422 checkArrayEqual(expectedArray1, array1); 427 private void checkArrayEqual(int[] array1, int[] array2) { 429 assertEquals(array1.length, array2.length); 430 for (int i = 0; i < array1.length; i++) { 431 assertEquals(array1[i], array2[i]);
|