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

12 3 4 5 6 7 8 91011

  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.order/
p2.cpp 17 int array2[X<0, 0, int>::value == 2? 1 : -1]; variable
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
sfinae-1.cpp 18 int array2[is_class<char[3]>::value? -1 : 1]; variable
  /external/clang/test/Parser/
ms-if-exists.c 59 int array2[] = { local
ms-if-exists.cpp 60 int array2[] = { local
  /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
  /external/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/valgrind/memcheck/tests/
custom_alloc.c 104 int* array2 __attribute__((unused)) = custom_alloc(sizeof(int) * 10); local
105 array2 = 0; // leak
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ObjectArraysTest.java 85 Integer[] array2 = ObjectArrays.arraysCopyOf(array1, array1.length); local
88 Object[] target = ObjectArrays.toArrayImpl(list, array2);
97 assertTrue(Arrays.equals(expectedArray2, array2));
157 private static boolean arrayEquals(Object[] array1, Object[] array2) {
158 assertSame(array1.getClass(), array2.getClass());
159 return Arrays.equals(array1, array2);
  /external/guava/guava-tests/test/com/google/common/collect/
ObjectArraysTest.java 156 Integer[] array2 = ObjectArrays.arraysCopyOf(array1, array1.length); local
159 Object[] target = ObjectArrays.toArrayImpl(list, array2);
168 assertTrue(Arrays.equals(expectedArray2, array2));
228 private static boolean arrayEquals(Object[] array1, Object[] array2) {
229 assertSame(array1.getClass(), array2.getClass());
230 return Arrays.equals(array1, array2);
  /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/clang/test/SemaCXX/
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)}}
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
  /external/clang/test/Analysis/
misc-ps.c 121 int array2[] = { 1, 2, 3, 0 }; local
122 int *array[] = { array1, array2 };
  /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
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/test/
AbstractTestCase.java 155 * @param array2 - the second array
157 protected void assertEquals(String message, byte[] array1, byte[] array2) {
158 assertTrue("Arrays not equal: " + message, Arrays.equals(array1, array2));
165 * @param array2 - the second array
167 protected void assertEquals(String message, Object[] array1, Object[] array2) {
168 assertTrue("Arrays not equal: " + message, Arrays.equals(array1, array2));
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/test/
AbstractTest.java 149 * @param array2 - the second array
151 protected void assertEquals(String message, byte[] array1, byte[] array2) {
152 assertTrue("Arrays not equal: " + message, Arrays.equals(array1, array2));
158 * @param array2 - the second array
160 protected void assertEquals(String message, Object[] array1, Object[] array2) {
161 assertTrue("Arrays not equal: " + message, Arrays.equals(array1, array2));
  /frameworks/base/core/tests/coretests/src/android/view/inputmethod/
SparseRectFArrayTest.java 97 final SparseRectFArray array2 = builder.build(); local
100 assertEquals(expectedRect, array2.get(i));
102 assertEquals(i, array2.getFlags(i, 0x1234 /* valueIfKeyNotFound */));
103 assertEquals(i, array2.getFlags(i, 0x4321 /* valueIfKeyNotFound */));
105 assertEquals(0x1234, array2.getFlags(i, 0x1234 /* valueIfKeyNotFound */));
106 assertEquals(0x4321, array2.getFlags(i, 0x4321 /* valueIfKeyNotFound */));
109 assertEqualRects(array, array2);
  /external/eigen/test/
geo_parametrizedline.cpp 70 EIGEN_ALIGN16 Scalar array2[8]; local
75 Line4u *p2 = ::new(reinterpret_cast<void*>(array2)) Line4u;

Completed in 1350 milliseconds

12 3 4 5 6 7 8 91011