Searched refs:f1 (Results 1 - 25 of 499) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dredef-ext-inline.c4 extern inline int f1 (void) {return 1;} function
5 int f3 (void) {return f1();}
6 int f1 (void) {return 0;} function
H A Dframe-pointer-elim.c8 // DARWIN: f1:
17 // LINUX: f1:
26 // OMIT_ALL: f1:
35 // OMIT_LEAF: f1:
40 void f1() { f0(); } function
H A D2008-07-21-mixed-var-fn-decl.c4 int f1(), g1;
H A D2007-04-05-PackedBitFields-2.c12 struct F f1; variable in typeref:struct:F
15 f1.l = 5;
/external/clang/test/Frontend/
H A Dwarning-mapping-2.c4 void f0() { f1(); } // expected-error {{implicit declaration of function}}
/external/clang/test/Analysis/
H A Dinline3.c3 // Test when entering f1(), we set the right AnalysisDeclContext to Environment.
7 void f1() { function
13 f1();
H A Dinline2.c7 int f1(int a) { function
13 x = f1(1);
H A Dlvalue.cpp3 int f1() { function
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
H A Dp3.cpp4 inline void f1(); // expected-error {{inline declaration of 'f1' not allowed in block scope}}
8 void f1();
/external/clang/test/SemaCXX/
H A Dvararg-default-arg.cpp4 void f1(void);
7 void f1(void) function
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
H A Dp13.cpp5 static int f1; member in struct:S
8 int S::f1 = f0; member in class:S
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.funcaddr/
H A Dp1.cpp12 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/CodeCompletion/
H A Dcall.c4 void f1();
8 f1(0, 0);
14 // CHECK-CC3: f1()
/external/clang/test/SemaTemplate/
H A Dinstantiate-exception-spec.cpp4 template<typename T> void f1(T*) throw(T); // expected-error{{incomplete type 'Incomplete' is not allowed in exception specification}} \
9 f1(int_p);
10 f1(incomplete_p);
H A Dfriend.cpp18 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}}
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
H A Dser.h3 inline bool f1() { function
/external/clang/test/Parser/
H A Dcxx-in-c.c5 void f1(int x) try {}; // expected-error{{expected function body after function declarator}}
/external/clang/test/Sema/
H A Dvarargs-x86-64.c4 void f1() { function
H A Dpragma-pack-2.c10 int f1; member in struct:s0
12 extern int a0[offsetof(struct s0, f1) == 4 ? 1 : -1];
17 int f1; member in struct:s1
19 extern int a1[offsetof(struct s1, f1) == 2 ? 1 : -1];
25 int f1; member in struct:s3_0
30 int f1; member in struct:s3_1
32 extern int a3_0[offsetof(struct s3_0, f1) == 1 ? 1 : -1];
33 extern int a3_1[offsetof(struct s3_1, f1) == 4 ? 1 : -1];
39 int f1; member in struct:s4_0
44 int f1; member in struct:s4_1
55 } f1; member in struct:s5_0
[all...]
/external/v8/test/mjsunit/compiler/
H A Dregress-3.js29 var f0 = 0, f1 = 1;
31 var f2 = f0 + f1;
32 f0 = f1; f1 = f2;
/external/clang/test/CXX/except/except.spec/
H A Dtemplate.cpp5 template <int N> void f1() throw(int);
8 void (*t1)() throw(int) = &f1<0>;
9 void (*t2)() throw() = &f1<0>; // expected-error {{not superset}}
/external/v8/test/mjsunit/
H A Dbinary-operation-overwrite.js29 function f1() { return (1.2, 3.4) + 5.6; } function
33 assertTrue(f1() === f1());
/external/clang/test/ASTMerge/Inputs/
H A Dfunction1.c2 void f1(int, float);
/external/clang/test/CXX/class.access/class.friend/
H A Dp6.cpp3 void f1();
10 friend void ::f1() { } // expected-error{{friend function definition cannot be qualified with '::'}} function in struct:Y
/external/clang/test/CodeGenCXX/
H A D2007-10-01-StructResize.cpp6 unsigned int f1 : 3; member in struct:Bork
11 hdr->f1 = 7;

Completed in 2428 milliseconds

1234567891011>>