Searched refs:Foo (Results 1 - 25 of 304) 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/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()
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 D2010-05-12-PtrToMember-Dbg.cpp3 class Foo class
8 Foo (int i, int j) { x = i; y = j; } function in class:Foo
12 Foo foo(10, 11);
15 int Foo::* pmi = &Foo::y;
/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 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)
H A Dcomment-with-preamble.c7 //! Foo’s description.
8 void Foo();
13 // CHECK: FunctionDecl=Foo:8:6 RawComment=[//! Foo’s description.] RawCommentRange=[7:1 - 7:25] BriefComment=[Foo’s description.]
/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...]
/external/clang/test/SemaCXX/
H A DPR9572.cpp5 struct Foo : public Base { // expected-error {{base class 'Base' has private destructor}} struct in inherits:Base
7 Foo();
9 struct Bar : public Foo {
10 Bar() { } // expected-note {{implicit destructor for 'Foo' first required here}}
13 Foo f;
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))
H A Dparentheses.cpp4 template<class Foo>
5 bool test(Foo f, int *array)
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 Dzero-length-arrays.cpp5 class Foo { class
6 ~Foo();
7 Foo(const Foo&);
9 Foo(int);
14 Foo foos[0];
15 Foo foos2[0][2];
16 Foo foos3[2][0];
/external/v8/test/mjsunit/bugs/
H A Dbug-222.js28 function Foo(a, b) { } function
29 Foo();
30 var oldArgs = Foo.arguments;
31 Foo();
32 var newArgs = Foo.arguments
37 Foo.arguments = oldArgs;
38 assertEquals(Foo.arguments, newArgs);
41 assertFalse(delete Foo.arguments);
42 assertEquals(Foo.arguments, newArgs);
/external/clang/test/Preprocessor/Inputs/headermap-rel/Foo.framework/Headers/
H A DFoo.h2 Foo.h is parsed

Completed in 450 milliseconds

1234567891011>>