/external/chromium_org/tools/gyp/test/win/shard/ |
hello2.cc | 5 int f2() { function
|
/external/clang/test/SemaCXX/ |
vararg-default-arg.cpp | 6 void f2(const char * = __null, ...); 10 f2();
|
/external/clang/test/CodeGen/ |
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;
|
always_inline.c | 17 inline int f2() __attribute__((always_inline)); 18 int f2() { return 7; } function 19 int f3(void) { return f2(); }
|
intel_ocl_bicc.c | 6 void f2(void) { function
|
2006-10-30-ArrayCrash.c | 8 unsigned int f2 : 1; member in struct:S 15 if (A->f2)
|
extern-inline.c | 17 extern inline int f2(int a, int b) {return a+b;} function 18 int g2(void) {return f2(0,1);} 19 // CHECK: call i32 @f2 20 static int f2(int a, int b) {return a*b;} function 24 int h2(void) {return f2(1,2);} 25 // CHECK: call i32 @f2
|
ppc64-extend.c | 7 void f2(unsigned int x) { return; } function 8 // CHECK: define void @f2(i32 zeroext %x) [[NUW]]
|
/external/clang/test/Analysis/ |
inline3.c | 13 void f2() { function
|
inline2.c | 12 void f2() { function
|
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/ |
ser.h | 6 inline bool f2() { function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.once/thread.once.onceflag/ |
assign.fail.cpp | 21 std::once_flag f2; local 22 f2 = f;
|
/system/extras/tests/bionic/libc/bionic/ |
test_relocs.c | 13 int f1, f2, expect1 = 1, expect2 = 2; local 16 f2 = func2(); 19 printf( "func2() returns %d: %s\n", f2, (f2 == expect2) ? "OK" : "FAIL" ); 21 if (f1 != expect1 || f2 != expect2)
|
/external/clang/test/CXX/except/except.spec/ |
template.cpp | 6 template <int N> void f2() noexcept(N > 1); 11 void (*t3)() noexcept = &f2<2>; // no-error 12 void (*t4)() noexcept = &f2<0>; // expected-error {{not superset}}
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.exception/exception.terminate/set.terminate/ |
get_terminate.pass.cpp | 17 void f2() {} function 23 std::set_terminate(f2); 24 assert(std::get_terminate() == f2);
|
set_terminate.pass.cpp | 17 void f2() {} function 22 assert(std::set_terminate(f2) == f1);
|
/external/clang/test/ASTMerge/Inputs/ |
function1.c | 3 void f2();
|
/external/clang/test/CodeGenCXX/ |
2007-10-01-StructResize.cpp | 7 unsigned int f2 : 30; member in struct:Bork 12 hdr->f2 = 927;
|
mangle-98.cpp | 12 void f2(S3<100>) {} function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.dynamic/alloc.errors/set.new.handler/ |
set_new_handler.pass.cpp | 16 void f2() {} function 21 assert(std::set_new_handler(f2) == f1);
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
omit-frame-pointer2.cpp | 10 void f2 (void) function 21 f2 ();
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
omit-frame-pointer2.cpp | 10 void f2 (void) function 21 f2 ();
|
/external/clang/test/CXX/class.access/class.friend/ |
p6.cpp | 6 void f2(); 11 friend void X::f2() { } // expected-error{{friend function definition cannot be qualified with 'X::'}} function in class:Y::X
|
/external/clang/test/CXX/expr/ |
p8.cpp | 11 void f2(int (*)()); 18 f2(a3);
|