Searched refs:Foo (Results 1 - 25 of 566) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2002-03-14-QuotesInStrConst.c8 const char *Foo() { function
/external/clang/test/CodeGenCXX/
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 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 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 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 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 Dvirt-canonical-decl.cpp12 class Foo : public Base { class in inherits:Base
14 virtual ~Foo();
17 Foo::~Foo()
/external/clang/test/Misc/Inputs/
H A Dworking-directory.h1 typedef int Foo; typedef
/external/clang/test/Analysis/
H A Ddtor-cxx11.cpp7 struct Foo { struct in namespace:Cxx11BraceInit
8 ~Foo() {}
12 for (Foo foo : {Foo(), Foo()}) {}
/external/clang/test/FixIt/
H A Dno-diagnostics-fixit-info.c4 struct Foo { struct
/external/clang/test/Misc/
H A Dworking-directory.c5 Foo bar;
/external/clang/test/VFS/Inputs/UsesFoo.framework/Headers/
H A DUsesFoo.h1 @import Foo; variable
/external/clang/test/Index/
H A Dannotate-tokens-with-default-args.cpp3 void Foo::m(Foo *f) {}
7 // CHECK: Identifier: "Foo" [3:6 - 3:9] TypeRef=struct Foo:1:8
11 // CHECK: Identifier: "Foo" [3:13 - 3:16] TypeRef=struct Foo:1:8
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]
/external/clang/test/Profile/
H A Dcxx-structors.cpp5 struct Foo { struct
6 Foo() {} function in struct:Foo
7 Foo(int) {} function in struct:Foo
8 ~Foo() {}
11 struct Bar : public Foo {
13 Bar(int x) : Foo(x) {}
17 Foo foo;
18 Foo foo2(1);
/external/v8/tools/clang/rewrite_scoped_refptr/tests/
H A Dtemp-assigned-to-raw-var-original.cc7 struct Foo { struct
14 scoped_refptr<Foo> GetBuggyFoo() {
15 return new Foo;
18 Foo* unsafe = GetBuggyFoo();
H A Dtemp-bool-test-expected.cc7 struct Foo { struct
14 scoped_refptr<Foo> GetBuggyFoo() {
15 return new Foo;
H A Dtemp-bool-test-original.cc7 struct Foo { struct
14 scoped_refptr<Foo> GetBuggyFoo() {
15 return new Foo;
H A Dtest10-original.cc7 struct Foo { struct
12 scoped_refptr<Foo> foo(new Foo);
H A Dlocal-returned-as-raw-expected.cc7 struct Foo { struct
13 scoped_refptr<Foo> GetBuggyFoo();
15 scoped_refptr<Foo> GetBuggyFoo() {
16 scoped_refptr<Foo> unsafe(new Foo);
H A Dlocal-returned-as-raw-original.cc7 struct Foo { struct
13 Foo* GetBuggyFoo();
15 Foo* GetBuggyFoo() {
16 scoped_refptr<Foo> unsafe(new Foo);
H A Dtest7-expected.cc7 struct Foo { struct
11 void ExpectsRawPtr(Foo* foo) {
12 Foo* temp = foo;
17 Foo* GetHeapFoo() {
18 scoped_refptr<Foo>* heap_allocated = new scoped_refptr<Foo>();
19 *heap_allocated = new Foo;
H A Dtest7-original.cc7 struct Foo { struct
11 void ExpectsRawPtr(Foo* foo) {
12 Foo* temp = foo;
17 Foo* GetHeapFoo() {
18 scoped_refptr<Foo>* heap_allocated = new scoped_refptr<Foo>();
19 *heap_allocated = new Foo;
/external/clang/test/Preprocessor/
H A Dmacro_with_initializer_list.cpp11 class Foo { class
13 Foo();
14 Foo(std::initializer_list<int>);
15 bool operator==(const Foo);
16 Foo operator+(const Foo);
21 Foo F;
22 F = Foo{1,2};
25 EQ(F,Foo());
26 EQ(F,Foo({
[all...]

Completed in 1503 milliseconds

1234567891011>>