HomeSort by relevance Sort by last modified time
    Searched refs:f2 (Results 51 - 75 of 709) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/PCH/Inputs/
chain-selectors2.h 3 -(double)f2;
  /external/clang/test/Parser/
cxx-attributes.cpp 7 virtual void f2(const char* a, ...) function in class:c
pragma-fp-contract.c 9 void f2(void) { function
  /external/clang/test/Sema/
implicit-builtin-redecl.c 16 void f2() { function
  /external/clang/test/SemaCXX/
derived-to-base-ambig.cpp 18 class F2 : public E2, public A2 { };
20 void g(E2* e2, F2* f2) {
23 o2 = f2; // expected-error{{ambiguous conversion from derived class 'F2' to base class 'Object2':}} expected-error{{assigning to 'Object2 *' from incompatible type 'F2 *'}}
31 void overload_call(F2* f2) {
32 overload_okay(f2);
attr-regparm.cpp 8 void __attribute__((regparm(3))) f2(); // expected-note{{previous declaration is here}}
14 void __attribute__((regparm(2))) X0::f2() { } // expected-error{{function declared with regparm(2) attribute was previously declared with the regparm(3) attribute}} function in class:X0
function-type-qual.cpp 8 cfn f2; // expected-error {{non-member function of type 'cfn' (aka 'void () const') cannot have 'const' qualifier}} variable
12 cfn f2; member in class:C
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
copy_assign.pass.cpp 73 std::function<int(int)> f2; local
74 f2 = f;
77 assert(f2.target<A>());
78 assert(f2.target<int(*)(int)>() == 0);
87 std::function<int(int)> f2; local
88 f2 = f;
90 assert(f2.target<int(*)(int)>());
91 assert(f2.target<A>() == 0);
99 std::function<int(int)> f2; local
100 f2 = f
113 std::function<int(int)> f2; local
    [all...]
alloc_function.pass.cpp 75 std::function<int(int)> f2(std::allocator_arg, test_allocator<A>(), f);
78 assert(f2.target<A>());
79 assert(f2.target<int(*)(int)>() == 0);
88 std::function<int(int)> f2(std::allocator_arg, test_allocator<int(*)(int)>(), f);
90 assert(f2.target<int(*)(int)>());
91 assert(f2.target<A>() == 0);
99 std::function<int(int)> f2(std::allocator_arg, test_allocator<int>(), f);
101 assert(f2.target<int(*)(int)>() == 0);
102 assert(f2.target<A>() == 0);
copy.pass.cpp 73 std::function<int(int)> f2 = f; local
76 assert(f2.target<A>());
77 assert(f2.target<int(*)(int)>() == 0);
86 std::function<int(int)> f2 = f; local
88 assert(f2.target<int(*)(int)>());
89 assert(f2.target<A>() == 0);
97 std::function<int(int)> f2 = f; local
99 assert(f2.target<int(*)(int)>() == 0);
100 assert(f2.target<A>() == 0);
110 std::function<int(int)> f2 = std::move(f) local
    [all...]
  /external/llvm/utils/
GetRepositoryPath 18 svn info | grep 'URL:' | cut -d: -f2-
20 git svn info | grep 'URL:' | cut -d: -f2-
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/exception.unexpected/set.unexpected/
set_unexpected.pass.cpp 17 void f2() {} function
29 // verify f1 was replace with f2
30 assert(std::set_unexpected(f2) == f1);
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/filebuf.assign/
member_swap.pass.cpp 32 std::filebuf f2; local
33 f2.swap(f);
35 assert(f2.is_open());
36 assert(f2.sgetc() == '2');
47 std::wfilebuf f2; local
48 f2.swap(f);
50 assert(f2.is_open());
51 assert(f2.sgetc() == L'2');
move_assign.pass.cpp 33 std::filebuf f2; local
34 f2 = move(f);
36 assert(f2.is_open());
37 assert(f2.sgetc() == '2');
48 std::wfilebuf f2; local
49 f2 = move(f);
51 assert(f2.is_open());
52 assert(f2.sgetc() == L'2');
nonmember_swap.pass.cpp 34 std::filebuf f2; local
35 swap(f2, f);
37 assert(f2.is_open());
38 assert(f2.sgetc() == '2');
49 std::wfilebuf f2; local
50 swap(f2, f);
52 assert(f2.is_open());
53 assert(f2.sgetc() == L'2');
  /external/clang/test/SemaTemplate/
function-template-specialization.cpp 29 template<int N> void f2(double (&array)[N]);
30 template<typename T> void f2(T (&array)[42]);
32 template<> void f2<double>(double (&array)[42]);
33 template<> void f2<42>(double (&array)[42]);
35 void f2<25>(double (&array)[25]); // expected-error{{specialization}}
  /external/clang/test/CodeGen/
fp16-ops.c 7 volatile float f0, f1, f2; variable
59 h1 = h0 * f2;
78 h1 = (h0 / f2);
101 h1 = (f2 + h0);
120 h1 = (f2 - h0);
135 test = (f2 < h0);
147 test = (h0 > f2);
165 test = (f2 <= h0);
177 test = (h0 >= f2);
238 h0 += f2;
    [all...]
microsoft-call-conv.c 4 void __stdcall f2(void);
13 f2();
14 // CHECK: call x86_stdcallcc void @f2()
24 void (__stdcall *pf2)(void) = f2;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/Regress/
function-001.js 47 function f2( a ) { var a, b; }; function
52 "function f2( a ) { var a, b; }; typeof f1",
66 "typeof f2",
68 typeof f2 );
74 "typeof f2.toString()",
76 typeof f2.toString() );
  /external/clang/test/Analysis/
chroot.c 14 void f2(void) { function
exercise-ps.c 18 static void f2(void *buf) { function
  /external/clang/test/CXX/class/class.local/
p3.cpp 13 void f2() { function
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p10.cpp 10 mutable int &f2; // expected-error{{'mutable' cannot be applied to references}} member in struct:s0
  /external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
cg.cpp 19 b = f2();
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
basic.cpp 18 template<typename T> void f2(T*, T*); // expected-note {{candidate template ignored: could not match 'T *' against 'ConvToIntPtr'}} \
26 f2(ip, ConvToIntPtr()); // expected-error{{no matching function}}
27 f2(ip, ip); // okay
28 f2(ip, fp); // expected-error{{no matching function}}

Completed in 1287 milliseconds

1 23 4 5 6 7 8 91011>>