Searched defs:array2 (Results 1 - 25 of 64) sorted by relevance

123

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-263276.js33 var array2 = []; variable
34 array2.bar = true;
42 bad(array2); // Length is now 1.
43 bad(array2); // Length is now 2.
45 bad(array2); // Length is now 3.
46 assertEquals(3, array2.length);
/external/chromium_org/v8/test/webkit/
H A Ddfg-get-by-val-clobber.js35 var array2 = [5, 6, 7, 8]; variable
39 shouldBe("doAccesses(array1, array2, i % 4, (i + 1) % 4, i)", "" + ((i % 4) + 1));
40 shouldBe("array2[" + ((i + 1) % 4) + "]", "" + i);
43 array2[((i + 1) % 4)] = (i % 4) + 5;
/external/clang/test/SemaCXX/
H A Dwarn-self-comparisons.cpp4 void f(int (&array1)[2], int (&array2)[2]) { argument
5 if (array1 == array2) { } // no warning
H A Dnon-empty-class-size-zero.cpp7 int array2[0]; member in struct:X
H A Dc99-variable-length-array-cxx11.cpp22 POD array2[N]; // expected-warning{{variable length arrays are a C99 feature}} local
/external/stlport/test/unit/
H A Dinsert_test.cpp34 char const* array2 [] = { "amanda", "saskia", "carrie" }; local
40 itd = copy(array2, array2 + 3, insert_iterator<deque <char const*> >(names, i));
58 char const* array2 [] = { "amanda", "saskia", "carrie" }; local
62 copy(array2, array2 + 3, inserter(names, i));
/external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
H A Dp9.cpp19 int array2[X2<>::value? 1 : -1]; variable
/external/clang/test/SemaTemplate/
H A Dtemp_class_order.cpp25 int array2[X1<int*, int*>::value == 2? 1 : -1]; variable
H A Dinstantiate-declref-ice.cpp25 int array2[X0<int>::value == sizeof(int)? 1 : -1]; variable
H A Dext-vector-type.cpp92 int array2[X0<float2>::value == 2? 1 : -1]; member in namespace:Deduction
H A Dinstantiate-c99.cpp51 int array2[10] = { [5] = 3 }; local
H A Dinstantiate-expr-5.cpp34 int array2[__builtin_offsetof(AnonymousUnion<int>, f) == 0? 1 : -1]; local
H A Dms-if-exists.cpp51 int array2[] = { local
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.order/
H A Dp2.cpp17 int array2[X<0, 0, int>::value == 2? 1 : -1]; variable
/external/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp4.cpp37 int array2[sizeof(X3<int>)]; variable
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
H A Dsfinae-1.cpp18 int array2[is_class<char[3]>::value? -1 : 1]; variable
/external/clang/test/Sema/
H A Dvector-ops.c21 int array2[17]; local
23 (void)(array2[v2ua]); // expected-error{{array subscript is not an integer}}
H A Dvector-init.c13 float4 array2[2] = { 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, variable
H A Dself-comparison.c50 int array2[2]; local
65 return array1 == array2; // expected-warning{{array comparison always evaluates to false}}
66 return array1 != array2; // expected-warning{{array comparison always evaluates to true}}
71 return array1 < array2; // expected-warning{{array comparison always evaluates to a constant}}
72 return array1 <= array2; // expected-warning{{array comparison always evaluates to a constant}}
73 return array1 > array2; // expected-warning{{array comparison always evaluates to a constant}}
74 return array1 >= array2; // expected-warning{{array comparison always evaluates to a constant}}
/external/eigen/test/eigen2/
H A Deigen2_map.cpp20 Scalar* array2 = ei_aligned_new<Scalar>(size); local
25 Map<VectorType>(array2, size) = Map<VectorType>(array1, size);
28 VectorType ma2 = Map<VectorType, Aligned>(array2, size);
34 ei_aligned_delete(array2, size);
47 Scalar* array2 = ei_aligned_new<Scalar>(size); local
48 for(int i = 0; i < size; i++) array2[i] = Scalar(1);
53 Map<MatrixType>(array2, rows, cols) = Map<MatrixType>((const Scalar*)array1, rows, cols); // test non-const-correctness support in eigen2
56 MatrixType ma2 = Map<MatrixType, Aligned>(array2, rows, cols);
62 ei_aligned_delete(array2, size);
74 Scalar* array2 local
[all...]
/external/valgrind/main/drd/tests/
H A Dcustom_alloc.c60 int* array2 __attribute__((unused)) = custom_alloc(sizeof(int) * 10); local
61 array2 = 0; // leak
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/
H A Dp6.cpp22 int array2[X0<int>::Inner0<const int*>::value == 2? 1 : -1]; variable
/external/clang/test/Parser/
H A Dms-if-exists.cpp60 int array2[] = { local
/external/proguard/src/proguard/util/
H A DArrayUtil.java34 * @param array2 the second array.
38 public static boolean equal(byte[] array1, byte[] array2, int size) argument
42 if (array1[index] != array2[index])
55 * @param array2 the second array.
59 public static boolean equal(short[] array1, short[] array2, int size) argument
63 if (array1[index] != array2[index])
76 * @param array2 the second array.
80 public static boolean equal(int[] array1, int[] array2, int size) argument
84 if (array1[index] != array2[index])
97 * @param array2 th
101 equal(Object[] array1, Object[] array2, int size) argument
202 compare(byte[] array1, int size1, byte[] array2, int size2) argument
236 compare(short[] array1, int size1, short[] array2, int size2) argument
270 compare(int[] array1, int size1, int[] array2, int size2) argument
304 compare(Comparable[] array1, int size1, Comparable[] array2, int size2) argument
[all...]
/external/valgrind/main/memcheck/tests/
H A Dcustom_alloc.c104 int* array2 __attribute__((unused)) = custom_alloc(sizeof(int) * 10); local
105 array2 = 0; // leak

Completed in 5776 milliseconds

123