HomeSort by relevance Sort by last modified time
    Searched defs:array (Results 26 - 50 of 3039) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
address-constant.c 8 int *array[] = {&i, a, &s.i}; variable
template-specialization.cpp 13 int array[i]; local
14 A::template bar(array[0]); // expected-error {{no matching function for call to 'bar'}}
  /external/clang/test/SemaCXX/
static-array-member.cpp 4 static int array[]; member in struct:X0
10 int X0::array[sizeof(X0) * 2]; member in class:X0
14 static T array[]; member in struct:X1
18 T X1<T, N>::array[N]; member in class:X1
warn-char-subscripts.cpp 5 int array[1] = { 0 }; local
7 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}}
12 int array[1] = { 0 }; local
14 int val = subscript[array]; // expected-warning{{array subscript is of type 'char'}}
  /external/libcxx/test/std/algorithms/alg.sorting/alg.sort/partial.sort/
partial_sort_comp.pass.cpp 42 int* array = new int[N]; local
44 array[i] = i;
45 std::shuffle(array, array+N, randomness);
46 std::partial_sort(array, array+M, array+N, std::greater<int>());
50 assert(array[i] == N-i-1);
52 delete [] array;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.sorting/alg.sort/partial.sort/
partial_sort_comp.pass.cpp 42 int* array = new int[N]; local
44 array[i] = i;
45 std::shuffle(array, array+N, randomness);
46 std::partial_sort(array, array+M, array+N, std::greater<int>());
50 assert(array[i] == N-i-1);
52 delete [] array;
  /system/bt/osi/test/
array_test.cc 5 #include "osi/include/array.h"
10 array_t* array = array_new(4); local
11 ASSERT_TRUE(array != NULL);
12 array_free(array);
18 array_t* array = array_new(4); local
19 EXPECT_DEATH(array_ptr(array), "");
20 array_free(array);
24 array_t* array = array_new(4); local
25 EXPECT_DEATH(array_at(array, 1), "");
26 array_free(array);
30 array_t* array = array_new(sizeof(int)); local
42 array_t* array = array_new(sizeof(int)); local
59 array_t* array = array_new(128); local
    [all...]
  /art/test/501-null-constant-dce/src/
Main.java 25 int[] array = new int[7]; local
26 Object[] arguments = { array };
  /art/test/622-checker-bce-regressions/src/
Main.java 22 static int[] array = new int[10]; field in class:Main
46 expectEquals(8, doNotVisitAfterForwardBCE(array));
  /art/test/667-out-of-bounds/src/
Main.java 18 static int $noinline$arrayAccess(int[] array) {
19 return array[82];
23 int[] array = new int[5]; local
25 $noinline$arrayAccess(array);
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Proxy_I1.java 23 int[] array(long[] f); method in interface:Support_Proxy_I1
Support_Proxy_I2.java 22 int[] array(long[] f); method in interface:Support_Proxy_I2
  /external/clang/test/ASTMerge/Inputs/
init-ctors-classes.cpp 16 int array[2]; member in class:A
17 A(int _x) : A_base(_x), y(0), z(1), array{{2},{3}} {
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p15.cpp 28 static unsigned array[17]; member in struct:rdar9422013::X::Inner
32 template<> unsigned X<1>::Inner::array[]; // okay member in class:rdar9422013::X::Inner
  /external/clang/test/CodeGen/
2009-03-08-ZeroEltStructCrash.c 10 int *array = u->contents.zero_arr; local
  /external/clang/test/CodeGenCXX/
debug-info-global-ctor-dtor.cpp 13 A array[2]; variable
volatile.cpp 12 volatile A *array; member in namespace:test0
20 array[0] = t;
  /external/clang/test/PCH/
objc_container.h 14 NSMutableArray *array; local
15 id oldObject = array[10];
17 array[10] = oldObject;
  /external/compiler-rt/test/BlocksRuntime/
byrefcopyint.c 57 voidVoid array[100]; local
59 array[i] = testRoutine(argv[0]);
60 array[i]();
63 Block_release(array[i]);
  /external/compiler-rt/test/asan/TestCases/
atoi_strict.c 17 void test1(char *array) {
19 memset(array, '1', 10);
20 array[9] = 'a';
21 int r = atoi(array);
25 void test2(char *array) {
27 array[9] = 'a';
28 int r = atoi(array + 9);
32 void test3(char *array) {
34 memset(array, ' ', 10);
35 array[9] = '-'
42 char *array = (char*)malloc(10); local
    [all...]
atol_strict.c 17 void test1(char *array) {
19 memset(array, '1', 10);
20 array[9] = 'a';
21 long r = atol(array);
25 void test2(char *array) {
27 array[9] = 'a';
28 long r = atol(array + 9);
32 void test3(char *array) {
34 memset(array, ' ', 10);
35 array[9] = '-'
42 char *array = (char*)malloc(10); local
    [all...]
atoll_strict.c 20 void test1(char *array) {
22 memset(array, '1', 10);
23 array[9] = 'a';
24 long long r = atoll(array);
28 void test2(char *array) {
30 array[9] = 'a';
31 long long r = atoll(array + 9);
35 void test3(char *array) {
37 memset(array, ' ', 10);
38 array[9] = '-'
45 char *array = (char*)malloc(10); local
    [all...]
global-location.cc 12 static int array[10]; member in struct:C
17 int C::array[10]; member in class:C
18 // CLASS_STATIC: 0x{{.*}} is located 4 bytes to the right of global variable 'C::array' defined in '{{.*}}global-location.cc:[[@LINE-1]]:8' {{.*}} of size 40
24 case 'c': return C::array[one * 11];
26 static int array[10]; local
27 // FUNC_STATIC: 0x{{.*}} is located 4 bytes to the right of global variable 'array' defined in '{{.*}}global-location.cc:[[@LINE-1]]:16' {{.*}} of size 40
28 memset(array, 0, 10);
29 return array[one * 11];
stack-frame-demangle.cc 8 char array[10]; local
9 memset(array, 0, 10);
10 return array[x]; // BOOOM
  /external/icu/icu4c/source/common/
unistr_props.cpp 35 UChar *array = getArrayStart(); local
46 U16_PREV(array, 0, i, c);
63 U16_NEXT(array, i, length, c);

Completed in 883 milliseconds

12 3 4 5 6 7 8 91011>>