HomeSort by relevance Sort by last modified time
    Searched refs:f2 (Results 1 - 25 of 709) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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++/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++/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/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/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++/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/Parser/
asm.c 8 void f2() { function
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/
p2.cpp 4 X0 f2();
11 X1 f2();
12 X1 f2(int);
13 X1 f2(float);
23 struct X0::X0 X0::f2() { return X0(); } function in class:X0
25 template<typename T> X1<T>::X1<T> X1<T>::f2() { } // expected-error{{qualified reference to 'X1' is a constructor name rather than a template name wherever a constructor can be declared}} function in class:X1
26 template<typename T> X1<T>::X1<T> (X1<T>::f2)(int) { } // expected-error{{qualified reference to 'X1' is a constructor name rather than a template name wherever a constructor can be declared}} function in class:X1
27 template<typename T> struct X1<T>::X1<T> (X1<T>::f2)(float) { } function in class:X1

Completed in 968 milliseconds

1 2 3 4 5 6 7 8 91011>>