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

1 2 3 4 5 6 7

  /external/clang/test/Sema/
array-declared-as-incorrect-type.c 12 extern int a4[][2]; // expected-note {{previous definition is here}}
13 int a4[2]; // expected-error {{redefinition of 'a4'}} variable
generic-selection.c 23 int a4[_Generic(0L, default: 1, short: 2, float: 3, int: 4) == 1 ? 1 : -1]; local
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-162085.js 64 var a4 = [1.3]; variable
65 grow_store2(a4,1,1.4);
66 a4.length = 0;
67 grow_store2(a4,0,1);
68 assertEquals(1, a4[0]);
69 assertEquals(undefined, a4[1]);
70 assertEquals(undefined, a4[2]);
71 assertEquals(undefined, a4[3]);
  /external/libcxx/test/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/
const_mem_fun.pass.cpp 24 double a4(unsigned i) const {return i-1;} function in struct:A
const_mem_fun1.pass.cpp 24 double a4(unsigned i) const {return i-1;} function in struct:A
30 assert(std::mem_fun(&A::a4)(&a, 6) == 5);
const_mem_fun_ref.pass.cpp 24 double a4(unsigned i) const {return i-1;} function in struct:A
const_mem_fun_ref1.pass.cpp 24 double a4(unsigned i) const {return i-1;} function in struct:A
30 assert(std::mem_fun_ref(&A::a4)(a, 6) == 5);
mem_fun.pass.cpp 24 double a4(unsigned i) const {return i-1;} function in struct:A
mem_fun1.pass.cpp 24 double a4(unsigned i) const {return i-1;} function in struct:A
mem_fun_ref.pass.cpp 24 double a4(unsigned i) const {return i-1;} function in struct:A
mem_fun_ref1.pass.cpp 24 double a4(unsigned i) const {return i-1;} function in struct:A
const_mem_fun1_ref_t.pass.cpp 23 double a4(unsigned i) const {return i-1;} function in struct:A
30 const F f(&A::a4);
const_mem_fun1_t.pass.cpp 23 double a4(unsigned i) const {return i-1;} function in struct:A
30 const F f(&A::a4);
const_mem_fun_ref_t.pass.cpp 23 double a4(unsigned i) const {return i-1;} function in struct:A
const_mem_fun_t.pass.cpp 23 double a4(unsigned i) const {return i-1;} function in struct:A
mem_fun1_ref_t.pass.cpp 23 double a4(unsigned i) const {return i-1;} function in struct:A
mem_fun1_t.pass.cpp 23 double a4(unsigned i) const {return i-1;} function in struct:A
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/
const_mem_fun.pass.cpp 24 double a4(unsigned i) const {return i-1;} function in struct:A
const_mem_fun1.pass.cpp 24 double a4(unsigned i) const {return i-1;} function in struct:A
30 assert(std::mem_fun(&A::a4)(&a, 6) == 5);
const_mem_fun_ref.pass.cpp 24 double a4(unsigned i) const {return i-1;} function in struct:A
const_mem_fun_ref1.pass.cpp 24 double a4(unsigned i) const {return i-1;} function in struct:A
30 assert(std::mem_fun_ref(&A::a4)(a, 6) == 5);
mem_fun.pass.cpp 24 double a4(unsigned i) const {return i-1;} function in struct:A
mem_fun1.pass.cpp 24 double a4(unsigned i) const {return i-1;} function in struct:A
mem_fun_ref.pass.cpp 24 double a4(unsigned i) const {return i-1;} function in struct:A
mem_fun_ref1.pass.cpp 24 double a4(unsigned i) const {return i-1;} function in struct:A

Completed in 194 milliseconds

1 2 3 4 5 6 7