Searched refs:Foo (Results 1 - 25 of 354) 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 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/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);
/external/chromium_org/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;
H A Dtest3-expected.cc7 struct Foo { struct
11 void ExpectsScopedRefptr(const scoped_refptr<Foo>& param) {
12 Foo* foo = param.get();
16 scoped_refptr<Foo> temp(new Foo);
21 ExpectsScopedRefptr(new Foo);
H A Dtest3-original.cc7 struct Foo { struct
11 void ExpectsScopedRefptr(const scoped_refptr<Foo>& param) {
12 Foo* foo = param;
16 scoped_refptr<Foo> temp(new Foo);
21 ExpectsScopedRefptr(new Foo);
H A Dtest4-expected.cc7 struct Foo { struct
11 void ExpectsRawPtr(Foo* foo) {
12 Foo* temp = foo;
16 scoped_refptr<Foo> ok(new Foo);
21 ExpectsRawPtr(new Foo);
H A Dtest4-original.cc7 struct Foo { struct
11 void ExpectsRawPtr(Foo* foo) {
12 Foo* temp = foo;
16 scoped_refptr<Foo> ok(new Foo);
21 ExpectsRawPtr(new Foo);
H A Dtest10-expected.cc7 struct Foo { struct
12 scoped_refptr<Foo> foo(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 2658 milliseconds

1234567891011>>