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

1 2 3

  /external/stlport/test/unit/
insert_test.cpp 34 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));
  /ndk/tests/device/test-gnustl-full/unit/
insert_test.cpp 34 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));
  /ndk/tests/device/test-stlport/unit/
insert_test.cpp 34 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/
p9.cpp 18 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}}
constant-builtins-2.c 56 int array2[(sizeof(array1)/sizeof(int)) == 2? 1 : -1]; variable
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
  /external/clang/test/SemaTemplate/
temp_class_order.cpp 25 int array2[X1<int*, int*>::value == 2? 1 : -1]; variable
instantiate-declref-ice.cpp 24 int array2[X0<int>::value == sizeof(int)? 1 : -1]; variable
instantiate-c99.cpp 51 int array2[10] = { [5] = 3 }; local
instantiate-expr-5.cpp 34 int array2[__builtin_offsetof(AnonymousUnion<int>, f) == 0? 1 : -1]; 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
deduction.cpp 81 int array2[is_same<Replace<vector<_1>, int, float>::type, vector<int> >::value? 1 : -1]; variable
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.order/
p2.cpp 16 int array2[X<0, 0, int>::value == 2? 1 : -1]; variable
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
sfinae-1.cpp 17 int array2[is_class<char[3]>::value? -1 : 1]; variable
  /external/valgrind/main/drd/tests/
custom_alloc.c 60 int* array2 __attribute__((unused)) = custom_alloc(sizeof(int) * 10); local
61 array2 = 0; // leak
  /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/temp/temp.decls/temp.class.spec/
p6.cpp 22 int array2[X0<int>::Inner0<const int*>::value == 2? 1 : -1]; variable
  /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 );
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
OldAndroidArrayTest.java 108 String[][] array2 = (String[][]) strStrStrArray; local
  /external/clang/test/Analysis/
misc-ps.c 119 int array2[] = { 1, 2, 3, 0 }; local
120 int *array[] = { array1, array2 };
  /external/clang/test/CXX/expr/expr.const/
p5-0x.cpp 74 int array2[incomplete]; // expected-error {{non-integer type}} variable

Completed in 997 milliseconds

1 2 3