Searched defs:Foo (Results 1 - 25 of 151) sorted by relevance

1234567

/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
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/Index/
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) (parent: ClassDecl 'Foo')
18 // CHECK-CC1: ClassDecl:{TypedText Foo} (35) (parent: ClassDecl 'Foo')
19 // CHECK-CC1: CXXMethod:{ResultType Foo &}{TypedText operator=}{LeftParen (}{Placeholder const Foo &}{RightParen )} (35) (parent: ClassDecl 'Foo')
[all...]
/external/clang/test/Misc/Inputs/
H A Dworking-directory.h1 typedef int Foo; typedef
/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/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 Dconstructor-attr.cpp7 struct Foo { struct
H A Dvirt-canonical-decl.cpp12 class Foo : public Base { class in inherits:Base
14 virtual ~Foo();
17 Foo::~Foo()
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 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 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/CodeCompletion/
H A Dfunction-templates.cpp9 class Foo { class
16 Foo().getAs<int>();
/external/clang/test/PCH/
H A Dsingle-token-macro.c16 void STDCALL Foo(void);
20 void STDCALL Foo(void) function
H A Drdar10830559.cpp21 class Foo class
30 friend class Foo;
/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/clang/test/FixIt/
H A Dfixit-unicode.c4 struct Foo { struct
10 struct Foo foo;
/external/clang/test/SemaTemplate/
H A Dinstantiate-overloaded-arrow.cpp13 void Foo() { function
18 Foo<int>();
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/instanceof/
H A Dinstanceof-003.js6 js> function Foo() {}
9 js> Foo.prototype = theproto
11 js> theproto instanceof Foo
40 function Foo() {}; function
42 Foo.prototype = theproto;
45 "function Foo() = {}; theproto = {}; Foo.prototype = theproto; " +
46 "theproto instanceof Foo",
48 theproto instanceof Foo );
41 Foo.prototype = theproto; class
/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}}

Completed in 1399 milliseconds

1234567