Searched refs:Foo (Results 126 - 150 of 354) sorted by relevance

1234567891011>>

/external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
H A DShadowFoo.java6 @Implements(Foo.class)
8 @RealObject Foo realFooField;
9 Foo realFooInConstructor;
11 Foo realFooCtor;
15 public ShadowFoo(Foo foo) {
/external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
H A Dtest12-expected.cc11 struct Foo { struct
15 typedef std::map<std::string, scoped_refptr<const Foo> > MyMap;
18 : public std::iterator<std::input_iterator_tag, scoped_refptr<const Foo> > {
27 const scoped_refptr<const Foo> operator*() { return it_->second; }
37 map["foo"] = new Foo;
38 map["bar"] = new Foo;
42 const Foo* item = NULL;
H A Dtest12-original.cc11 struct Foo { struct
15 typedef std::map<std::string, scoped_refptr<const Foo> > MyMap;
18 : public std::iterator<std::input_iterator_tag, scoped_refptr<const Foo> > {
27 const scoped_refptr<const Foo> operator*() { return it_->second; }
37 map["foo"] = new Foo;
38 map["bar"] = new Foo;
42 const Foo* item = NULL;
H A Dgtest-expected.cc8 struct Foo : public base::RefCounted<Foo> { struct in inherits:base::RefCounted
13 scoped_refptr<Foo> a;
14 Foo* b;
H A Dgtest-original.cc8 struct Foo : public base::RefCounted<Foo> { struct in inherits:base::RefCounted
13 scoped_refptr<Foo> a;
14 Foo* b;
/external/clang/test/SemaCXX/
H A Dcopy-initialization.cpp29 struct Foo { struct in namespace:PR6757
30 Foo();
31 Foo(Foo&); // expected-note{{candidate constructor not viable}}
35 operator const Foo&() const;
38 void f(Foo);
40 void g(Foo foo) {
41 f(Bar()); // expected-error{{no viable constructor copying parameter of type 'const PR6757::Foo'}}
/external/chromium_org/base/
H A Dobserver_list_unittest.cc20 class Foo { class in namespace:base::__anon2397
23 virtual ~Foo() {}
26 class Adder : public Foo {
39 class Disrupter : public Foo {
41 Disrupter(ObserverList<Foo>* list, Foo* doomed)
51 ObserverList<Foo>* list_;
52 Foo* doomed_;
55 class ThreadSafeDisrupter : public Foo {
57 ThreadSafeDisrupter(ObserverListThreadSafe<Foo>* lis
[all...]
H A Dtask_runner_util_unittest.cc31 struct Foo { struct in namespace:base::__anon2504
32 ~Foo() {
37 scoped_ptr<Foo> CreateFoo() {
38 return scoped_ptr<Foo>(new Foo);
41 void ExpectFoo(scoped_ptr<Foo> foo) {
43 scoped_ptr<Foo> local_foo(foo.Pass());
49 void operator()(Foo* foo) const {
55 scoped_ptr<Foo, FooDeleter> CreateScopedFoo() {
56 return scoped_ptr<Foo, FooDelete
[all...]
/external/clang/test/CodeGenCXX/
H A Dreference-init.cpp20 struct Foo { int foo; }; struct
21 Foo& ignoreSetMutex = *(new Foo);
H A D2007-10-01-StructResize.cpp10 int Foo(Bork *hdr) { function
H A D2005-02-19-BitfieldStructCrash.cpp13 void Foo(QChar );
14 void bar() { Foo(X.c); }
H A Dlinetable-eh.cpp31 class Foo class
36 # 253 "Foo.cpp" 3
38 Foo::bar ()
42 # 267 "Foo.cpp" 3
/external/chromium_org/third_party/android_crazy_linker/src/tests/
H A Dfoo.cpp8 extern "C" void Foo() { function
11 fprintf(stderr, "Hello World from Foo!\n");
/external/clang/test/Misc/
H A Ddiag-aka-types.cpp16 // There are two classes named Foo::foo here. Make sure the message gives
18 namespace Foo { namespace
23 namespace Foo { namespace in namespace:bar
26 void f(Foo::foo* x); // expected-note{{passing argument to parameter 'x' here}}
29 void test(Foo::foo* x) {
30 bar::f(x); // expected-error{{cannot initialize a parameter of type 'Foo::foo *' (aka 'bar::Foo::foo *') with an lvalue of type 'Foo::foo *'}}
/external/clang/test/Modules/Inputs/
H A Dcategory_bottom.h3 @interface Foo(Bottom)
H A Dnamespaces-right.h58 class Foo;
60 void consumeFoo(Foo*);
65 class Foo;
67 void consumeFoo(Foo*);
/external/lldb/test/lang/objc/real-definition/
H A DFoo.h5 @interface Foo : NSObject {
/external/clang/test/CXX/class.derived/class.member.lookup/
H A Dp8.cpp8 void Foo();
21 d.D1::Foo();
26 D1::Foo();
28 this->D1::Foo();
35 void Foo(); // expected-note{{found by ambiguous name lookup}}
49 Derived1T<T>::Foo();
51 this->Derived1T<T>::Foo();
53 this->Foo(); // expected-error{{non-static member 'Foo' found in multiple base-class subobjects of type 'BaseT<int>'}}
58 d.template Derived1T<T>::Foo();
[all...]
/external/lldb/test/unittest2/test/
H A Dtest_skipping.py9 class Foo(unittest2.TestCase): class in function:Test_TestSkipping.test_skipping
14 test = Foo("test_skip_me")
20 class Foo(unittest2.TestCase): class in function:Test_TestSkipping.test_skipping
26 test = Foo("test_nothing")
36 class Foo(unittest2.TestCase): class in function:Test_TestSkipping.test_skipping_decorators
45 test_do_skip = Foo("test_skip")
46 test_dont_skip = Foo("test_dont_skip")
60 class Foo(unittest2.TestCase): class in function:Test_TestSkipping.test_skip_class
65 Foo = unittest2.skip("testing")(Foo)
75 class Foo(unittest2.TestCase): class in function:Test_TestSkipping.test_expected_failure
89 class Foo(unittest2.TestCase): class in function:Test_TestSkipping.test_unexpected_success
104 class Foo(unittest2.TestCase): class in function:Test_TestSkipping.test_skip_doesnt_run_setup
129 class Foo(unittest2.TestCase): class in function:Test_TestSkipping.test_decorated_skip
[all...]
/external/chromium_org/tools/telemetry/telemetry/unittest/
H A Ddecorators_unittest.py12 class Foo(object): class in inherits:object
21 return Foo()
26 return Foo()
40 foo = Foo()
47 foo = Foo()
48 sibling_foo = Foo()
53 foo = Foo()
56 foo = Foo()
/external/chromium_org/v8/test/webkit/fast/js/
H A Dobject-prototype-constructor.js28 var Foo = { Bar: function () {}};
29 var f = new Foo.Bar();
30 shouldBe("f.constructor", "Foo.Bar");
/external/clang/test/CXX/class.derived/
H A Dp1.cpp31 struct Foo { Base foo(); }; struct in namespace:PR11216
32 Derived3<Foo> d;
/external/clang/test/CodeCompletion/
H A Dfunction-templates.cpp9 class Foo { class
16 Foo().getAs<int>();
/external/clang/test/CodeGen/
H A D2009-06-18-StaticInitTailPadPack.c4 typedef struct A *Foo; typedef in typeref:struct:A
7 Foo f1;
/external/clang/test/FixIt/
H A Dfixit-unicode.c8 struct Foo { struct
14 struct Foo foo;

Completed in 513 milliseconds

1234567891011>>