HomeSort by relevance Sort by last modified time
    Searched defs:Foo (Results 1 - 23 of 23) sorted by null

  /external/v8/test/mjsunit/bugs/
bug-222.js 28 function Foo(a, b) { }
29 Foo();
30 var oldArgs = Foo.arguments;
31 Foo();
32 var newArgs = Foo.arguments
37 Foo.arguments = oldArgs;
38 assertEquals(Foo.arguments, newArgs);
41 assertFalse(delete Foo.arguments);
42 assertEquals(Foo.arguments, newArgs);
  /development/ndk/tests/dlclose-destruction/jni/
libtest1.cpp 4 class Foo
7 Foo() { mAddress = NULL; }
9 ~Foo();
14 void Foo::setAddress(int *px)
20 Foo::~Foo()
26 static Foo foo; variable
30 foo.setAddress(px);
  /system/extras/tests/bionic/libc/bionic/
lib_static_init.h 4 class Foo {
10 Foo();
11 virtual ~Foo();
14 Foo::~Foo()
18 extern Foo theFoo;
libdlclosetest1.cpp 31 class Foo {
33 Foo();
34 virtual ~Foo();
50 Foo::Foo()
65 Foo::~Foo()
75 static Foo f;
lib_static_init.cpp 4 Foo::Foo()
7 value = ++Foo::counter;
8 fprintf(stderr, "Foo::Foo for this=%p called (counter = %d)\n", this, counter);
11 int Foo::getValue()
16 int Foo::counter;
18 Foo theFoo;
lib_relocs.c 6 struct foo { int first, second; }; struct
7 struct foo Foo = {1, 2};
9 int* FooPtr[] = { &Foo.first, &Foo.second };
  /system/extras/tests/bionic/libc/common/
test_static_cpp_mutex.cpp 34 class Foo {
39 Foo();
40 virtual ~Foo();
43 Foo::Foo()
54 Foo::~Foo()
59 int Foo::getValue()
64 static Foo f;
  /build/tools/droiddoc/test/generics/src/com/android/generics/
Foo.java 19 public class Foo<V> {
20 public Foo(V v) {
23 public V foo(V arg) { method in class:Foo
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/instanceof/
instanceof-003.js 6 js> function Foo() {}
9 js> Foo.prototype = theproto
11 js> theproto instanceof Foo
40 function Foo() {};
42 Foo.prototype = theproto;
45 "function Foo() = {}; theproto = {}; Foo.prototype = theproto; " +
46 "theproto instanceof Foo",
48 theproto instanceof Foo );
regress-7635.js 54 function Foo() {}
56 Foo.prototype = theproto
57 theproto instanceof Foo
60 AddTestCase( "function Foo() {}; theproto = {}; Foo.prototype = theproto; theproto instanceof Foo",
62 theproto instanceof Foo );
  /libcore/support/src/test/java/tests/resources/
hyts_Foo.ser 
  /external/protobuf/python/google/protobuf/internal/
service_reflection_test.py 70 srvc.Foo(rpc_controller, unittest_pb2.FooRequest(), MyCallback)
71 self.assertEqual('Method Foo not implemented.',
85 def Foo(self, rpc_controller, request, done):
92 srvc.Foo(rpc_controller, unittest_pb2.FooRequest(), MyCallback)
126 stub.Foo(rpc_controller, request, MyCallback)
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
ContentHandlerTest.java 35 Class[] classes = { Foo.class, String.class, };
37 ((ContentHandlerImpl) handler).setContent(new Foo());
39 assertEquals("Foo", ((Foo) content).getFoo());
43 assertEquals("FooSub", ((Foo) content).getFoo());
46 ((ContentHandlerImpl) handler).setContent(new Foo());
66 class Foo {
68 return "Foo";
72 class FooSub extends Foo {
  /system/extras/tests/bionic/libstdc++/
test_cstddef.cpp 43 struct Foo
81 volatile size_t offset = offsetof(struct Foo, field2);
  /external/v8/test/mjsunit/
stack-traces.js 29 function Foo() { }
30 Foo.prototype.bar = function () { FAIL; };
31 (new Foo).bar();
160 Nasty.prototype.foo = function () { throw new RangeError(); };
165 n.foo();
177 n.foo();
189 testTrace("testMethodNameInference", testMethodNameInference, ["at Foo.bar"]);
  /dalvik/dx/tests/091-ssa-const-collector/
Blort.java 4 enum Foo {
10 int foo = 10; local
13 foo += i * 10;
17 foo += i + 10;
24 sb.append("foo");
25 sb.append("foo");
26 sb.append("foo");
27 sb.append("foo");
28 sb.append("foo");
29 sb.append("foo");
    [all...]
  /external/chromium/base/
observer_list_unittest.cc 19 class Foo {
22 virtual ~Foo() {}
25 class Adder : public Foo {
37 class Disrupter : public Foo {
39 Disrupter(ObserverList<Foo>* list, Foo* doomed)
46 ObserverList<Foo>* list_;
47 Foo* doomed_;
50 class ThreadSafeDisrupter : public Foo {
52 ThreadSafeDisrupter(ObserverListThreadSafe<Foo>* list, Foo* doomed
    [all...]
message_loop_unittest.cc 31 class Foo : public base::RefCounted<Foo> {
33 Foo() : test_count_(0) {
70 friend class base::RefCounted<Foo>;
72 ~Foo() {}
94 scoped_refptr<Foo> foo = new Foo(); local
97 foo.get(), &Foo::Test0))
125 scoped_refptr<Foo> foo = new Foo(); local
    [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_unittest.cc 310 message1.set_optional_nested_enum(unittest::TestAllTypes::FOO);
317 message1.add_repeated_nested_enum(unittest::TestAllTypes::FOO);
347 EXPECT_EQ(unittest::TestAllTypes::FOO, message2.optional_nested_enum());
358 EXPECT_EQ(unittest::TestAllTypes::FOO, message2.repeated_nested_enum(0));
617 message.set_stringfield("foo");
627 EXPECT_EQ("foo", message.stringfield());
756 case unittest::TestAllTypes::FOO:
793 EXPECT_EQ(unittest::TestAllTypes::FOO,
    [all...]
  /external/gtest/test/
gtest_unittest.cc 617 EXPECT_STREQ("foo", String::ShowCString("foo"));
626 EXPECT_STREQ("\"foo\"",
627 String::ShowCStringQuoted("foo").c_str());
642 const String foo("foo");
643 EXPECT_FALSE(foo == NULL); // NOLINT
644 EXPECT_FALSE(foo == ""); // NOLINT
645 EXPECT_FALSE(foo == "bar"); // NOLINT
646 EXPECT_TRUE(foo == "foo"); // NOLIN
4043 Foo foo; member in class:__anon3884::FRIEND_TEST_Test2
    [all...]
  /external/protobuf/gtest/test/
gtest_unittest.cc 4904 Foo foo; member in class:__anon5718::FRIEND_TEST_Test2
    [all...]
  /external/v8/test/cctest/
test-api.cc 256 Local<Value> foo_before = obj->Get(v8_str("foo"));
259 obj->Set(v8_str("foo"), bar_str);
260 Local<Value> foo_after = obj->Get(v8_str("foo"));
1604 Local<Value> foo = Script::Compile(v8_str("this.foo"))->Run(); local
3842 v8::Handle<String> foo = v8_str("foo"); local
4128 Local<Value> foo = v8_str("foo"); local
4241 Local<Value> foo = v8_str("foo"); local
4274 Local<Value> foo = v8_str("foo"); local
4309 Local<Value> foo = v8_str("foo"); local
4344 Local<Value> foo = v8_str("foo"); local
4408 Local<Value> foo = v8_str("foo"); local
5411 Local<Value> foo = other->Global()->Get(v8_str("foo")); local
    [all...]
  /prebuilt/common/jython/
jython.jar 

Completed in 1683 milliseconds