/external/clang/test/Sema/ |
constant-builtins-2.c | 56 int array2[(sizeof(array1)/sizeof(int)) == 2? 1 : -1]; variable
|
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/SemaObjC/ |
objc-array-literal.m | 40 NSArray *array2 = @[blah]; // expected-error{{collection element of type 'const char *' is not an Objective-C object}}
|
objc-literal-sig.m | 46 id array2 = @[ @17 ]; // expected-error{{literal construction method 'arrayWithObjects:count:' has incompatible signature}}
|
/external/clang/test/SemaTemplate/ |
ms-if-exists.cpp | 51 int array2[] = {
local
|
temp_class_order.cpp | 25 int array2[X1<int*, int*>::value == 2? 1 : -1]; variable
|
ext-vector-type.cpp | 92 int array2[X0<float2>::value == 2? 1 : -1]; member in namespace:Deduction
|
default-arguments.cpp | 91 int array2[is_same<__typeof(x2_deep_nontype), variable
|
instantiate-c99.cpp | 51 int array2[10] = { [5] = 3 }; local
|
/packages/apps/Contacts/tests/src/com/android/contacts/tests/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])) {
|
/libcore/luni/src/main/java/java/util/ |
Arrays.java | [all...] |
/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)}}
|
/external/valgrind/main/drd/tests/ |
custom_alloc.c | 60 int* array2 __attribute__((unused)) = custom_alloc(sizeof(int) * 10); local 61 array2 = 0; // leak
|
/external/astl/tests/ |
test_algorithm.cpp | 108 char array2[1] = { '\0' }; local 111 std::fill_n(array2, 1, sc); 112 EXPECT_TRUE(array2[0] == 1 );
|
/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));
|
/external/llvm/test/Analysis/BasicAA/ |
featuretest.ll | 16 %Array2 = alloca i32, i32 200 19 call void @external(i32* %Array2) 24 %pointer2 = getelementptr i32* %Array2, i64 %B
|
/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/clang/test/Analysis/ |
misc-ps.c | 119 int array2[] = { 1, 2, 3, 0 }; local 120 int *array[] = { array1, array2 };
|
/external/llvm/test/Transforms/LoopStrengthReduce/ |
2012-01-02-nopreheader.ll | 60 define fastcc void @nopreheader2([200 x i32]* nocapture %Array2) nounwind { 77 %scevgep = getelementptr [200 x i32]* %Array2, i32 %tmp26, i32 %indvar
|
/external/valgrind/main/memcheck/tests/ |
custom_alloc.c | 66 int* array2 __attribute__((unused)) = custom_alloc(sizeof(int) * 10); local 67 array2 = 0; // leak
|
/external/clang/test/CXX/expr/expr.const/ |
p5-0x.cpp | 74 int array2[incomplete]; // expected-error {{non-integer type}} variable
|
/external/clang/test/Preprocessor/ |
line-directive.c | 90 extern char array2[\
|
/external/stlport/test/unit/ |
vector_test.cpp | 237 int array2 [] = { 9, 16 }; local 254 // Insert contents of array2 before fourth element. 255 v.insert(v.begin() + 3, array2, array2 + 2);
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
OldAndroidArrayTest.java | 108 String[][] array2 = (String[][]) strStrStrArray; local
|