HomeSort by relevance Sort by last modified time
    Searched refs:Foo (Results 1 - 25 of 34) sorted by null

1 2

  /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;
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 };
test_static_init.cpp 5 Foo theFoo2;
  /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
FooBar.java 19 public class FooBar<K,V,L> extends Foo<V> implements Bar<K> {
37 public FooBar<K,? extends Foo,L> a(K arg) {
  /dalvik/libcore/support/src/test/java/tests/resources/
hyts_Foo.ser 
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/instanceof/
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 );
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 );
  /external/clearsilver/cs/
test_func.cs 4 <?cs var:test_strfunc(Foo) ?>
5 <?cs var:test_strfunc("Foo" + Foo) ?>
19 6: <?cs var:string.length("foo" + "bar") ?>
23 4: <?cs var:subcount(Foo.Bar["Baz"]) ?>
24 Baz: <?cs var:name(Foo.Bar["Baz"]) ?>
26 oba: <?cs var:string.slice("foo" + "bar", 5-3, 2+3) ?>
test_joo.cs 2 Empty has no value assigned (ie, empty), Foo has a value, NotExist doesn't exist
13 [2] Foo == ''
14 <?cs if:Foo == '' ?>
33 [5] Foo != ''
34 <?cs if:Foo != '' ?>
53 [8] ?Foo
54 <?cs if:?Foo ?>
73 [11] !Foo
74 <?cs if:!Foo ?>
93 [14] !?Foo
    [all...]
test14.cs 28 <?cs if:?Wow.Foo ?>
29 <?cs name:Wow.Foo ?> Exists
125 <?cs var:Days[TestIf].foo ?>
126 <?cs if:?Days[TestIf].foo ?>
test4.cs 12 <?cs set:Set.3 = Foo + " " + Blah ?>
  /external/gtest/test/
gtest_list_tests_unittest_.cc 47 TEST(Foo, Bar1) {
50 TEST(Foo, Bar2) {
53 TEST(Foo, Bar3) {
gtest_break_on_failure_unittest_.cc 51 TEST(Foo, Bar) {
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
ContentHandlerTest.java 47 Class[] classes = { Foo.class, String.class, };
49 ((ContentHandlerImpl) handler).setContent(new Foo());
51 assertEquals("Foo", ((Foo) content).getFoo());
55 assertEquals("FooSub", ((Foo) content).getFoo());
58 ((ContentHandlerImpl) handler).setContent(new Foo());
72 Class[] classes = { Foo.class, String.class, };
74 ((ContentHandlerImpl) handler).setContent(new Foo());
76 assertEquals("Foo", ((Foo) content).getFoo())
    [all...]
  /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);
  /system/extras/tests/bionic/libstdc++/
test_cstddef.cpp 43 struct Foo
81 volatile size_t offset = offsetof(struct Foo, field2);
  /dalvik/libcore/luni/src/test/java/tests/api/java/io/
ObjectStreamClassTest.java 206 assertEquals(-5887964677443030867L, Foo.serialVersionUID());
213 static abstract class Foo implements Cloneable, Serializable {
216 private final String name = "foo";
225 Foo() {}
226 protected Foo(int ignored) {}
229 synchronized static int foo() { return 0; } method in class:ObjectStreamClassTest.Foo
235 /** Calculates Foo's default serialVersionUID. */
237 return ObjectStreamClass.lookup(Foo.class).getSerialVersionUID();
242 System.out.println(Foo.serialVersionUID());
  /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/v8/test/mjsunit/
string-index.js 32 var foo = "Foo"; variable
33 assertEquals("Foo", foo);
34 assertEquals("F", foo[0]);
35 assertEquals("o", foo[1]);
36 assertEquals("o", foo[2]);
38 assertEquals("F", foo["0" + ""], "string index");
39 assertEquals("o", foo["1"], "string index");
40 assertEquals("o", foo["2"], "string index")
    [all...]
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"]);
  /external/webkit/LayoutTests/fast/js/resources/
JSON-stringify.js 13 var objectWithSideEffectGetter = {get b() {this.foo=1;}};
14 var objectWithSideEffectGetterAndProto = {__proto__:{foo:"bar"}, get b() {this.foo=1;}};
16 arrayWithSideEffectGetter.__defineGetter__("b", function(){this.foo=1;});
18 arrayWithSideEffectGetterAndProto.__defineGetter__("b", function(){this.foo=1;});
19 arrayWithSideEffectGetterAndProto.__proto__ = {foo:"bar"};
114 return jsonObject.stringify({get Foo() { return "bar"; }});
117 return jsonObject.stringify({get Foo() { this.foo="wibble"; return "bar"; }});
121 jsonObject.stringify({get Foo() { count++; return "bar"; }})
    [all...]
  /external/libffi/
ltcf-cxx.sh     [all...]

Completed in 2269 milliseconds

1 2