HomeSort by relevance Sort by last modified time
    Searched defs:Foo (Results 1 - 25 of 264) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/third_party/android_crazy_linker/src/tests/
foo.cpp 8 extern "C" void Foo() {
10 __android_log_write(ANDROID_LOG_INFO, "foo", "Hello World!");
11 fprintf(stderr, "Hello World from Foo!\n");
  /external/chromium_org/v8/test/mjsunit/bugs/
bug-222.js 28 function Foo(a, b) { }
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/CodeGen/
2002-03-14-QuotesInStrConst.c 8 const char *Foo() {
pascal-string.c 3 unsigned char * Foo( void )
  /external/clang/test/CodeGenCXX/
pr15753.cpp 3 template <typename T> static int Foo(T t);
5 int Foo(T t) {
8 template<> int Foo<int>(int i) {
virt-dtor-gen.cpp 5 class Foo {
6 virtual ~Foo();
8 Foo::~Foo() {}
10 // CHECK-LABEL: define {{.*}}void @_ZN3FooD0Ev(%class.Foo* %this) unnamed_addr
constructor-attr.cpp 7 struct Foo {
9 static void foo() __attribute__((constructor)) { function in struct:Foo
member-init-assignment.cpp 4 struct Foo {
7 Foo(unsigned arg);
10 Foo::Foo(unsigned arg) : file_id(arg = 42)
13 // CHECK: define {{.*}} @_ZN3FooC2Ej(%struct.Foo* %this, i32 %arg) unnamed_addr
17 // CHECK: ret {{void|%struct.Foo}}
virt-canonical-decl.cpp 12 class Foo : public Base {
14 virtual ~Foo();
17 Foo::~Foo()
  /external/clang/test/Index/
annotate-tokens-with-default-args.h 1 struct Foo {
2 void m(Foo *f = 0);
  /external/clang/test/Misc/Inputs/
working-directory.h 1 typedef int Foo;
  /external/clang/test/SemaCXX/
no-warn-composite-pointer-type.cpp 5 void Foo(int **thing, const int **thingMax)
  /external/chromium_org/v8/test/webkit/
dfg-inline-constructor-that-uses-arguments.js 28 function Foo() {
33 return new Foo(42);
  /external/clang/test/FixIt/
no-diagnostics-fixit-info.c 4 struct Foo {
  /external/clang/test/Analysis/
dtor-cxx11.cpp 7 struct Foo {
8 ~Foo() {}
12 for (Foo foo : {Foo(), Foo()}) {}
  /development/ndk/tests/dlclose-destruction/jni/
libtest1.cpp 4 class Foo
7 Foo() { mAddress = NULL; }
9 ~Foo();
14 void Foo::setAddress(int *px)
20 Foo::~Foo()
26 static Foo foo; variable
30 foo.setAddress(px);
  /external/chromium_org/build/android/tests/symbolize/
a.cc 8 void Foo(int i);
13 void A::Foo(int i) {}
  /external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
local-returned-as-raw-expected.cc 7 struct Foo {
13 scoped_refptr<Foo> GetBuggyFoo();
15 scoped_refptr<Foo> GetBuggyFoo() {
16 scoped_refptr<Foo> unsafe(new Foo);
local-returned-as-raw-original.cc 7 struct Foo {
13 Foo* GetBuggyFoo();
15 Foo* GetBuggyFoo() {
16 scoped_refptr<Foo> unsafe(new Foo);
temp-bool-test-expected.cc 7 struct Foo {
14 scoped_refptr<Foo> GetBuggyFoo() {
15 return new Foo;
temp-bool-test-original.cc 7 struct Foo {
14 scoped_refptr<Foo> GetBuggyFoo() {
15 return new Foo;
temp-passed-as-raw-arg-expected.cc 7 struct Foo {
16 scoped_refptr<Foo> GetBuggyFoo() {
17 return new Foo;
20 void Bar(Foo* f);
temp-passed-as-raw-arg-original.cc 7 struct Foo {
16 scoped_refptr<Foo> GetBuggyFoo() {
17 return new Foo;
20 void Bar(Foo* f);
temp-returned-as-raw-expected.cc 7 struct Foo : public base::RefCounted<Foo> {
12 scoped_refptr<Foo> TestFunction();
15 scoped_refptr<Foo> CreateFoo();
20 scoped_refptr<Foo> Bar::TestFunction() {
temp-returned-as-raw-original.cc 7 struct Foo : public base::RefCounted<Foo> {
12 Foo* TestFunction();
15 scoped_refptr<Foo> CreateFoo();
20 Foo* Bar::TestFunction() {

Completed in 649 milliseconds

1 2 3 4 5 6 7 8 91011