Home
last modified time | relevance | path

Searched refs:Foo (Results 1 – 25 of 36) sorted by relevance

12

/ndk/tests/device/test-stlport_shared-exception/jni/
Deh31.cpp6 class Foo { class
8 Foo() { ++count; } in Foo() function in Foo
9 Foo(const Foo&) { ++count; } in Foo() function in Foo
10 ~Foo() { --count; } in ~Foo()
16 throw Foo(); in main()
18 catch (Foo& object) { in main()
Dp7912.cpp7 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()
Ddelete3.cpp12 struct Foo { struct
15 Foo() { in Foo() argument
22 ~Foo() { in ~Foo() argument
27 bool Foo::first = true;
29 struct Bar : virtual Foo {
Dreg-stack.cpp16 struct Foo : public Base struct
18 Foo ();
32 Foo::Foo () in Foo() function in Foo
42 new Foo; in main()
Deh1.cpp7 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()
Dctor1.cpp10 struct Foo struct
12 ~Foo() in ~Foo() argument
25 Foo f;
/ndk/tests/device/test-stlport_static-exception/jni/
Deh31.cpp6 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()
Dp7912.cpp7 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()
Ddelete3.cpp12 struct Foo { struct
15 Foo() { in Foo() function
22 ~Foo() { in ~Foo() argument
27 bool Foo::first = true;
29 struct Bar : virtual Foo {
Dreg-stack.cpp16 struct Foo : public Base struct
18 Foo ();
32 Foo::Foo () in Foo() function in Foo
42 new Foo; in main()
Deh1.cpp7 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()
Dctor1.cpp10 struct Foo struct
12 ~Foo() in ~Foo() argument
25 Foo f;
/ndk/sources/cxx-stl/gabi++/tests/
Dtest_guard.cpp11 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()
Dtest_gabixx_rtti.cpp21 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/
Dfoo.cpp19 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/
Dtest_basic_rtti.cpp18 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/
Dtest_stlport_rtti.cpp21 class Foo class
24 virtual ~Foo() { } in ~Foo()
31 class Bar: public Foo
56 Foo* foo = new Bar(); in main()
/ndk/tests/build/multiple-static-const/jni/
Dmain.cpp3 const int Foo::CONST_1 = 42;
4 const double Foo::CONST_2 = 3.14159265;
Dmain.h4 class Foo {
/ndk/tests/build/gnustl-force-all/jni/
Dforced_all.cpp9 class Foo { int x; }; class
12 printf("%p\n", &typeid(Foo)); // will fail without -frtti in main()
/ndk/tests/build/gnustl-force-rtti/jni/
Dforced_rtti.cpp9 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/
Dalloc_F.pass.cpp52 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/
Dgtest_list_tests_unittest_.cc44 TEST(Foo, Bar1) { in TEST() argument
47 TEST(Foo, Bar2) { in TEST() argument
50 TEST(Foo, DISABLED_Bar3) { in TEST() argument
Dgtest_break_on_failure_unittest_.cc52 TEST(Foo, Bar) { in TEST() argument
Dgtest-printers_test.cc560 struct Foo { struct
562 virtual ~Foo() {} in ~Foo() argument
570 EXPECT_TRUE(HasPrefix(Print(&Foo::value), in TEST()
571 Print(sizeof(&Foo::value)) + "-byte object ")); in TEST()
572 int (Foo::*p) = NULL; // NOLINT in TEST()
582 EXPECT_TRUE(HasPrefix(Print(&Foo::MyMethod), in TEST()
583 Print(sizeof(&Foo::MyMethod)) + "-byte object ")); in TEST()
585 HasPrefix(Print(&Foo::MyVirtualMethod), in TEST()
586 Print(sizeof((&Foo::MyVirtualMethod))) + "-byte object ")); in TEST()
587 int (Foo::*p)(char) = NULL; // NOLINT in TEST()
[all …]

12