Searched defs:f0 (Results 126 - 150 of 282) sorted by relevance

1234567891011>>

/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp9.cpp39 void f0(T& t) { function
48 extern template void f0<>(int *&);
52 f0(ip);
53 f0(fp); // expected-note{{instantiation}}
/external/clang/test/CodeGen/
H A Dalias.c13 void f0(void) { } function
15 extern void f1(void) __attribute((alias("f0")));
16 // CHECKBASIC-DAG: @f1 = alias void ()* @f0
20 // CHECKBASIC: define void @f0() [[NUW:#[0-9]+]] {
H A Darm-vector-arguments.c12 // CHECK: define void @f0(%struct.int8x16x2_t* noalias sret %agg.result, <16 x i8> %{{.*}}, <16 x i8> %{{.*}})
13 int8x16x2_t f0(int8x16_t a0, int8x16_t a1) { function
H A Dbuiltins-arm.c4 void *f0() function
H A Dincomplete-function-type.c4 // CHECK-LABEL: define void @f0
14 void f0() {} function
H A Dinline2.c4 // CHECK-GNU89-LABEL: define i32 @f0()
5 // CHECK-C99-LABEL: define i32 @f0()
6 int f0(void);
7 int f0(void) { return 0; } function
65 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
H A Dmangle.c8 void __attribute__((__overloadable__)) f0(int a) {} function
10 void __attribute__((__overloadable__)) f0(long b) {} function
H A Dtentative-decls.c14 struct s0 *f0() { function
/external/clang/test/CodeGenCXX/
H A Dalloca-align.cpp9 // CHECK-LABEL: define void @f0
11 extern "C" void f0() { function
H A Dmangle-variadic-templates.cpp14 void f0(X<sizeof...(Types), Types&...>) { } function
16 template void f0(X<0>);
19 template void f0<int, float, double>(X<3, int&, float&, double&>);
/external/clang/test/PCH/
H A Dstmts.h3 void f0(int x) { function
/external/clang/test/Sema/
H A Dblock-args.c33 void f0() { function
H A Dknr-def-call.c4 void f0(a, b, c, d) int a,b,c,d; {} function
6 f0(1); // expected-warning{{too few arguments}}
18 f3 t3(int b) { return b? f0 : f1; } // okay
H A Dpragma-pack-2.c10 char f0; member in struct:s0
17 char f0; member in struct:s1
25 char f0; member in struct:s3_0
30 char f0; member in struct:s3_1
39 char f0; member in struct:s4_0
44 char f0; member in struct:s4_1
53 char f0; member in struct:s5_0
55 int f0; member in struct:s5_0::s2_4_0
H A Dwarn-unused-value.c84 struct s0 { int f0; }; member in struct:s0
86 void f0(int a);
89 f0((int)(a->f0 + 1, 10)); // expected-warning {{expression result unused}}
/external/clang/test/SemaCXX/
H A Dtype-definition-in-specifier.cpp13 void f0() { function
H A Dwarn-unused-parameters.cpp4 T f0(T x);
12 template<typename T> T X<T>::f0(T x) { return x; } function in class:X
20 x.f0(i);
/external/clang/test/SemaTemplate/
H A Danonymous-union.cpp12 void f0() { function in struct:T1
19 void f1(T1<A> *S) { S->f0(); } // expected-note{{instantiation of member function}}
H A Dfunction-template-specialization.cpp4 void f0(int (&array)[N]); // expected-note {{candidate template ignored: could not match 'int' against 'char'}}
7 template<> void f0(int (&array)[1]);
11 f0(iarr1);
15 template<> void f0(char (&array)[1]); // expected-error{{no function template matches}}
16 template<> void f0<2>(int (&array)[2]) { } function
40 template <typename T> bool f0(T &t1);
41 template <> bool f0<float>(float &t1);
43 template <> bool PR5833::f0<float>(float &t1) {} function in class:PR5833
H A Dinstantiate-decl-init.cpp32 void f0() { function
36 template void f0<int>();
37 template void f0<float>();
H A Dtemplate-id-expr.cpp13 void f0(const Value &Val) { isa<Value>(Val); } function
/external/libcxx/test/thread/futures/futures.async/
H A Dasync.pass.cpp27 int f0() function
67 std::future<int> f = std::async(f0);
75 std::future<int> f = std::async(std::launch::async, f0);
83 std::future<int> f = std::async(std::launch::any, f0);
91 std::future<int> f = std::async(std::launch::deferred, f0);
/external/skia/src/core/
H A DSkVertState.h21 int f0, f1, f2; member in struct:VertState
/external/chromium_org/v8/test/mjsunit/
H A Dswitch.js30 function f0() { function
36 f0(); // no errors
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
H A Dp6-0x.cpp3 void f0() &; // expected-error {{non-member function cannot have '&' qualifier}}
8 void f0() &;
45 func_type_lvalue f0; member in struct:Y
49 void (X::*mpf1)() & = &X::f0;

Completed in 5248 milliseconds

1234567891011>>