HomeSort by relevance Sort by last modified time
    Searched defs:array2 (Results 1 - 25 of 308) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
p9.cpp 19 int array2[X2<>::value? 1 : -1]; variable
  /external/clang/test/Sema/
vector-ops.c 21 int array2[17]; local
23 (void)(array2[v2ua]); // expected-error{{array subscript is not an integer}}
self-comparison.c 50 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}}
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/SemaCXX/
non-empty-class-size-zero.cpp 7 int array2[0]; member in struct:X
c99-variable-length-array-cxx11.cpp 22 POD array2[N]; // expected-warning{{variable length arrays are a C99 feature}} local
  /external/clang/test/SemaTemplate/
temp_class_order.cpp 25 int array2[X1<int*, int*>::value == 2? 1 : -1]; variable
instantiate-declref-ice.cpp 25 int array2[X0<int>::value == sizeof(int)? 1 : -1]; variable
instantiate-c99.cpp 51 int array2[10] = { [5] = 3 }; local
ms-if-exists.cpp 51 int array2[] = { local
ext-vector-type.cpp 92 int array2[X0<float2>::value == 2? 1 : -1]; member in namespace:Deduction
instantiate-expr-5.cpp 34 int array2[__builtin_offsetof(AnonymousUnion<int>, f) == 0? 1 : -1]; local
  /art/compiler/utils/
dedupe_set_test.cc 71 const std::vector<uint8_t>* array2; local
75 array2 = deduplicator.Add(self, test2);
76 ASSERT_EQ(array2, array1);
77 ASSERT_TRUE(std::equal(test2.begin(), test2.end(), array2->begin()));
  /art/test/554-checker-rtp-checkcast/src/
Main.java 60 int[] array2 = (int[]) returnIntArray(); local
65 catch_phi = array2;
  /art/test/662-regression-alias/src/
Main.java 59 int[] array2 = null; local
63 array2 = array;
65 array2[1] = 4;
  /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.decls/temp.friend/
p4.cpp 37 int array2[sizeof(X3<int>)]; 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/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stackdepot_test.cc 62 uptr array2[] = {1, 2, 3, 4, 8, 9}; local
63 StackTrace s2(array2, ARRAY_SIZE(array2));
70 uptr array2[] = {7, 1, 3, 0}; local
75 StackTrace s2(array2, ARRAY_SIZE(array2));
  /external/valgrind/drd/tests/
custom_alloc.c 60 int* array2 __attribute__((unused)) = custom_alloc(sizeof(int) * 10); local
61 array2 = 0; // leak
  /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/valgrind/memcheck/tests/
custom_alloc.c 104 int* array2 __attribute__((unused)) = custom_alloc(sizeof(int) * 10); local
105 array2 = 0; // leak
  /libcore/benchmarks/src/benchmarks/
DeepArrayOpsBenchmark.java 28 private Object[] array2; field in class:DeepArrayOpsBenchmark
35 array2 = new Object[arrayLength * 13];
38 array2[i] = new IntWrapper(i);
41 array2[i + 1] = new16ElementObjectarray();
44 array2[i + 2] = new boolean[16];
47 array2[i + 3] = new byte[16];
50 array2[i + 4] = new char[16];
53 array2[i + 5] = new short[16];
56 array2[i + 6] = new float[16];
59 array2[i + 7] = new long[16]
    [all...]

Completed in 678 milliseconds

1 2 3 4 5 6 7 8 91011>>