/ndk/tests/device/test-stlport_static-exception/jni/ |
D | p7912.cpp | 7 class Foo { class 9 Foo() { ++count; }; in Foo() function in Foo 10 Foo(const Foo&) { ++count; }; in Foo() argument 11 ~Foo() { --count; }; in ~Foo() 18 throw Foo(); in main() 20 catch (Foo object) { in main()
|
D | eh31.cpp | 6 class Foo { class 8 Foo() { ++count; } in Foo() function in Foo 9 Foo(const Foo&) { ++count; } in Foo() argument 10 ~Foo() { --count; } in ~Foo() 16 throw Foo(); in main() 18 catch (Foo& object) { in main()
|
D | delete3.cpp | 12 struct Foo { struct 15 Foo() { in Foo() argument 22 ~Foo() { in ~Foo() argument 27 bool Foo::first = true; 29 struct Bar : virtual Foo {
|
D | reg-stack.cpp | 16 struct Foo : public Base struct 18 Foo (); 32 Foo::Foo () in Foo() function in Foo 42 new Foo; in main()
|
D | eh1.cpp | 7 class Foo class 10 Foo(int n) : n_(n) { } in Foo() function in Foo 21 int Foo::badTest() in badTest() 38 int Foo::goodTest() in goodTest() 57 Foo foo(5); in main()
|
D | ctor1.cpp | 10 struct Foo struct 12 ~Foo() in ~Foo() argument 25 Foo f;
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
D | p7912.cpp | 7 class Foo { class 9 Foo() { ++count; }; in Foo() function in Foo 10 Foo(const Foo&) { ++count; }; in Foo() function in Foo 11 ~Foo() { --count; }; in ~Foo() 18 throw Foo(); in main() 20 catch (Foo object) { in main()
|
D | eh31.cpp | 6 class Foo { class 8 Foo() { ++count; } in Foo() function in Foo 9 Foo(const Foo&) { ++count; } in Foo() argument 10 ~Foo() { --count; } in ~Foo() 16 throw Foo(); in main() 18 catch (Foo& object) { in main()
|
D | delete3.cpp | 12 struct Foo { struct 15 Foo() { in Foo() function 22 ~Foo() { in ~Foo() argument 27 bool Foo::first = true; 29 struct Bar : virtual Foo {
|
D | reg-stack.cpp | 16 struct Foo : public Base struct 18 Foo (); 32 Foo::Foo () in Foo() function in Foo 42 new Foo; in main()
|
D | eh1.cpp | 7 class Foo class 10 Foo(int n) : n_(n) { } in Foo() function in Foo 21 int Foo::badTest() in badTest() 38 int Foo::goodTest() in goodTest() 57 Foo foo(5); in main()
|
D | ctor1.cpp | 10 struct Foo struct 12 ~Foo() in ~Foo() argument 25 Foo f;
|
/ndk/sources/cxx-stl/gabi++/tests/ |
D | test_guard.cpp | 11 class Foo { class 13 Foo() { mValue++; } in Foo() function in Foo 19 int Foo::mValue; 21 static Foo* getInstance(void) in getInstance() 26 static Foo _instance; in getInstance() 30 static Foo* sInstances[MAX_THREADS]; 52 Foo* foo = getInstance(); in main()
|
D | test_gabixx_rtti.cpp | 21 class Foo class 24 virtual ~Foo() { } in ~Foo() 31 class Bar: public Foo 56 Foo* foo = new Bar(); in main()
|
/ndk/tests/standalone/init-fini-arrays/ |
D | foo.cpp | 19 class Foo { class 21 Foo() : mValue(1) {} in Foo() function in Foo 22 ~Foo() { mValue = 0; } in ~Foo() 27 static Foo foo;
|
/ndk/tests/device/test-basic-rtti/jni/ |
D | test_basic_rtti.cpp | 18 class Foo class 21 virtual ~Foo() { } in ~Foo() 28 class Bar: public Foo 39 Foo* foo = new Bar(); in main()
|
/ndk/tests/device/test-stlport-rtti/jni/ |
D | test_stlport_rtti.cpp | 21 class Foo class 24 virtual ~Foo() { } in ~Foo() 31 class Bar: public Foo 56 Foo* foo = new Bar(); in main()
|
/ndk/tests/build/gnustl-force-none/jni/ |
D | force_none.cpp | 9 class Foo { int x; }; class 12 printf("%p\n", typeid(Foo)); // will fail with RTTI in main()
|
/ndk/tests/build/multiple-static-const/jni/ |
D | main.cpp | 3 const int Foo::CONST_1 = 42; 4 const double Foo::CONST_2 = 3.14159265;
|
/ndk/tests/build/gnustl-force-exceptions/jni/ |
D | forced_exceptions.cpp | 8 class Foo { int x; }; class 11 printf("%p\n", typeid(Foo)); // will fail without -frtti in main()
|
/ndk/sources/android/crazy_linker/tests/ |
D | bar.cpp | 8 extern "C" void Foo(); 16 Foo(); in Bar()
|
/ndk/tests/build/gnustl-force-all/jni/ |
D | forced_all.cpp | 9 class Foo { int x; }; class 12 printf("%p\n", &typeid(Foo)); // will fail without -frtti in main()
|
/ndk/tests/build/gnustl-force-rtti/jni/ |
D | forced_rtti.cpp | 9 class Foo { int x; }; class 12 printf("%p\n", &typeid(Foo)); // will fail without -frtti in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/ |
D | alloc_F.pass.cpp | 52 class Foo { class 86 Foo f; in main() 87 std::function<void(int)> fun = std::bind(&Foo::bar, &f, std::placeholders::_1); in main()
|
/ndk/sources/third_party/googletest/googletest/test/ |
D | gtest_list_tests_unittest_.cc | 44 TEST(Foo, Bar1) { in TEST() argument 47 TEST(Foo, Bar2) { in TEST() argument 50 TEST(Foo, DISABLED_Bar3) { in TEST() argument
|