Searched refs:f2 (Results 1 - 25 of 532) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Dvararg-default-arg.cpp6 void f2(const char * = __null, ...);
10 f2();
/external/clang/test/CodeGen/
H A Dfast-math.c2 float f0, f1, f2; variable
8 f0 = f1 + f2;
H A Dfinite-math.c2 float f0, f1, f2; variable
8 f0 = f1 + f2;
H A Dalways_inline.c17 inline int f2() __attribute__((always_inline));
18 int f2() { return 7; } function
19 int f3(void) { return f2(); }
H A Dintel_ocl_bicc.c6 void f2(void) { function
H A D2006-10-30-ArrayCrash.c8 unsigned int f2 : 1; member in struct:S
15 if (A->f2)
H A Dextern-inline.c17 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
H A Dppc64-extend.c7 void f2(unsigned int x) { return; } function
8 // CHECK: define void @f2(i32 zeroext %x) [[NUW]]
H A Dregparm-flag.c6 void f2(int a, int b) __attribute((regparm(0)));
12 // CHECK: call void @f2(i32 1, i32 2)
13 f2(1, 2);
18 // CHECK: declare void @f2(i32, i32)
/external/clang/test/Analysis/
H A Dinline3.c13 void f2() { function
H A Dinline2.c12 void f2() { function
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
H A Dser.h6 inline bool f2() { function
/external/clang/test/CXX/except/except.spec/
H A Dtemplate.cpp6 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}}
/external/v8/test/mjsunit/
H A Dbinary-operation-overwrite.js30 function f2() { return (1, 2) + 3; } function
34 assertTrue(f2() === f2());
H A Dscope-calls-eval.js50 function f2() { function
65 assertEquals(3, f2());
/external/clang/test/ASTMerge/Inputs/
H A Dfunction1.c3 void f2();
/external/clang/test/CXX/class.access/class.friend/
H A Dp6.cpp6 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/
H A D2007-10-01-StructResize.cpp7 unsigned int f2 : 30; member in struct:Bork
12 hdr->f2 = 927;
H A Dmangle-98.cpp12 void f2(S3<100>) {} function
H A Dfriend-redecl.cpp5 friend bool TryFoo(Foo *f2) { return TryFoo(0, f2); } argument
/external/clang/test/Parser/
H A Dasm.c8 void f2() { function
/external/v8/test/mjsunit/regress/
H A Dregress-2071.js34 function f2() {
37 return f2;
47 function f2() {
53 return f2();
64 function f2() {
70 return f2();
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/
H A Dp2.cpp4 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
/external/clang/test/CXX/expr/
H A Dp8.cpp11 void f2(int (*)());
18 f2(a3);
/external/v8/test/mjsunit/compiler/
H A Dregress-3.js31 var f2 = f0 + f1;
32 f0 = f1; f1 = f2;

Completed in 421 milliseconds

1234567891011>>