Searched defs:baz (Results 76 - 100 of 126) sorted by relevance

123456

/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-byval-sret.cpp13 A __stdcall baz(A o);
37 A B::baz(A x) { function in class:B
41 // CHECK-LABEL: define x86_stdcallcc %struct.A* @"\01?baz@B@@QAG?AUA@@U2@@Z"
59 a = b.baz(a);
67 // CHECK: call x86_stdcallcc %struct.A* @"\01?baz@B@@QAG?AUA@@U2@@Z"
H A Darm.cpp23 bar baz; variable
33 // CHECK: call [[BAR]]* @_ZN3barD1Ev([[BAR]]* @baz)
H A Dmangle-ms-back-references-pr13207.cpp116 void baz(K<char, F<char>, I<char> >) {} function in namespace:PR13207
117 // CHECK: "\01?baz@PR13207@@YAXV?$K@DV?$F@D@PR13207@@V?$I@D@2@@1@@Z"
/external/clang/test/Index/
H A Dcomplete-memfunc-cvquals.cpp6 void baz() const;
21 fc.baz();
22 fcp->baz();
24 sfc->baz();
32 void Foo::baz() const { function in class:Foo
46 // CHECK-NOQUALS: CXXMethod:{ResultType void}{TypedText baz}{LeftParen (}{RightParen )}{Informative const} (35)
53 // CHECK-CONST: CXXMethod:{ResultType void}{TypedText baz}{LeftParen (}{RightParen )}{Informative const} (34)
58 // CHECK-VOLATILE-NOT: baz
65 // CHECK-IMPLICIT-NOQUALS: CXXMethod:{ResultType void}{TypedText baz}{LeftParen (}{RightParen )}{Informative const} (35)
71 // CHECK-IMPLICIT-CONST: CXXMethod:{ResultType void}{TypedText baz}{LeftPare
[all...]
H A Dprint-type.cpp27 Baz<int, 1, Foo> baz; member in struct:outer::inner::Bar
90 // CHECK: FieldDecl=baz:27:20 (Definition) [type=Baz<int, 1, Foo>] [typekind=Unexposed] [canonicaltype=outer::Baz<int, 1, Foo>] [canonicaltypekind=Record] [templateargs/3= [type=int] [typekind=Int]] [isPOD=1]
/external/clang/test/Misc/
H A Dast-dump-templates.cpp18 void baz() { function
/external/clang/test/PCH/
H A Dcxx0x-default-delete.cpp15 struct baz { struct
16 ~baz() = delete;
36 baz bz; // expected-error{{deleted function}} expected-note@16{{deleted here}}
/external/compiler-rt/test/asan/TestCases/Windows/
H A Ddemangled_names.cc23 void baz(T t) { function
38 baz<char*, true>(v_);
48 // CHECK: baz<char *,1> {{.*}}demangled_names.cc
/external/lldb/test/expression_command/formatters/
H A Dmain.cpp4 struct baz struct
8 baz(int a, int b) : h(a), k(b) {} function in struct:baz
15 baz b;
16 baz& b_ref;
/external/v8/test/mjsunit/
H A Ddebug-evaluate-closure.js42 assertEquals("baz inner", exec_state.frame(0).evaluate("baz").value());
43 assertEquals("baz outer", exec_state.frame(1).evaluate("baz").value());
47 exec_state.frame(0).evaluate("baz = 'baz inner foo'");
48 exec_state.frame(1).evaluate("baz = 'baz outer foo'");
59 var baz = "baz oute variable
[all...]
H A Dfield-type-tracking.js143 function baz(f, y) { f.y = y; } function
144 baz(f1, {y: 9});
145 baz(f2, {y: 9});
146 %OptimizeFunctionOnNextCall(baz);
147 baz(f3, {a: -1});
148 assertUnoptimized(baz);
/external/v8/test/mjsunit/regress/
H A Dregress-1229.js129 function baz(x) { function
134 var non_construct = baz(0); /* baz should be inlined */
136 var non_construct = baz(); /* baz should be inlined */
138 var non_construct = baz(0, 0); /* baz should be inlined */
140 var construct = new baz(0);
142 var construct = new baz(0, 0);
H A Dregress-201590.js57 function baz() { function
63 baz();
64 baz();
66 baz();
/external/clang/test/SemaCXX/
H A Dpragma-optimize.cpp55 int __attribute__((always_inline)) baz(int z) { function
H A Dmicrosoft-dtor-lookup.cpp61 void baz(D d) { } // no error function in namespace:Test2
76 void baz(A a) { } // no error; MSVC rejects this, but the standard allows it. function in namespace:Test3
H A DMicrosoftSuper.cpp80 void baz();
83 void PointerToMember::baz() { function in class:PointerToMember
H A Dattr-noreturn.cpp76 void baz() __attribute__((__noreturn__));
78 voidfn baz; member in namespace:PR12948
93 void baz(int) {} function in namespace:PR15291
94 void baz(double) {} function in namespace:PR15291
99 // expected-note@+5 {{candidate function [with T = void (*)(int) __attribute__((noreturn))] not viable: no overload of 'baz' matching 'void (*)(int) __attribute__((noreturn))' for 1st argument}}
111 // expected-note@+2 {{candidate function not viable: no overload of 'baz' matching 'void (*)(int) __attribute__((noreturn))' for 1st argument}}
125 // expected-note@+2 {{candidate function not viable: no overload of 'baz' matching 'fptr_noreturn_t' (aka 'void (*)(int) __attribute__((noreturn))') for 1st argument}}
156 accept_noreturn_fptr(baz); // expected-error {{no matching function for call to 'accept_noreturn_fptr'}}
159 accept_fptr_noreturn_t(baz); // expected-error {{no matching function for call to 'accept_fptr_noreturn_t'}}
162 accept_T<void __attribute__((noreturn)) (*)(int)>(baz); // expecte
[all...]
H A Ddecl-expr-ambiguity.cpp91 int baz; // expected-note 2 {{class 'baz' is hidden by a non-type declaration of 'baz' here}} member in namespace:PR11874
92 class baz {}; class in namespace:PR11874
94 const baz* b1 = 0; // expected-error {{must use 'class' tag to refer to type 'baz' in this scope}}
95 baz* b2; // expected-error {{use of undeclared identifier 'b2'}}
96 baz b3; // expected-error {{must use 'class' tag to refer to type 'baz' in this scope}}
H A Dfunction-redecl.cpp15 int baz(int); // expected-note {{previous declaration is here}}
20 int baz; local
24 float baz(int); // expected-error {{functions that differ only in their return type cannot be overloaded}}
/external/clang/test/SemaTemplate/
H A Ddefault-arguments-cxx0x.cpp53 struct baz : public bar<> { struct in namespace:PR16975
57 baz data{0};
H A Doverload-candidates.cpp113 void baz() { } // expected-note {{candidate template ignored: substitution failure [with T = int]: no type named 'type' in 'PR15673::a_pony<int>'}} function in namespace:PR15673
114 void quux() { baz<int>(); } // expected-error {{no matching function for call to 'baz'}}
/external/clang/test/CodeGen/
H A Dstring-literal.c39 const wchar_t *baz = L"\u1234" "\U0010F00C"; local
/external/clang/test/Sema/
H A Dcallingconv.c10 void __attribute__((fastcall(1))) baz(float *a) { // expected-error {{'fastcall' attribute takes no arguments}} function
/external/clang/test/Analysis/
H A Dstack-addr-ps.c45 struct baz { struct
50 int struct_test(struct baz byVal, int flag) {
/external/v8/test/cctest/
H A Dtest-assembler-x87.cc159 static int baz = 42; variable
168 __ mov(eax, Operand(reinterpret_cast<intptr_t>(&baz), RelocInfo::NONE32));

Completed in 1589 milliseconds

123456