Searched refs:Foo (Results 1 - 25 of 354) sorted by last modified time

1234567891011>>

/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp5133 class Foo { class in namespace:test108
5135 Foo() { function in class:test108::Foo
5144 const Foo *GetFoo() {
5145 static const Foo *foo = new Foo();
5154 const Foo *foo = GetFoo();
5480 int Foo() { function in namespace:test114
5485 static int x = Foo();
5600 int Foo() { function in namespace:test117
5606 static int foo = Foo();
5711 struct Foo { struct in namespace:test121
6919 struct Foo { struct in namespace:test308
7583 void Foo() { function in namespace:test507
7622 void Foo() { function in namespace:test508
[all...]
/external/valgrind/main/memcheck/tests/
H A Ddeep_templates.cpp27 typedef Stack<int,char> Foo; typedef
28 typedef Stack<Foo,Foo> Foo2;
/external/sfntly/cpp/src/test/
H A Dsmart_pointer_test.cc24 class Foo : public RefCounted<Foo> { class in inherits:RefCounted
33 Ptr<Foo> p1;
34 p1 = new Foo();
36 EXPECT_EQ(size_t(1), RefCounted<Foo>::object_counter_);
38 Ptr<Foo> p2;
42 EXPECT_EQ(size_t(1), RefCounted<Foo>::object_counter_);
44 Ptr<Foo> p3;
49 EXPECT_EQ(size_t(1), RefCounted<Foo>::object_counter_);
51 p2 = new Foo();
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
H A DFoo.java6 public class Foo { class
7 public Foo(String s) { method in class:Foo
H A DShadowFoo.java6 @Implements(Foo.class)
8 @RealObject Foo realFooField;
9 Foo realFooInConstructor;
11 Foo realFooCtor;
15 public ShadowFoo(Foo foo) {
H A DShadowWranglerTest.java37 Foo foo = new Foo(name);
45 Foo foo = new Foo(name);
54 Foo foo = new Foo(name);
66 Foo foo = new Foo(name);
74 Foo foo1 = new Foo(nam
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DRemoteCallbackListTest.java19 RemoteCallbackList<Foo> fooRemoteCallbackList = new RemoteCallbackList<Foo>();
20 Foo callback = new Foo();
28 public static class Foo implements IInterface { class in class:RemoteCallbackListTest
/external/qemu/android/base/memory/
H A DScopedPtr_unittest.cpp19 class Foo { class in namespace:android::base
21 Foo(int* countPtr) : mCountPtr(countPtr) {} function in class:android::base::Foo
27 ~Foo() {
38 Foo* NewFoo() {
39 return new Foo(&mDestroyCount);
47 ScopedPtr<Foo> foo;
52 ScopedPtr<Foo> foo(NewFoo());
58 ScopedPtr<Foo> foo(NewFoo());
65 Foo* savedFoo = NULL;
67 ScopedPtr<Foo> fo
[all...]
/external/qemu-pc-bios/bochs/
H A Dconfigure10891 class Foo
10894 Foo (void) { a = 0; }
[all...]
/external/protobuf/python/google/protobuf/internal/
H A Dservice_reflection_test.py70 srvc.Foo(rpc_controller, unittest_pb2.FooRequest(), MyCallback)
71 self.assertEqual('Method Foo not implemented.',
85 def Foo(self, rpc_controller, request, done): member in class:FooUnitTest.testService.MyServiceImpl
92 srvc.Foo(rpc_controller, unittest_pb2.FooRequest(), MyCallback)
126 stub.Foo(rpc_controller, request, MyCallback)
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_unittest.cc893 void Foo(RpcController* controller, function in class:google::protobuf::compiler::cpp::cpp_unittest::GeneratedServiceTest::MockTestService
899 method_ = "Foo";
1003 foo_(descriptor_->FindMethodByName("Foo")),
1058 // Call Foo() via CallMethod().
1064 EXPECT_EQ("Foo" , mock_service_.method_ );
1080 // Verify death if we call Foo() with Bar's message types.
1113 // Call Foo() via the stub.
1114 stub_.Foo(&mock_controller_, &foo_request_, &foo_response_, done_.get());
1152 EXPECT_EQ("Method Foo() not implemented.", reason);
1160 // Call Foo
[all...]
/external/protobuf/
H A Dconfigure12971 class Foo
12974 Foo (void) { a = 0; }
/external/protobuf/gtest/
H A Dconfigure13152 class Foo
13155 Foo (void) { a = 0; }
/external/protobuf/gtest/test/
H A Dgtest_break_on_failure_unittest_.cc51 TEST(Foo, Bar) {
H A Dgtest_list_tests_unittest_.cc46 TEST(Foo, Bar1) {
49 TEST(Foo, Bar2) {
52 TEST(Foo, DISABLED_Bar3) {
H A Dgtest_unittest.cc1322 EXPECT_FALSE(String("foobar").EndsWithCaseInsensitive("Foo"));
4534 EXPECT_STREQ("Foo", StreamableToString("Foo").c_str());
4882 class Foo { class in namespace:__anon28924
4884 Foo() {} function in class:__anon28924::Foo
4898 ASSERT_EQ(1, Foo().Bar());
4904 Foo foo;
6043 L"--gtest_filter=Foo*",
6058 expected_flags.filter = "Foo*";
/external/pcre/dist/
H A Dconfigure15132 class Foo
15135 Foo (void) { a = 0; }
/external/openfst/
H A Dconfigure13214 class Foo
13217 Foo (void) { a = 0; }
/external/llvm/unittests/CodeGen/
H A DDIEHashTest.cpp47 DIE Foo(dwarf::DW_TAG_structure_type);
50 Foo.addValue(dwarf::DW_AT_name, dwarf::DW_FORM_strp, &FooStr);
51 Foo.addValue(dwarf::DW_AT_byte_size, dwarf::DW_FORM_data1, &One);
53 uint64_t MD5Res = DIEHash().computeTypeSignature(Foo);
71 auto Foo = make_unique<DIE>(dwarf::DW_TAG_structure_type); local
73 Foo->addValue(dwarf::DW_AT_name, dwarf::DW_FORM_strp, &FooStr);
74 Foo->addValue(dwarf::DW_AT_byte_size, dwarf::DW_FORM_data1, &One);
76 DIE &N = *Foo;
77 Space->addChild(std::move(Foo));
158 DIE Foo(dwar
493 auto Foo = make_unique<DIE>(dwarf::DW_TAG_structure_type); local
[all...]
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp1228 // Foo.framework/Versions/A/Foo
1229 // Foo.framework/Foo
1230 // Where A and Foo can be any string. And may contain a trailing suffix
1240 // The library may have a suffix trailing the name Foo of the form:
1246 // Foo.qtx
1254 StringRef Foo, F, DotFramework, V, Dylib, Lib, Dot, Qtx; local
1260 // Pull off the last component and make Foo point to it
1264 Foo
[all...]
/external/littlemock/tests/com/google/testing/littlemock/
H A DLittleMockTest.java78 @Mock private Foo mFoo;
106 public interface Foo { interface in class:LittleMockTest
117 public Foo anInterface();
928 @Mock protected Foo outerMock;
931 @Mock protected Foo innerMock;
1052 assertTrue(mFoo.toString().contains(Foo.class.getName()));
1656 private Foo createNotARealMock() {
1663 Foo notARealMock = (Foo) Proxy.newProxyInstance(
1664 getClass().getClassLoader(), new Class<?>[]{ Foo
[all...]
/external/lldb/test/lang/cpp/breakpoints/
H A Dnested.cpp3 namespace Foo namespace
64 Foo::Bar::Baz mine(200);
65 Foo::Bar::Baz2 mine2(300);
71 printf ("And got %d from Bar.\n", Foo::Bar::Function());
/external/lldb/test/lang/cpp/namespace/
H A Dmain.cpp46 namespace Foo = A::B; // namespace alias
48 using Foo::myfunc; // using declaration
50 using namespace Foo; // using directive
60 int Foo::myfunc(int a)
77 return Foo::myfunc(12);
/external/lldb/test/lang/cpp/wchar_t/
H A Dmain.cpp11 class Foo class
14 Foo () : object() {} function in class:Foo
15 Foo (T x) : object(x) {} function in class:Foo
24 Foo<int> foo_x('a');
25 Foo<wchar_t> foo_y(L'a');
/external/lldb/test/lang/objc/real-definition/
H A DFoo.h5 @interface Foo : NSObject {

Completed in 7211 milliseconds

1234567891011>>