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

123456789

/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: 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: 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 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;
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;
H A D2005-02-19-UnnamedVirtualThunkArgument.cpp3 struct Foo { struct
4 Foo();
5 virtual ~Foo();
14 struct Baz : public Foo, public Bar {
/external/clang/test/Misc/Inputs/
H A Dworking-directory.h1 typedef int Foo; typedef
/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);
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/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 default 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 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];
H A Dconstructor.cpp4 class Foo { class
5 Foo();
6 (Foo)(float) { } function in class:Foo
7 explicit Foo(int); // expected-note {{previous declaration is here}}
8 Foo(const Foo&);
10 ((Foo))(INT); // expected-error{{cannot be redeclared}}
12 Foo(Foo foo, int i = 17, int j = 42); // expected-error{{copy constructor must pass its first argument by reference}}
14 static Foo(shor
22 Foo(const Foo&) argument
[all...]
H A Dno-warn-composite-pointer-type.cpp5 void Foo(int **thing, const int **thingMax) function
/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/Analysis/
H A Dmember-expr.cpp6 struct Foo { struct in namespace:EnumsViaMemberExpr
12 void testEnumVal(Foo Baz) {
13 clang_analyzer_eval(Baz.Bar == Foo::Bar); // expected-warning{{TRUE}}
16 void testEnumRef(Foo &Baz) {
17 clang_analyzer_eval(Baz.Bar == Foo::Bar); // expected-warning{{TRUE}}
20 void testEnumPtr(Foo *Baz) {
21 clang_analyzer_eval(Baz->Bar == Foo::Bar); // expected-warning{{TRUE}}
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
H A Dp3.cpp7 class Foo { class in namespace:test0::A
10 void foo(const Foo &foo);
17 foo(A::Foo()); // expected-error {{not a function}}
/external/clang/test/PCH/
H A Dchain-predecl.h2 @class Foo;
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/instanceof/
H A Dregress-7635.js54 function Foo() {} function
56 Foo.prototype = theproto
57 theproto instanceof Foo
60 AddTestCase( "function Foo() {}; theproto = {}; Foo.prototype = theproto; theproto instanceof Foo",
62 theproto instanceof Foo );
55 Foo.prototype = theproto class

Completed in 501 milliseconds

123456789