HomeSort by relevance Sort by last modified time
    Searched refs:f1 (Results 101 - 125 of 744) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
constructor-for-array-members.cpp 13 S() : iS(i++), f1(vf++) {printf("S::S()\n");}
14 ~S(){printf("S::~S(iS = %d f1 = %f)\n", iS, f1); }
16 float f1; member in struct:S
24 printf("ARR_S[%d].iS = %d ARR_S[%d].f1 = %f\n", i, ARR_S[i].iS, i, ARR_S[i].f1);
29 printf("MULTI_ARR[%d][%d][%d].iS = %d MULTI_ARR[%d][%d][%d].f1 = %f\n",
30 i,j,k, MULTI_ARR[i][j][k].iS, i,j,k, MULTI_ARR[i][j][k].f1);
conditional-temporaries.cpp 21 void f1(bool b) { function in namespace:__anon6494
30 f1(true);
31 f1(false);
inline-functions.cpp 26 inline void f1(int);
29 void f1(int) { } function
31 void test_f1() { f1(17); }
mangle-variadic-templates.cpp 22 template<typename ...Types> void f1() {} function
24 template void f1<>();
26 template void f1<int>();
28 template void f1<int, float>();
reinterpret-cast.cpp 4 void *f1(unsigned long l) { function
  /dalvik/dx/tests/044-dex-math-ops/
Blort.java 56 public void blort(float f1, float f2) {
57 f = -f1;
58 f = f1 + f2;
59 f = f1 - f2;
60 f = f1 * f2;
61 f = f1 / f2;
62 f = f1 % f2;
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p3-0x.cpp 26 template<typename T> X<T> f1(const T&&); // expected-note{{candidate function [with T = int] not viable: no known conversion from 'int' to 'const int &&' for 1st argument}} \
30 X<int> xi0 = f1(prvalue<int>());
31 X<int> xi1 = f1(xvalue<int>());
32 f1(lvalue<int>()); // expected-error{{no matching function for call to 'f1'}}
33 X<Y> xy0 = f1(prvalue<Y>());
34 X<Y> xy1 = f1(xvalue<Y>());
35 f1(lvalue<Y>()); // expected-error{{no matching function for call to 'f1'}}
  /external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
p6.cpp 12 template<int X, int Y> void f1(A0<0, (X + Y)>) { } // expected-note{{previous}} function
13 template<int X, int Y> void f1(A0<0, (X - Y)>) { } function
14 template<int A, int B> void f1(A0<0, (A + B)>) { } // expected-error{{redefinition}} function
  /external/clang/test/CodeGen/
functions.c 25 void f1();
27 // CHECK: call void @f1()
28 f1(1, 2, 3);
30 // CHECK: define void @f1()
31 void f1() {} function
microsoft-call-conv.c 3 void __fastcall f1(void);
8 f1();
9 // CHECK: call x86_fastcallcc void @f1()
23 void (__fastcall *pf1)(void) = f1;
2008-07-30-implicit-initialization.c 4 // CHECK: define i32 @f1()
19 int f1() { function
bitfield-promote.c 10 long long f1(void) { function
14 // CHECK: @f1()
decl-in-prototype.c 5 // CHECK: define i32 @f1
6 int f1(enum {AA,BB} E) { function
  /external/clang/test/Sema/
knr-def-call.c 9 void f1(a, b) int a, b; {} function
11 f1(1, 2, 3); // expected-warning{{too many arguments}}
18 f3 t3(int b) { return b? f0 : f1; } // okay
  /external/clang/test/SemaTemplate/
canonical-expr-type-0x.cpp 19 N<sizeof...(T)> f1() {} // expected-note{{previous}} function
22 N<sizeof...(T)> f1() {} function
25 N<sizeof...(U)> f1() {} // expected-error{{redefinition}} function
  /external/clang/test/Analysis/
chroot.c 9 void f1(void) { function
exercise-ps.c 7 static void f1(const char *x, char *y) { function
  /external/clang/test/CXX/class/class.local/
p3.cpp 3 void f1() { function
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p10.cpp 9 mutable T0 f1; // expected-error{{'mutable' and 'const' cannot be mixed}} member in struct:s0
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p6-0x.cpp 4 void f1() &&; // expected-error {{non-member function cannot have '&&' qualifier}}
9 void f1() &&;
46 func_type_rvalue f1; member in struct:Y
50 void (X::*mpf2)() && = &X::f1;
  /external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
cg.cpp 18 b = f1();
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p9-linkage.cpp 47 inline void f1(T& t) { function
52 extern template void f1<>(int *&);
63 f1(ip);
65 f1(fp);
p9.cpp 44 inline void f1(T& t) { function
49 extern template void f1<>(int *&);
57 f1(ip); // expected-note{{instantiation}}
58 f1(fp); // expected-note{{instantiation}}
  /external/clang/test/CXX/temp/temp.spec/temp.inst/
p11.cpp 13 void f1(A<int> x) { x.Allocate(); } function in namespace:test0
  /external/clang/test/PCH/
stmts.c 9 int g1(int x) { return f1(x); }

Completed in 919 milliseconds

1 2 3 45 6 7 8 91011>>