Searched refs:f0 (Results 201 - 225 of 348) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dblocks.c5 int f0(int (^a0)()) { function
H A Dbuiltin-attributes.c5 void f0() { function
H A Dfunctions.c22 void f0() {} function
23 // CHECK: define void @f0()
H A Dle32-arguments.c5 // CHECK: define void @f0(i32 %i, i32 %j, double %k)
6 void f0(int i, long j, double k) {} function
H A Dx86_32-arguments-darwin.c3 // CHECK: define signext i8 @f0()
4 char f0(void) { function
171 struct s42 { enum e40 f0; } f42(void) { } member in struct:s42
174 struct s43 { enum e40 f0; int f1; } f43(void) { } member in struct:s43
177 struct s44 { vvbp f0; } f44(void) { } member in struct:s44
180 struct s45 { vvbp f0; int f1; } f45(void) { } member in struct:s45
189 struct s48 { enum e40 f0; }; member in struct:s48
193 struct s49 { enum e40 f0; int f1; }; member in struct:s49
197 struct s50 { vvbp f0; }; member in struct:s50
201 struct s51 { vvbp f0; in member in struct:s51
[all...]
H A Dbitfield.c5 static int f0(int n) { function
20 return f0(-1) + 44335655;
/external/clang/test/Sema/
H A Dattr-noreturn.c7 static void __attribute__((noreturn)) f0(void) { function
H A Dattr-unused.c5 static void __attribute__((unused)) f0(void);
H A Dblock-args.c33 void f0() { function
H A Dimplicit-builtin-decl.c35 int f0() { function
H A Doverloadable.c64 extern int __attribute__((overloadable)) f0(); // expected-error{{'overloadable' function 'f0' must have a prototype}}
69 f0();
/external/clang/test/SemaCXX/
H A Dattr-nonnull.cpp25 __attribute__((nonnull)) void f0(int *&p);
H A Dvalue-dependent-exprs.cpp19 void f0(int *p) {
H A Dissue547.cpp58 typedef void f0(int) const;
63 int check0[classify_function<f0>::value == 2? 1 : -1];
H A Dvector.cpp8 void f0(char16);
11 f0(c16);
12 f0(ll16);
13 f0(c16e);
14 f0(ll16e);
116 f0(to_c16);
117 f0(to_ll16);
118 f0(to_c16e);
119 f0(to_ll16e);
/external/clang/test/SemaTemplate/
H A Dqualified-id.cpp8 template<typename T> void f0(a::C<T> &a0) { } function in namespace:b
H A Ddependent-template-recover.cpp5 t->f0<U>(); // expected-error{{use 'template' keyword to treat 'f0' as a dependent template name}}
6 t->f0<int>(); // expected-error{{use 'template' keyword to treat 'f0' as a dependent template name}}
/external/skia/include/core/
H A DSkEndian.h130 #define SK_UINT8_BITFIELD(f0, f1, f2, f3, f4, f5, f6, f7) \
131 SK_OT_BYTE f0 : 1; \
140 #define SK_UINT8_BITFIELD(f0, f1, f2, f3, f4, f5, f6, f7) \
148 SK_OT_BYTE f0 : 1;
/external/opencv/cxcore/src/
H A Dcxrand.cpp165 worktype f0, f1; \
172 f0 = cast_macro1( t0.f * p[i + 12] + p[i] ); \
174 arr[i] = cast_macro2(f0); \
181 f0 = cast_macro1( t0.f * p[i + 14] + p[i + 2] ); \
183 arr[i+2] = cast_macro2(f0); \
195 worktype f0; \
200 f0 = cast_macro1( t0.f * p[i + 12] + p[i] ); \
201 arr[i] = cast_macro2(f0); \
224 double f0, f1; local
231 f0
254 double f0; local
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dinjected-class-name.cpp10 void f0(T);
15 void X0<T, Types...>::f0(T) { } function in class:X0
/external/clang/test/CodeGenCXX/
H A Dimplicit-copy-constructor.cpp62 template<class T> struct X0 { void f0(T * ) { } }; function in struct:X0
71 pdata.f0( new impl(*i));
/external/clang/test/Coverage/
H A Dc-language-features.inc29 static void f0(int x) {
129 struct { char f0[10]; } *t28;
131 char *t30 = &t28->f0[1];
133 struct s1 { int f0; };
136 int t31 = (t31_cond ? t31_a : t31_b).f0;
195 int f0;
196 } f0;
/external/clang/test/FixIt/
H A Dfixit-function-call.cpp12 void f0(int *a);
33 // CHECK: error: no matching function for call to 'f0
35 f0(a);
/external/v8/test/mjsunit/
H A Darray-literal-transitions.js89 var f0 = [1, 2, [1, 2]];
90 assertTrue(%HasFastElements(f0));
91 assertEquals([1,2], f0[2]);
92 assertEquals(2, f0[1]);
93 assertEquals(1, f0[0]);
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-tuple.h188 explicit tuple(GTEST_BY_REF_(T0) f0) : f0_(f0) {}
220 explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1) : f0_(f0),
263 explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,
264 GTEST_BY_REF_(T2) f2) : f0_(f0), f1_(f1), f2_(f2) {}
300 explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,
301 GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3) : f0_(f0), f1_(f1), f2_(f2),
341 explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,
343 GTEST_BY_REF_(T4) f4) : f0_(f0), f1
587 explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, member in class:std::tr1::tuple
646 make_tuple(const T0& f0) argument
651 make_tuple(const T0& f0, const T1& f1) argument
656 make_tuple(const T0& f0, const T1& f1, const T2& f2) argument
661 make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3) argument
667 make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4) argument
673 make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5) argument
679 make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5, const T6& f6) argument
685 make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7) argument
691 make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7, const T8& f8) argument
698 make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7, const T8& f8, const T9& f9) argument
[all...]

Completed in 357 milliseconds

1234567891011>>