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

12

/ndk/sources/android/crazy_linker/tests/
H A Dfoo.cpp8 extern "C" void Foo() { function
11 fprintf(stderr, "Hello World from Foo!\n");
H A Dfoo_with_relro.cpp19 extern "C" void Foo() { function
H A Dfoo_with_static_constructor.cpp48 extern "C" int Foo() { return s_a.Get(); } function
/ndk/tests/device/test-stlport_shared-exception/jni/
H A Deh31.cpp6 class Foo { class
8 Foo() { ++count; } function in class:Foo
9 Foo(const Foo&) { ++count; } argument
10 ~Foo() { --count; }
16 throw Foo();
18 catch (Foo& object) {
H A Dp7912.cpp7 class Foo { class
9 Foo() { ++count; }; function in class:Foo
10 Foo(const Foo&) { ++count; }; argument
11 ~Foo() { --count; };
18 throw Foo();
20 catch (Foo object) {
H A Ddelete3.cpp12 struct Foo { struct
15 Foo() { function in struct:Foo
22 ~Foo() {
27 bool Foo::first = true;
29 struct Bar : virtual Foo {
H A Dctor1.cpp10 struct Foo struct
12 ~Foo()
25 Foo f;
H A Deh1.cpp7 class Foo class
10 Foo(int n) : n_(n) { } function in class:Foo
21 int Foo::badTest()
38 int Foo::goodTest()
57 Foo foo(5);
H A Dreg-stack.cpp16 struct Foo : public Base struct in inherits:Base
18 Foo ();
32 Foo::Foo () function in class:Foo
42 new Foo;
/ndk/tests/device/test-stlport_static-exception/jni/
H A Deh31.cpp6 class Foo { class
8 Foo() { ++count; } function in class:Foo
9 Foo(const Foo&) { ++count; } argument
10 ~Foo() { --count; }
16 throw Foo();
18 catch (Foo& object) {
H A Dp7912.cpp7 class Foo { class
9 Foo() { ++count; }; function in class:Foo
10 Foo(const Foo&) { ++count; }; argument
11 ~Foo() { --count; };
18 throw Foo();
20 catch (Foo object) {
H A Ddelete3.cpp12 struct Foo { struct
15 Foo() { function in struct:Foo
22 ~Foo() {
27 bool Foo::first = true;
29 struct Bar : virtual Foo {
H A Dctor1.cpp10 struct Foo struct
12 ~Foo()
25 Foo f;
H A Deh1.cpp7 class Foo class
10 Foo(int n) : n_(n) { } function in class:Foo
21 int Foo::badTest()
38 int Foo::goodTest()
57 Foo foo(5);
H A Dreg-stack.cpp16 struct Foo : public Base struct in inherits:Base
18 Foo ();
32 Foo::Foo () function in class:Foo
42 new Foo;
/ndk/tests/standalone/init-fini-arrays/
H A Dfoo.cpp19 class Foo { class
21 Foo() : mValue(1) {} function in class:Foo
22 ~Foo() { mValue = 0; }
27 static Foo foo;
/ndk/tests/build/gnustl-force-all/jni/
H A Dforced_all.cpp9 class Foo { int x; }; class
12 printf("%p\n", &typeid(Foo)); // will fail without -frtti
/ndk/tests/build/gnustl-force-exceptions/jni/
H A Dforced_exceptions.cpp8 class Foo { int x; }; class
11 printf("%p\n", typeid(Foo)); // will fail without -frtti
/ndk/tests/build/gnustl-force-none/jni/
H A Dforce_none.cpp9 class Foo { int x; }; class
12 printf("%p\n", typeid(Foo)); // will fail with RTTI
/ndk/tests/build/gnustl-force-rtti/jni/
H A Dforced_rtti.cpp9 class Foo { int x; }; class
12 printf("%p\n", &typeid(Foo)); // will fail without -frtti
/ndk/tests/build/multiple-static-const/jni/
H A Dmain.h4 class Foo { class
/ndk/tests/device/test-basic-rtti/jni/
H A Dtest_basic_rtti.cpp18 class Foo class
21 virtual ~Foo() { }
24 std::printf("in Foo!\n");
28 class Bar: public Foo
39 Foo* foo = new Bar();
/ndk/sources/cxx-stl/gabi++/tests/
H A Dtest_gabixx_rtti.cpp21 class Foo class
24 virtual ~Foo() { }
27 std::printf("in Foo!\n");
31 class Bar: public Foo
56 Foo* foo = new Bar();
H A Dtest_guard.cpp11 class Foo { class
13 Foo() { mValue++; } function in class:Foo
19 int Foo::mValue;
21 static Foo* getInstance(void)
26 static Foo _instance;
30 static Foo* sInstances[MAX_THREADS];
52 Foo* foo = getInstance();
55 fprintf(stderr, "ERROR: Foo instance is NULL!\n");
60 fprintf(stderr, "ERROR: Foo constructor called %d times (1 expected)\n",
/ndk/tests/device/test-stlport-rtti/jni/
H A Dtest_stlport_rtti.cpp21 class Foo class
24 virtual ~Foo() { }
27 std::printf("in Foo!\n");
31 class Bar: public Foo
56 Foo* foo = new Bar();

Completed in 530 milliseconds

12