HomeSort by relevance Sort by last modified time
    Searched refs:f0 (Results 176 - 200 of 642) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/clang/test/SemaTemplate/
explicit-instantiation.cpp 6 template typedef void f0; // expected-error{{explicit instantiation of typedef}} typedef
15 T f0(T x) { function in struct:X0
18 T *f0(T *, T *) { return T(); } // expected-warning 0-1 {{expression which evaluates to zero treated as a null pointer constant of type 'int *'}} expected-error 0-1 {{cannot initialize return object of type 'int *' with an rvalue of type 'int'}} function in struct:X0
20 template <typename U> T f0(T, U) { return T(); } // expected-note-re {{candidate template ignored: could not match 'int (int, U){{( __attribute__\(\(thiscall\)\))?}}' against 'int (int){{( __attribute__\(\(thiscall\)\))?}} const'}} \ function in struct:X0
35 template int X0<int>::f0(int);
36 template int* X0<int>::f0(int*, int*); // expected-note{{in instantiation of member function 'X0<int>::f0' requested here}}
37 template int X0<int>::f0(int, float);
39 template int X0<int>::f0(int) const; // expected-error{{does not refer}}
40 template int* X0<int>::f0(int*, float*); // expected-error{{does not refer}
    [all...]
instantiate-decl-init.cpp 32 void f0() { function
36 template void f0<int>();
37 template void f0<float>();
canonical-expr-type.cpp 7 void f0(T x, __typeof__(f(x)) y) { } // expected-note{{previous}} function
10 void f0(T x, __typeof__((f)(x)) y) { } function
13 void f0(U u, __typeof__(f(u))) { } // expected-error{{redefinition}} function
46 void f0(type1); // expected-note{{previous}}
47 void f0(type2);
48 void f0(type3); // expected-error{{redeclared}}
member-access-expr.cpp 4 x.Base::f0();
8 void f0();
22 x.Base2::f0();
32 x.CrazyBase::f0(); // expected-error{{ambiguous}} \
84 template <int> float* &f0();
85 template <int> const float* &f0() const;
87 (void)static_cast<float*>(f0<0>());
90 (void)f0<0>();
  /external/valgrind/none/tests/mips32/
MoveIns.c 145 "mtc1 $t0, $f0\n\t" \
147 "c.eq.s $f0, $f2\n\t" \
167 "mtc1 $t0, $f0\n\t" \
169 "c.eq.s $f0, $f2\n\t" \
192 "mtc1 $t0, $f0\n\t" \
196 "c.eq.s $f0, $f2\n\t" \
218 "mtc1 $t0, $f0\n\t" \
222 "c.eq.s $f0, $f2\n\t" \
283 TESTINSNMOVE("mfc1 $t1, $f0", 0, f0, t1)
    [all...]
  /external/clang/test/CXX/temp/temp.param/
p11-0x.cpp 71 template<typename T = int, typename U> T &f0(U) { T *x = 0; return *x; } function in namespace:DefaultTemplateArgsInFunction
74 int &ir0 = f0(3.14159);
75 int &ir1 = f0<int>(3.14159);
76 float &fr0 = f0<float>(3.14159);
79 template<> int &f0(int*);
80 template int &f0(double&);
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
p1-retmem.cpp 11 size_type f0() const;
17 typename X0<T>::size_type X0<T>::f0() const { function in class:X0
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p8.cpp 7 T* f0(T* ptr);
20 T* X0<T>::f0(T* ptr) { function in class:X0
  /external/clang/test/CodeGen/
debug-info.c 5 struct { typeof(0) f0; } v0; member in struct:__anon6137
19 struct s0 *f0(struct s0 *a0) { function
2008-07-31-promotion-of-compound-pointer-arithmetic.c 2 // CHECK-LABEL: define i32 @f0
10 int f0() { function
builtins-arm64.c 3 void f0(void *a, void *b) { function
c-strings.c 26 // CHECK-LABEL: define void @f0()
27 void f0() { function
incomplete-function-type.c 4 // CHECK-LABEL: define void @f0
14 void f0() {} function
tentative-decls.c 14 struct s0 *f0() { function
unreachable.c 7 int f0() { function
  /external/clang/test/SemaCXX/
attr-noreturn.cpp 21 void f0() __attribute__((__noreturn__));
23 void f2() { f1(f0); }
27 void (*fp)() = f0;
28 void (*fp1)() __attribute__((noreturn)) = f0;
32 void f0(int) __attribute__((__noreturn__));
35 void (*fp)() = f0;
36 void (*fp1)() __attribute__((noreturn)) = f0;
45 f3(f0); // okay
  /external/skia/src/core/
SkVertState.cpp 15 state->f0 = index + 0;
28 state->f0 = indices[index + 0];
42 state->f0 = index + 1;
45 state->f0 = index + 0;
60 state->f0 = indices[index + 1];
63 state->f0 = indices[index + 0];
75 state->f0 = 0;
88 state->f0 = indices[0];
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p6-0x.cpp 3 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;
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
partial-ordering.cpp 35 int &f0(T1, T2, Rest...);
38 float &f0(T1, T2);
41 int &ir1 = f0(1, 2.0, 'a');
42 float &fr1 = f0(1, 2.0);
  /external/clang/test/CodeGenCXX/
alloca-align.cpp 9 // CHECK-LABEL: define void @f0
11 extern "C" void f0() { function
  /external/clang/test/Modules/Inputs/
module_private_left.h 7 int &f0(int);
  /external/clang/test/PCH/
functions.c 8 int f0(int x0, int y0, ...) { return x0 + y0; } function
  /external/clang/test/Sema/
warn-unused-value.c 84 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}}
warn-unused-variables.c 9 void f0(void) { function
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
MatrixUtilsTests.java 30 private static void assertEqualsFloat(float f0, float f1) {
31 assertEqualsFloat(f0, f1, EPSILON);
34 /* package */ static void assertEqualsFloat(float f0, float f1, float error) {
35 assertTrue(Math.abs(f0 - f1) < error);

Completed in 419 milliseconds

1 2 3 4 5 6 78 91011>>