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

1 2 3 4 5 6 7 8 91011>>

  /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
frame-pointer-elim.c 8 // DARWIN: f1:
17 // LINUX: f1:
26 // OMIT_ALL: f1:
35 // OMIT_LEAF: f1:
40 void f1() { f0(); } function
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 3 // Test when entering f1(), we set the right AnalysisContext to Environment.
7 void f1() { function
13 f1();
inline2.c 7 int f1(int a) { function
13 x = f1(1);
lvalue.cpp 3 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 4 void f1(void);
7 void f1(void) function
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
p13.cpp 5 static int f1; member in struct:S
8 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()
  /external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
ser.h 3 inline bool f1() { function
  /external/clang/test/Parser/
asm.c 3 void f1() { function
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 10 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];
28 int f1; member in struct:s2_0
30 extern int a2_0[offsetof(struct s2_0, f1) == 2 ? 1 : -1];
35 int f1; member in struct:s2_1
38 extern int a2_1[offsetof(struct s2_1, f1) == 4 ? 1 : -1];
42 int f1; member in struct:s2_2
46 extern int a2_2[offsetof(struct s2_2, f1) == 4 ? 1 : -1]
54 } f1; member in struct:s2_3
63 } f1; member in struct:s2_4
71 int f1; member in struct:s3_0
76 int f1; member in struct:s3_1
85 int f1; member in struct:s4_0
90 int f1; member in struct:s4_1
    [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}}
instantiate-exception-spec.cpp 4 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);
  /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}}
  /cts/tools/dx-tests/src/dxc/junit/opcodes/ret/jm/
T_ret_4.java 24 private void f1() { method in class:T_ret_4
29 f1(); method
T_ret_4_w.java 24 private void f1() { method in class:T_ret_4_w
29 f1(); method
  /external/clang/test/ASTMerge/Inputs/
function1.c 2 void f1(int, float);
  /external/clang/test/CXX/class.access/class.friend/
p6.cpp 3 void f1();
10 friend void ::f1() { } // expected-error{{friend function definition cannot be qualified with '::'}} function in struct:Y

Completed in 535 milliseconds

1 2 3 4 5 6 7 8 91011>>