HomeSort by relevance Sort by last modified time
    Searched refs:array2 (Results 26 - 50 of 113) sorted by null

12 3 4 5

  /external/clang/test/Sema/
vector-init.c 13 float4 array2[2] = { 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, variable
  /external/clang/test/SemaTemplate/
instantiate-expr-5.cpp 34 int array2[__builtin_offsetof(AnonymousUnion<int>, f) == 0? 1 : -1]; local
ms-if-exists.cpp 51 int array2[] = { local
temp_class_order.cpp 25 int array2[X1<int*, int*>::value == 2? 1 : -1]; variable
instantiate-c99.cpp 51 int array2[10] = { [5] = 3 }; local
ext-vector-type.cpp 92 int array2[X0<float2>::value == 2? 1 : -1]; member in namespace:Deduction
  /external/chromium_org/v8/test/webkit/
dfg-get-by-val-clobber.js 35 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;
dfg-inline-arguments-use-from-uninlined-code.js 42 var array2 = fuzz(a,b,c);
46 for (var i = 0; i < array2.length; ++i)
47 result.push(array2[i]);
  /external/clang/test/SemaCXX/
c99-variable-length-array.cpp 18 POD array2[N]; // expected-warning{{variable length arrays are a C99 feature}} local
39 int array2[T::value]; // expected-warning{{variable length arrays are a C99 feature}} local
array-bounds.cpp 61 int array2[] = { 0, 1, 2 }; // expected-note 2 {{declared here}} local
63 array2[3] = 0; // expected-warning {{array index 3 is past the end of the array (which contains 3 elements)}}
64 array2[2+2] = 0; // expected-warning {{array index 4 is past the end of the array (which contains 3 elements)}}
constant-expression.cpp 113 int array2[recurse2]; // expected-warning {{variable length array}} expected-warning {{integer constant expression}} variable
  /external/valgrind/main/memcheck/tests/
custom_alloc.c 104 int* array2 __attribute__((unused)) = custom_alloc(sizeof(int) * 10); local
105 array2 = 0; // leak
  /external/stlport/test/unit/
list_test.cpp 58 int array2 [] = { 1, 4 }; local
61 list<int> l2(array2, array2 + 2);
98 int array2 [] = { 4, 9 }; local
101 list<int> l2(array2, array2 + 2);
151 int array2 [] = { 2, 4 }; local
154 list<int> l2(array2, array2 + 2);
  /ndk/tests/device/test-gnustl-full/unit/
list_test.cpp 58 int array2 [] = { 1, 4 }; local
61 list<int> l2(array2, array2 + 2);
98 int array2 [] = { 4, 9 }; local
101 list<int> l2(array2, array2 + 2);
151 int array2 [] = { 2, 4 }; local
154 list<int> l2(array2, array2 + 2);
  /ndk/tests/device/test-stlport/unit/
list_test.cpp 58 int array2 [] = { 1, 4 }; local
61 list<int> l2(array2, array2 + 2);
98 int array2 [] = { 4, 9 }; local
101 list<int> l2(array2, array2 + 2);
151 int array2 [] = { 2, 4 }; local
154 list<int> l2(array2, array2 + 2);
  /external/chromium_org/chrome/browser/resources/print_preview/
print_preview_utils.js 27 * @param {Array.<{from: number, to: number}>} array2 The second array.
30 function areArraysEqual(array1, array2) {
31 if (array1.length != array2.length)
34 if (array1[i] !== array2[i])
42 * @param {Array} array2 The second array.
45 function areRangesEqual(array1, array2) {
46 if (array1.length != array2.length)
49 if (array1[i].from != array2[i].from ||
50 array1[i].to != array2[i].to) {
  /external/clang/test/Analysis/
misc-ps.c 121 int array2[] = { 1, 2, 3, 0 }; local
122 int *array[] = { array1, array2 };
  /external/chromium_org/ppapi/proxy/
raw_var_data_unittest.cc 130 scoped_refptr<ArrayVar> array2(new ArrayVar);
131 ScopedPPVar release_array2(ScopedPPVar::PassRef(), array2->GetPPVar());
132 array2->Set(0, release_string.get());
168 array2->Set(0, PP_MakeInt32(100));
  /external/clang/test/CXX/expr/expr.const/
p5-0x.cpp 74 int array2[incomplete]; // expected-error {{non-integer type}} variable
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/
p6.cpp 22 int array2[X0<int>::Inner0<const int*>::value == 2? 1 : -1]; variable
  /packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/mocks/
MockContentProvider.java 158 private static boolean equals(String[] array1, String[] array2) {
160 boolean empty2 = array2 == null || array2.length == 0;
168 if (array1.length != array2.length) return false;
171 if (!array1[i].equals(array2[i])) {
  /external/eigen/test/
geo_parametrizedline.cpp 71 EIGEN_ALIGN16 Scalar array2[8]; local
76 Line4u *p2 = ::new(reinterpret_cast<void*>(array2)) Line4u;
geo_quaternion.cpp 179 EIGEN_ALIGN16 Scalar array2[4]; local
183 // std::cerr << array1 << " " << array2 << " " << array3 << "\n";
185 (MQuaternionA(array2)) = MQuaternionA(array1);
189 Quaternionx q2 = MQuaternionA(array2);
207 EIGEN_ALIGN16 Scalar array2[4]; local
212 QuaternionUA *q2 = ::new(reinterpret_cast<void*>(array2)) QuaternionUA;
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
OldAndroidArrayTest.java 108 String[][] array2 = (String[][]) strStrStrArray; local
  /external/guava/guava-tests/test/com/google/common/collect/
ObjectArraysTest.java 156 Integer[] array2 = Platform.clone(array1); local
159 Object[] target = ObjectArrays.toArrayImpl(list, array2);
168 assertTrue(Arrays.equals(expectedArray2, array2));

Completed in 3466 milliseconds

12 3 4 5