HomeSort by relevance Sort by last modified time
    Searched refs:f1 (Results 151 - 175 of 1163) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/clang/test/CodeGen/
2008-07-30-implicit-initialization.c 4 // CHECK-LABEL: 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-LABEL: define i32 @f1
6 int f1(enum {AA,BB} E) { function
2007-09-28-PackedUnionMember.c 5 unsigned long f1; member in struct:H
19 unsigned long f1; member in struct:E
regparm.c 17 void FASTCALL f1(int i, int j, int k);
18 // CHECK-LABEL: define void @f1(i32 inreg %i, i32 inreg %j, i32 %k)
19 void f1(int i, int j, int k) { } function
struct-passing.c 11 T0 __attribute__((pure)) f1(void);
17 void *ps[] = { f0, f1, f2, f3, f4, f5 };
20 // CHECK: declare i32 @f1() [[RO:#[0-9]+]]
  /external/clang/test/CodeGenCXX/
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>();
mangle-windows.cpp 7 void __stdcall f1(void) {} function
8 // WIN: define x86_stdcallcc void @"\01?f1@@YGXXZ"
reinterpret-cast.cpp 4 void *f1(unsigned long l) { function
  /external/clang/test/PCH/
stmts.c 9 int g1(int x) { return f1(x); }
  /external/clang/test/Sema/
warn-unused-parameters.c 10 void f1() { function
  /external/clang/test/SemaTemplate/
default-arguments-cxx0x.cpp 16 int &f1(T);
18 float &f1(...);
25 float &fr = f1(15);
26 int &ir = f1(HasValue());
member-function-template.cpp 11 template<typename T> T& f1(T);
12 template<typename T, typename U> U& f1(T, U);
15 int &ir1 = f1(i);
16 int &ir2 = f1(d, i);
17 int &ir3 = f1(i, i);
27 int &ir1 = x.f1(i);
28 int &ir2 = x.f1(f, i);
29 int &ir3 = x.f1(i, i);
38 int& (X::*pm1)(int) = &X::f1;
39 float& (X::*pm2)(float) = &X::f1;
    [all...]
member-template-access-expr.cpp 8 int &f1(T t) { function
26 int &ir = f1<X>(xd);
54 int* f1(int);
55 template<typename T> float* f1(T);
62 float *fp1 = x1.f1<>(17);
63 float *fp2 = x1.f1<int>(3.14); // expected-warning {{implicit conversion from 'double' to 'int' changes value from 3.14 to 3}}
64 int *ip1 = x1.f1(17);
65 float *ip2 = x1.f1(3.14);
67 float* (X1::*mf1)(int) = &X1::f1;
68 float* (X1::*mf2)(int) = &X1::f1<>;
    [all...]
  /external/libcxx/test/input.output/iostreams.base/ios.base/ios.base.callback/
register_callback.pass.cpp 35 void f1(std::ios_base::event ev, std::ios_base& stream, int index) function
49 b.register_callback(f1, 4);
50 b.register_callback(f1, 4);
51 b.register_callback(f1, 4);
  /external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.alg/
swap.pass.cpp 76 std::function<int(int)> f1 = A(1); local
80 assert(f1.target<A>()->id() == 1);
82 swap(f1, f2);
85 assert(f1.target<A>()->id() == 2);
91 std::function<int(int)> f1 = A(1); local
95 assert(f1.target<A>()->id() == 1);
97 swap(f1, f2);
100 assert(*f1.target<int(*)(int)>() == g);
106 std::function<int(int)> f1 = g; local
110 assert(*f1.target<int(*)(int)>() == g)
121 std::function<int(int)> f1 = g; local
    [all...]
  /external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/
swap.pass.cpp 75 std::function<int(int)> f1 = A(1); local
79 assert(f1.target<A>()->id() == 1);
81 f1.swap(f2);
84 assert(f1.target<A>()->id() == 2);
90 std::function<int(int)> f1 = A(1); local
94 assert(f1.target<A>()->id() == 1);
96 f1.swap(f2);
99 assert(*f1.target<int(*)(int)>() == g);
105 std::function<int(int)> f1 = g; local
109 assert(*f1.target<int(*)(int)>() == g)
120 std::function<int(int)> f1 = g; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.base.callback/
register_callback.pass.cpp 35 void f1(std::ios_base::event ev, std::ios_base& stream, int index) function
49 b.register_callback(f1, 4);
50 b.register_callback(f1, 4);
51 b.register_callback(f1, 4);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.alg/
swap.pass.cpp 76 std::function<int(int)> f1 = A(1); local
80 assert(f1.target<A>()->id() == 1);
82 swap(f1, f2);
85 assert(f1.target<A>()->id() == 2);
91 std::function<int(int)> f1 = A(1); local
95 assert(f1.target<A>()->id() == 1);
97 swap(f1, f2);
100 assert(*f1.target<int(*)(int)>() == g);
106 std::function<int(int)> f1 = g; local
110 assert(*f1.target<int(*)(int)>() == g)
121 std::function<int(int)> f1 = g; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/
swap.pass.cpp 75 std::function<int(int)> f1 = A(1); local
79 assert(f1.target<A>()->id() == 1);
81 f1.swap(f2);
84 assert(f1.target<A>()->id() == 2);
90 std::function<int(int)> f1 = A(1); local
94 assert(f1.target<A>()->id() == 1);
96 f1.swap(f2);
99 assert(*f1.target<int(*)(int)>() == g);
105 std::function<int(int)> f1 = g; local
109 assert(*f1.target<int(*)(int)>() == g)
120 std::function<int(int)> f1 = g; local
    [all...]
  /external/clang/test/Index/
complete-exprs.c 10 struct X __attribute__((deprecated)) f1 = { 17 }; variable in typeref:struct:X
11 void f2() { f1(17); }
54 // CHECK-CC4: VarDecl:{ResultType struct X}{TypedText f1} (50) (deprecated)
64 // CHECK-CC7: VarDecl:{ResultType struct X}{TypedText f1} (50) (deprecated)
  /external/libcxx/test/utilities/function.objects/refwrap/refwrap.access/
conversion.pass.cpp 40 functor1 f1; local
41 test(f1);
  /external/libcxx/test/utilities/function.objects/refwrap/refwrap.const/
copy_ctor.pass.cpp 40 functor1 f1; local
41 test(f1);
type_ctor.pass.cpp 39 functor1 f1; local
40 test(f1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.access/
conversion.pass.cpp 40 functor1 f1; local
41 test(f1);

Completed in 2794 milliseconds

1 2 3 4 5 67 8 91011>>