Searched refs:baz (Results 26 - 50 of 232) sorted by relevance

12345678910

/external/clang/test/CodeGen/
H A Dmrtd.c5 void baz(int arg);
11 // CHECK: call x86_stdcallcc void @baz(i32
12 baz(arg);
17 // CHECK: declare x86_stdcallcc void @baz(i32)
H A Dstatements.c11 baz:
17 static long x = &&bar - &&baz;
18 static long y = &&baz;
H A D2003-08-29-BitFieldStruct.c5 short baz; member in struct:Word
/external/clang/test/CodeGenCXX/
H A Dmangle-abi-examples.cpp19 void baz() { } function in struct:C::E
21 E().baz();
H A DPR6474.cpp7 virtual void baz();
12 template <typename T> void X<T>::baz() {} function in class:test0::X
22 virtual void baz();
27 template <typename T> void X<T>::baz() {} function in class:test1::X
H A Dmangle-ms-abi-examples.cpp6 // MSVC2013: define {{.*}} @"\01?baz@E@?3??bar@C@?1??foo@@YAXXZ@QAEXXZ@QAEXXZ"(
7 // MSVC2015: define {{.*}} @"\01?baz@E@?1??bar@C@?1??foo@@YAXXZ@QAEXXZ@QAEXXZ"(
21 void baz() { } function in struct:C::E
23 E().baz();
H A Dmicrosoft-abi-default-cc.cpp28 void baz();
35 void METHOD_CC A::baz() {} function in class:A
37 // MSABI: define x86_thiscallcc void @"\01?baz@A@@QAEXXZ"
H A Dpragma-weak.cpp23 #pragma weak baz macro
24 extern "C" void baz() {} function
25 // CHECK-LABEL: define weak {{.*}}void @baz(
/external/clang/test/Index/
H A Dcomplete-optional-params.cpp6 void baz(int a = 42, ...);
12 baz(42, 42, 42);
53 // CHECK-CC4: OverloadCandidate:{ResultType void}{Text baz}{LeftParen (}{Optional {Placeholder int a}{Optional {Comma , }{CurrentParameter ...}}}{RightParen )} (1)
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 Dcomplete-pointer-and-reference-to-functions.cpp6 template<class T> void (&baz(T))(T, ...);
12 baz(42)(42, 42, 42);
/external/clang/test/Misc/
H A Dserialized-diags.c12 int baz();
14 if ((x == baz()))
/external/clang/test/SemaCXX/
H A Dfuncdname.cpp11 int baz() { function
12 static_assert(sizeof(__FUNCDNAME__) == 16, "??$baz@H@@YAHXZ");
29 baz<int>();
/external/clang/test/CXX/temp/temp.decls/temp.mem/
H A Dp2.cpp9 template <typename> void baz() {} // expected-error{{templates cannot be declared inside of a local class}} function in struct:foo
/external/clang/test/CoverageMapping/
H A Dunused_names.c8 // CHECK-DAG: @__profn_baz = {{.*}} [3 x i8] c"baz"
26 inline int baz() { return 0; } function
/external/clang/test/Parser/
H A Dcxx1z-attributes.cpp12 baz [[]][[]], enumerator in enum:A::test
/external/clang/test/Preprocessor/
H A Dexpr_liveness.c42 baz
H A Dmacro_paste_simple.c3 #define FOO bar ## baz ## 123
/external/clang/test/Sema/
H A Dattr-target.c5 int __attribute__((target("tune=sandybridge"))) baz() { return 4; } //expected-warning {{Ignoring unsupported 'tune=' in the target attribute string}} function
H A Dxray-always-instrument-attr.cpp10 void baz [[clang::xray_always_instrument("not-supported")]] (); // expected-error {{'xray_always_instrument' attribute takes no arguments}}
/external/llvm/test/tools/dsymutil/Inputs/
H A Dframe.c8 int baz(int b) { function
/external/clang/test/Analysis/
H A Dinline-not-supported.c13 void (^baz)(int *x, ...) = ^(int *x, ...) { *x = 1; };
16 baz(0, 2); // no-warning
/external/llvm/test/DebugInfo/Inputs/
H A Darange-overlap.cc6 static void baz() {} function in struct:S
12 S::foo(); S::bar(); S::baz();
/external/llvm/test/ExecutionEngine/RuntimeDyld/X86/
H A DELF_x64-64_PC8_relocations.s2 # RUN: llvm-rtdyld -triple=x86_64-pc-linux -verify -map-section test_ELF_x86-64_PC8.o,.text.bar=0x10000 -map-section test_ELF_x86-64_PC8.o,.text.baz=0x10040 %T/test_ELF_x86-64_PC8.o
3 # RUN: llvm-rtdyld -triple=x86_64-pc-linux -verify -map-section test_ELF_x86-64_PC8.o,.text.baz=0x10000 -map-section test_ELF_x86-64_PC8.o,.text.bar=0x10040 %T/test_ELF_x86-64_PC8.o
15 .section .text.baz,"ax"
17 .type baz,@function
18 baz: label
23 .size baz, .Ltmp2-baz
/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}}

Completed in 1580 milliseconds

12345678910