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

12345678910

/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/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)
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/Misc/Inputs/
H A Dworking-directory.h1 typedef int Foo; typedef
/external/clang/test/VFS/Inputs/UsesFoo.framework/Headers/
H A DUsesFoo.h1 @import Foo; variable
/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-LABEL: 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-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 Dpr15753.cpp3 template <typename T> static int Foo(T t);
5 int Foo(T t) { function
8 template<> int Foo<int>(int i) { function
/external/clang/test/FixIt/
H A Dno-diagnostics-fixit-info.c4 struct Foo { struct
/external/v8/test/webkit/
H A Ddfg-inline-constructor-that-uses-arguments.js28 function Foo() { class
33 return new Foo(42);
H A Ddfg-put-by-id-prototype-check.js35 function Foo() { function
42 Foo.prototype.__defineSetter__("f", function(value) { stuff = value; });
44 var o = new Foo();
/external/clang/test/Analysis/
H A Ddtor-cxx11.cpp7 struct Foo { struct in namespace:Cxx11BraceInit
8 ~Foo() {}
12 for (Foo foo : {Foo(), Foo()}) {}
H A Danalyzer-config.cpp7 class Foo { class
/external/clang/test/CodeCompletion/
H A Dfunction-templates.cpp9 class Foo { class
16 Foo().getAs<int>();
/external/clang/test/Modules/Inputs/
H A Dcategory_right_sub.h1 @interface Foo(RightSub) <P2>
5 @interface Foo() { function
16 @interface Foo(LeftP4) <P4>
/external/clang/test/PCH/
H A Dsingle-token-macro.c23 void STDCALL Foo(void);
27 void STDCALL Foo(void) function
/external/clang/test/SemaCXX/
H A Dno-warn-composite-pointer-type.cpp5 void Foo(int **thing, const int **thingMax) function
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/v8/test/mjsunit/regress/
H A Dregress-201590.js32 function Foo(initialX, initialY, initialScale, initialMapHeight) { class
38 Foo.prototype.bar = function (x, y, xOffset, yOffset) {
55 var f = new Foo(10, 20, 2.5, 400);
65 %OptimizeFunctionOnNextCall(Foo.prototype.bar);

Completed in 562 milliseconds

12345678910