/external/chromium_org/tools/gyp/test/win/shard/ |
hello1.cc | 5 int f1() { function
|
/external/clang/test/CodeGen/ |
redef-ext-inline.c | 4 extern inline int f1 (void) {return 1;} function 5 int f3 (void) {return f1();} 6 int f1 (void) {return 0;} function
|
intel_ocl_bicc.c | 4 void __attribute__((intel_ocl_bicc)) f1(void); 7 f1(); 8 // CHECK: call intel_ocl_bicc void @f1() 11 // CHECK: declare intel_ocl_bicc void @f1()
|
fast-math.c | 2 float f0, f1, f2; variable 8 f0 = f1 + f2;
|
finite-math.c | 2 float f0, f1, f2; variable 8 f0 = f1 + f2;
|
2008-07-21-mixed-var-fn-decl.c | 4 int f1(), g1;
|
/external/clang/test/Frontend/ |
warning-mapping-2.c | 4 void f0() { f1(); } // expected-error {{implicit declaration of function}}
|
/external/clang/test/Analysis/ |
inline3.c | 4 // Test when entering f1(), we set the right AnalysisDeclContext to Environment. 8 void f1() { function 14 f1();
|
inline2.c | 8 int f1(int a) { function 14 x = f1(1);
|
lvalue.cpp | 4 int f1() { function
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/ |
p3.cpp | 4 inline void f1(); // expected-error {{inline declaration of 'f1' not allowed in block scope}} 8 void f1();
|
/external/clang/test/SemaCXX/ |
vararg-default-arg.cpp | 5 void f1(void); 8 void f1(void) function
|
/external/clang/test/Driver/ |
frame-pointer-elim.c | 30 void f1() { f0(); } function
|
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/ |
p13.cpp | 6 static int f1; member in struct:S 9 int S::f1 = f0; member in class:S
|
/external/clang/test/CodeCompletion/ |
call.c | 4 void f1(); 8 f1(0, 0); 14 // CHECK-CC3: f1()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.dynamic/alloc.errors/set.new.handler/ |
set_new_handler.pass.cpp | 15 void f1() {} function 20 assert(std::set_new_handler(f1) == 0); 21 assert(std::set_new_handler(f2) == f1);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.exception/exception.terminate/set.terminate/ |
set_terminate.pass.cpp | 16 void f1() {} function 21 std::set_terminate(f1); 22 assert(std::set_terminate(f2) == f1);
|
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/ |
ser.h | 3 inline bool f1() { function
|
/external/clang/test/Parser/ |
cxx-in-c.c | 5 void f1(int x) try {}; // expected-error{{expected function body after function declarator}}
|
/external/clang/test/Sema/ |
varargs-x86-64.c | 4 void f1() { function
|
pragma-pack-2.c | 11 int f1; member in struct:s0 13 extern int a0[offsetof(struct s0, f1) == 4 ? 1 : -1]; 18 int f1; member in struct:s1 20 extern int a1[offsetof(struct s1, f1) == 2 ? 1 : -1]; 26 int f1; member in struct:s3_0 31 int f1; member in struct:s3_1 33 extern int a3_0[offsetof(struct s3_0, f1) == 1 ? 1 : -1]; 34 extern int a3_1[offsetof(struct s3_1, f1) == 4 ? 1 : -1]; 40 int f1; member in struct:s4_0 45 int f1; member in struct:s4_1 56 } f1; member in struct:s5_0 [all...] |
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.funcaddr/ |
p1.cpp | 12 template<typename T> T f1(T, int); 13 template<typename T> T f1(T); 16 float (*f1a)(float, int) = f1; 17 float (*f1b)(float, int) = &f1; 18 float (*f1c)(float) = f1; 19 float (*f1d)(float) = (f1); 20 float (*f1e)(float) = &f1; 21 float (*f1f)(float) = (&f1);
|
/external/clang/test/SemaTemplate/ |
friend.cpp | 18 int f1(int); 23 float f1(float); 25 using M::f1; 27 template<typename T> void f1(T, T); 31 friend class f1; // expected-error{{'friend' used outside of class}}
|
/system/extras/tests/bionic/libc/bionic/ |
test_relocs.c | 13 int f1, f2, expect1 = 1, expect2 = 2; local 15 f1 = func1(); 18 printf( "func1() returns %d: %s\n", f1, (f1 == expect1) ? "OK" : "FAIL" ); 21 if (f1 != expect1 || f2 != expect2)
|
/external/clang/test/CXX/except/except.spec/ |
template.cpp | 5 template <int N> void f1() throw(int); 8 void (*t1)() throw(int) = &f1<0>; 9 void (*t2)() throw() = &f1<0>; // expected-error {{not superset}}
|