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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
p4.cpp 3 void f0() { // expected-note {{previous definition is here}} function
6 inline void f0(); // expected-error {{inline declaration of 'f0' follows non-inline definition}}
  /external/clang/test/Modules/Inputs/
lookup_right.hpp 1 float *f0(float*);
lookup_left.hpp 1 int *f0(int*);
  /external/clang/test/CodeGen/
2008-09-22-bad-switch-type.c 4 void f0(void) { function
bitfield-promote.c 3 long long f0(void) { function
4 struct { unsigned f0 : 32; } x = { 18 }; member in struct:__anon17072
5 return (long long) (x.f0 - (int) 22);
7 // CHECK: @f0()
11 struct { unsigned f0 : 31; } x = { 18 }; member in struct:__anon17073
12 return (long long) (x.f0 - (int) 22);
18 struct { unsigned f0 ; } x = { 18 }; member in struct:__anon17074
19 return (long long) (x.f0 - (int) 22);
PR3589-freestanding-libcalls.c 7 void f0() { function
  /external/clang/test/Driver/
cc-log-diagnostics.c 7 int f0() {} function
frame-pointer-elim.c 34 void f0() {} function
35 void f1() { f0(); }
  /external/clang/test/Frontend/Inputs/TestFramework.framework/Headers/
TestFramework.h 1 static int f0(void) {} function
  /external/clang/test/Frontend/
warning-mapping-3.c 10 static void f0(void) {} // expected-fatal {{unused function}} function
warning-mapping-2.c 4 void f0() { f1(); } // expected-error {{implicit declaration of function}} function
ast-codegen.c 11 // CHECK: define i32 @f0()
12 int f0() { function
  /external/swiftshader/third_party/LLVM/utils/lit/lit/ExampleTests/Clang/
fsyntax-only.c 3 int f0(void) {} // expected-warning {{control reaches end of non-void function}} function
  /external/strace/tests/
stack-fcall.c 5 f0(0);
6 f0(1);
  /external/strace/tests-m32/
stack-fcall.c 5 f0(0);
6 f0(1);
  /external/strace/tests-mx32/
stack-fcall.c 5 f0(0);
6 f0(1);
  /external/clang/test/CXX/over/over.over/
p1.cpp 3 template<typename T> T f0(T);
4 int f0(int);
8 int (*f0)(int); member in struct:S
13 int (*f0a)(int) = f0;
14 int (*f0b)(int) = &f0;
15 int (*f0c)(int) = (f0);
16 float (*f0d)(float) = f0;
17 float (*f0e)(float) = &f0;
18 float (*f0f)(float) = (f0);
19 int (&f0g)(int) = f0;
55 x + f0; local
56 x + &f0; local
59 x * f0; local
61 x \/ f0; local
    [all...]
p2.cpp 4 T f0(T, T); // expected-note{{deduced conflicting types for parameter 'T' ('int' vs. 'float')}}
7 int (*f0a)(int, int) = f0;
8 int (*f0b)(int, int) = &f0;
9 int (*f0c)(int, float) = f0; // expected-error{{address of overloaded function 'f0' does not match required type 'int (int, float)'}}
p4.cpp 3 template<typename T> T f0(T); // expected-note{{candidate function}}
4 int f0(int); // expected-note{{candidate function}}
7 int (*fp0)(int) = f0;
8 int (*fp1)(int) = &f0;
9 float (*fp2)(float) = &f0;
13 int f0(int); // expected-note{{candidate function}}
18 int (*fp0)(int) = f0; // expected-error{{address of overloaded function 'f0' is ambiguous}}
19 float (*fp1)(float) = f0;
  /external/libcxx/test/std/thread/futures/futures.unique_future/
copy_assign.fail.cpp 26 std::future<int> f0, f; local
27 f = f0; // expected-error {{overload resolution selected deleted operator '='}}
30 std::future<int &> f0, f; local
31 f = f0; // expected-error {{overload resolution selected deleted operator '='}}
34 std::future<void> f0, f; local
35 f = f0; // expected-error {{overload resolution selected deleted operator '='}}
39 std::future<int> f0, f;
40 f = f0; // expected-error {{'operator=' is a private member of 'std::__1::future<int>'}}
43 std::future<int &> f0, f;
44 f = f0; // expected-error {{'operator=' is a private member of 'std::__1::future<int &>'}
    [all...]
  /external/clang/test/CXX/over/over.match/over.match.best/
p1.cpp 4 template<typename T> int &f0(T*, int);
5 float &f0(void*, int);
9 int &ir = f0(ip, 0);
12 float &fr = f0(vp, 0);
  /external/clang/test/Sema/
block-explicit-noreturn-type.c 6 void f0() { function
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
p13.cpp 5 static const int f0 = 0; member in struct:S
9 int S::f1 = f0;
  /external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
p4.cpp 5 template<typename T> void f0(T) { } function
6 template<typename T, typename U> void f0(T) { } function
7 template<typename T, typename U> void f0(U) { } function
8 void f0();
9 template<typename T> void f0(T*);
10 void f0(int);
11 template<int I> void f0();
12 template<typename T> void f0();
  /external/clang/test/CodeCompletion/
call.c 3 void f0(float x, float y);
6 f0(0, 0);
10 // CHECK-CC1: f0(<#float x#>, float y)
12 // CHECK-CC2: f0(float x, <#float y#>)

Completed in 643 milliseconds

1 2 3 4 5 6 7 8 91011>>