Searched defs:Foo (Results 26 - 50 of 395) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Dtemplated-friend-decl.cpp4 struct Foo { struct
9 // Foo<int> is. This is to protect against PR5848; for now, this "parses" but
15 Foo<int> x;
H A Duninit-variables-conditional.cpp3 class Foo { class
5 Foo();
6 ~Foo();
15 // the destructor in Foo fouls about the minor bit of path-sensitivity in
19 if (bar() || baz() || Foo() || init(&x))
/external/compiler-rt/test/profile/Inputs/
H A Dinstrprof-comdat-1.cpp7 FOO<int> Foo; local
9 int Res = Foo.DoIt(10);
H A Dinstrprof-comdat-2.cpp5 FOO<long> Foo; local
9 return (int)Foo.DoIt(10);
/external/eigen/test/
H A Dbug1213.cpp4 Foo enumerator in enum:__anon5794
/external/v8/tools/clang/rewrite_scoped_refptr/tests/
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 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 Dtemp-passed-as-raw-arg-expected.cc7 struct Foo { struct
16 scoped_refptr<Foo> GetBuggyFoo() {
17 return new Foo;
20 void Bar(Foo* f);
H A Dtemp-passed-as-raw-arg-original.cc7 struct Foo { struct
16 scoped_refptr<Foo> GetBuggyFoo() {
17 return new Foo;
20 void Bar(Foo* f);
H A Dtemp-returned-as-raw-expected.cc7 struct Foo : public base::RefCounted<Foo> { struct in inherits:base::RefCounted
12 scoped_refptr<Foo> TestFunction();
15 scoped_refptr<Foo> CreateFoo();
20 scoped_refptr<Foo> Bar::TestFunction() {
H A Dtemp-returned-as-raw-original.cc7 struct Foo : public base::RefCounted<Foo> { struct in inherits:base::RefCounted
12 Foo* TestFunction();
15 scoped_refptr<Foo> CreateFoo();
20 Foo* Bar::TestFunction() {
H A Dtest10-expected.cc7 struct Foo { struct
12 scoped_refptr<Foo> foo(new Foo);
H A Dtest10-original.cc7 struct Foo { struct
12 scoped_refptr<Foo> foo(new Foo);
/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/clang/test/CodeGen/
H A D2009-02-13-zerosize-union-field-ppc.c5 typedef unsigned int Foo __attribute__((aligned(32))); typedef
6 typedef union{Foo:0;}a;
7 typedef union{int x; Foo:0;}b;
H A D2009-02-13-zerosize-union-field.c3 typedef unsigned int Foo __attribute__((aligned(32))); typedef
4 typedef union{Foo:0;}a;
5 typedef union{int x; Foo:0;}b;
/external/clang/test/CodeGenCXX/
H A D2005-02-19-UnnamedVirtualThunkArgument.cpp3 struct Foo { struct
4 Foo();
5 virtual ~Foo();
14 struct Baz : public Foo, public Bar {
H A D2007-10-01-StructResize.cpp10 int Foo(Bork *hdr) { function
H A Dcxx1y-variable-template-linkage.cpp5 // The variable template specialization x<Foo> generated in each file
14 struct Foo { }; struct
17 return x<Foo>;
H A Ddebug-info-indirect-field-decl.cpp6 template <class T, int T::*ptr> class Foo { }; class
27 Foo<Bar, &Bar::i2> the_foo;
H A Ddelayed-template-parsing.cpp7 void Foo() {} function in struct:ClassScopeSpecialization::Type
9 void Foo<0>() {} function in struct:ClassScopeSpecialization::Type
14 // CHECK: call {{.*}} @"\01??$Foo@$0A@@Type@ClassScopeSpecialization@@QAEXXZ"
15 // X64: call {{.*}} @"\01??$Foo@$0A@@Type@ClassScopeSpecialization@@QEAAXXZ"
16 T.Foo<0>();
H A Dfriend-redecl.cpp4 struct Foo { struct
5 friend bool TryFoo(Foo *f2) { return TryFoo(0, f2); }
12 friend bool TryFoo(int, Foo *f3);
14 bool TryFoo(Foo *f5);
16 Foo f;
/external/clang/test/PCH/
H A Drdar10830559.cpp21 class Foo class
30 friend class Foo;

Completed in 436 milliseconds

1234567891011>>