Searched defs:Foo (Results 1 - 25 of 395) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2002-03-14-QuotesInStrConst.c8 const char *Foo() { function
H A Dpascal-string.c3 unsigned char * Foo( void ) function
/external/clang/test/Index/
H A Dannotate-tokens-with-default-args.h1 struct Foo { struct
2 void m(Foo *f = 0);
H A Davailability.cpp3 struct Foo { struct
5 Foo() = delete;
11 // CHECK: StructDecl=Foo:3:8 (Definition) [type=Foo] [typekind=Record] [isPOD=1]
13 // CHECK: CXXConstructor=Foo:5:3 (unavailable) (default constructor) [type=void (){{.*}}] [typekind=FunctionProto] [resulttype=void] [resulttypekind=Void] [isPOD=0]
H A Dcomplete-qualified.cpp6 class Foo class
9 C<Foo, class Bar> c;
14 Foo::
17 // CHECK-CC1: FieldDecl:{ResultType C<Foo, class Bar>}{TypedText c} (35)
18 // CHECK-CC1: ClassDecl:{TypedText Foo} (35)
19 // CHECK-CC1: CXXMethod:{ResultType Foo &}{TypedText operator=}{LeftParen (}{Placeholder const Foo &}{RightParen )}
20 // CHECK-CC1: CXXDestructor:{ResultType void}{TypedText ~Foo}{LeftParen (}{RightParen )} (35)
/external/clang/test/Misc/Inputs/
H A Dworking-directory.h1 typedef int Foo; typedef
/external/clang/test/VFS/Inputs/UsesFoo.framework/Headers/
H A DUsesFoo.h1 @import Foo; variable
/external/clang/test/CodeGenCXX/
H A Dstatic-destructor.cpp10 class Foo { class
12 ~Foo() {
16 Foo global;
20 // X86: call i32 @__cxa_atexit(void (i8*)* bitcast (void (%class.Foo*)* @_ZN3FooD1Ev to void (i8*)*), i8* getelementptr inbounds (%class.Foo, %class.Foo* @global, i32 0, i32 0), i8* @__dso_handle)
25 // ARM: call i32 @__cxa_atexit(void (i8*)* bitcast (%class.Foo* (%class.Foo*)* @_ZN3FooD1Ev to void (i8*)*), i8* getelementptr inbounds (%class.Foo, %class.Foo*
[all...]
H A Dvirt-dtor-gen.cpp5 class Foo { class
6 virtual ~Foo();
8 Foo::~Foo() {}
10 // CHECK-LABEL: define {{.*}}void @_ZN3FooD0Ev(%class.Foo* %this) unnamed_addr
H A Dconstructor-attr.cpp7 struct Foo { struct
H A Dvirt-canonical-decl.cpp12 class Foo : public Base { class in inherits:Base
14 virtual ~Foo();
17 Foo::~Foo()
H A Dcopy-initialization.cpp3 struct Foo { struct
4 Foo();
5 Foo(const Foo&);
10 operator const Foo&() const;
13 void f(Foo);
15 // CHECK-LABEL: define void @_Z1g3Foo(%struct.Foo* %foo)
16 void g(Foo foo) {
23 f(Foo());
H A Ddebug-info-ms-abi.cpp5 struct Foo { struct
11 Foo f;
12 Foo::Nested n;
14 // CHECK: ![[Foo:[^ ]*]] = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "Foo",
18 // CHECK-SAME: containingType: ![[Foo]], virtuality: DW_VIRTUALITY_virtual, virtualIndex: 0,
22 // CHECK-SAME: containingType: ![[Foo]], virtuality: DW_VIRTUALITY_virtual, virtualIndex: 1,
26 // CHECK-SAME: containingType: ![[Foo]], virtuality: DW_VIRTUALITY_virtual, virtualIndex: 2,
30 // CHECK-SAME: identifier: ".?AUNested@Foo@@"
H A Dmember-init-assignment.cpp4 struct Foo { struct
7 Foo(unsigned arg);
10 Foo::Foo(unsigned arg) : file_id(arg = 42) function in class:Foo
13 // CHECK: define {{.*}} @_ZN3FooC2Ej(%struct.Foo* %this, i32 %arg) unnamed_addr
17 // CHECK: ret {{void|%struct.Foo}}
H A Dmicrosoft-abi-extern-template.cpp3 // Even though Foo<int> has an extern template declaration, we have to emit our
6 // CHECK: @"\01??_7?$Foo@H@@6B@" = linkonce_odr unnamed_addr constant [1 x i8*] [
7 // CHECK-SAME: i8* bitcast (i8* (%struct.Foo*, i32)* @"\01??_G?$Foo@H@@UEAAPEAXI@Z" to i8*)
10 // CHECK-LABEL: define %struct.Foo* @"\01?f@@YAPEAU?$Foo@H@@XZ"()
11 // CHECK: call %struct.Foo* @"\01??0?$Foo@H@@QEAA@XZ"(%struct.Foo* %{{.*}})
13 // CHECK: define available_externally %struct.Foo*
21 template <typename T> struct Foo : Base { struct in inherits:Base
22 Foo() {} function in struct:Foo
[all...]
H A Dpr15753.cpp3 template <typename T> static int Foo(T t);
5 int Foo(T t) { function
8 template<> int Foo<int>(int i) { function
/external/clang/test/FixIt/
H A Dno-diagnostics-fixit-info.c4 struct Foo { struct
/external/libcxx/test/libcxx/utilities/meta/
H A Dis_referenceable.pass.cpp23 struct Foo {}; struct
33 static_assert(( std::__is_referenceable<Foo>::value), "");
34 static_assert(( std::__is_referenceable<const Foo>::value), "");
35 static_assert(( std::__is_referenceable<Foo &>::value), "");
36 static_assert(( std::__is_referenceable<const Foo &>::value), "");
38 static_assert(( std::__is_referenceable<Foo &&>::value), "");
39 static_assert(( std::__is_referenceable<const Foo &&>::value), "");
75 static_assert(( std::__is_referenceable<void (int, float, Foo &)>::value), "");
77 static_assert((!std::__is_referenceable<void (int, float, Foo &) const>::value), "");
78 static_assert((!std::__is_referenceable<void (int, float, Foo
[all...]
/external/clang/test/Analysis/
H A Ddtor-cxx11.cpp7 struct Foo { struct in namespace:Cxx11BraceInit
8 ~Foo() {}
12 for (Foo foo : {Foo(), Foo()}) {}
H A Danalyzer-config.cpp13 class Foo { class
/external/clang/test/CodeCompletion/
H A Dfunction-templates.cpp9 class Foo { class
16 Foo().getAs<int>();
/external/clang/test/Modules/Inputs/
H A Dcategory_right_sub.h1 @interface Foo(RightSub) <P2>
5 @interface Foo() { function
16 @interface Foo(LeftP4) <P4>
/external/clang/test/PCH/
H A Dsingle-token-macro.c23 void STDCALL Foo(void);
27 void STDCALL Foo(void) function
/external/clang/test/SemaCXX/
H A Dno-warn-composite-pointer-type.cpp5 void Foo(int **thing, const int **thingMax) function
H A Dpr25181-crash-on-invalid.cpp4 template <typename T> class Foo { // expected-note {{template parameter is declared here}} class
6 void Foo<T>::method(T *) const throw() {} // expected-error {{nested name specifier 'Foo<T>::' for declaration does not refer into a class, class template or class template partial specialization}}

Completed in 381 milliseconds

1234567891011>>