/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
regress-102725.js | 40 * Successive calls to foo.toString() were producing different answers! 43 foo = (new Date()).getTime(); 44 actual = foo.toString(); 45 expect = foo.toString();
|
/external/v8/test/mjsunit/ |
object-create.js | 45 Object.create("foo"); 59 var protoFoo = { foo: function() { ctr++; }}; 60 var fooValue = { foo: { writable: true, value: function() { ctr2++; }}}; 61 var fooGetter = { foo: { get: function() { return ctr3++; }}}; 62 var fooSetter = { foo: { set: function() { return ctr4++; }}}; 63 var fooAmbiguous = { foo: { get: function() { return ctr3++; }, 70 Object.create(protoFoo).foo(); 74 Object.create(Object.create(protoFoo)).foo(); 77 // Add a property foo that returns a function. 79 v.foo(); [all...] |
escape.js | 100 assertEquals("foo%4<", unescape("foo%4<")); 101 assertEquals("foo%u<<<<", unescape("foo%u<<<<")); 102 assertEquals("foo%u4<<<", unescape("foo%u4<<<")); 103 assertEquals("foo%u44<<", unescape("foo%u44<<")); 104 assertEquals("foo%u444<", unescape("foo%u444<")) [all...] |
eval.js | 60 foo = 0; 63 var foo = 2; 64 return eval('foo'); 69 foo = 0; 72 var foo = 1; 73 eval('foo = 2'); 74 return foo; 77 assertEquals(0, foo); 86 foo = 0; 89 var foo = 2 [all...] |
strict-equals.js | 45 assertTrue('foo' === 'foo'); 46 assertFalse('bar' === 'foo'); 47 assertFalse('foo' === new String('foo')); 48 assertFalse(new String('foo') === new String('foo')); 49 var s = new String('foo'); 53 assertFalse('foo' === null); 54 assertFalse('foo' === 7) [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.4.4-3.js | 70 var foo = new MyObject('hello'); 73 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello'); ", "h", foo.charAt(0) ); 74 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello'); ", "e", foo.charAt(1) ); 75 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello'); ", "l", foo.charAt(2) ); 76 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello'); ", "l", foo.charAt(3) ); 77 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello'); ", "o", foo.charAt(4) ) [all...] |
15.5.4.5-3.js | 74 var foo = new MyObject('hello'); 76 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello');foo.charCodeAt(0)", 0x0068, foo.charCodeAt(0) ); 77 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello');foo.charCodeAt(1)", 0x0065, foo.charCodeAt(1) ); 78 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello');foo.charCodeAt(2)", 0x006c, foo.charCodeAt(2) ) [all...] |
/external/webkit/LayoutTests/storage/domstorage/script-tests/ |
complex-keys.js | 17 shouldBeNull("storage.getItem('FOO')"); 18 evalAndLog("storage.setItem('FOO', 'BAR')"); 21 shouldBeEqualToString("storage.getItem('FOO')", "BAR"); 22 shouldBeNull("storage.getItem('foo')"); 23 shouldBeUndefined("storage.foo"); 24 shouldBeUndefined("storage['foo']"); 26 evalAndLog("storage.foo = 'x'"); 27 shouldBeEqualToString("storage.foo", "x"); 28 shouldBeEqualToString("storage['foo']", "x"); 29 shouldBeEqualToString("storage.getItem('foo')", "x") [all...] |
/dalvik/tests/004-annotations/src/android/test/anno/ |
SimplyNoted.java | 24 public int foo() { method in class:SimplyNoted
|
/development/ndk/samples/module-exports/jni/foo/ |
foo.c | 1 #include "foo.h" 4 /* FOO should be defined to '2' when building foo.c */ 5 #ifndef FOO 6 #error FOO is not defined here ! 9 #if FOO != 2 10 #error FOO is incorrectly defined here ! 16 int foo(int x) function 18 LOGI("foo(%d) called !", x);
|
/external/dbus/test/data/equiv-config-files/basic/ |
basic-1.conf | 5 <listen>unix:path=/foo/bar</listen> 8 <servicedir>/usr/share/foo</servicedir>
|
/external/dbus/test/data/equiv-config-files/entities/ |
entities-1.conf | 6 <listen>unix:path=/foo/<bar></listen> 9 <servicedir>/usr/&share/foo</servicedir>
|
/external/dbus/test/data/valid-config-files/ |
basic.conf | 5 <listen>unix:path=/foo/bar</listen> 8 <servicedir>/usr/share/foo</servicedir>
|
entities.conf | 6 <listen>unix:path=/foo/<bar></listen> 9 <servicedir>/usr/&share/foo</servicedir>
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_3/Script/ |
in-001.js | 44 o.foo = 'sil'; 48 "\"foo\" in o", 50 "foo" in o );
|
function-002.js | 52 foo = bar ? function () { return true; } : function() { return false; }; 56 "bar = true; foo = bar ? function () { return true; } : function() { return false; }; foo()", 58 foo() );
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_4/Regress/ |
date-001-n.js | 43 this.foo = "bar"; 49 "function MyDate() { this.foo = \"bar\"; }; "+
|
/external/stlport/test/unit/ |
exception_test.cpp | 138 std::string foo = "foo"; local 140 throw std::runtime_error(foo); 143 CPPUNIT_ASSERT( foo == e.what() ); 146 CPPUNIT_ASSERT(foo == clone.what() ); 153 throw std::runtime_error(foo); 156 CPPUNIT_ASSERT( foo == e.what() ); 159 CPPUNIT_ASSERT(foo == clone.what() );
|
/ndk/sources/android/stlport/test/unit/ |
exception_test.cpp | 138 std::string foo = "foo"; local 140 throw std::runtime_error(foo); 143 CPPUNIT_ASSERT( foo == e.what() ); 146 CPPUNIT_ASSERT(foo == clone.what() ); 153 throw std::runtime_error(foo); 156 CPPUNIT_ASSERT( foo == e.what() ); 159 CPPUNIT_ASSERT(foo == clone.what() );
|
/external/chromium/base/ |
stats_table_unittest.cc | 260 MockStatsCounter foo("foo"); 263 EXPECT_TRUE(foo.Enabled()); 264 ASSERT_NE(foo.Pointer(), static_cast<int*>(0)); 265 EXPECT_EQ(0, *(foo.Pointer())); 266 EXPECT_EQ(0, table.GetCounterValue("c:foo")); 269 while (*(foo.Pointer()) < 123) foo.Increment(); 270 EXPECT_EQ(123, table.GetCounterValue("c:foo")); 271 foo.Add(0) [all...] |
/external/clearsilver/csharp/ |
csperftest.cs | 25 h.setValue("foo.1","1"); 26 h.setValue("foo.2","2"); 31 h.setValue(String.Format("foo.{0}",i),"5");
|
/external/webkit/LayoutTests/storage/domstorage/events/script-tests/ |
case-sensitive.js | 19 evalAndLog("storage.foo = 'test'"); 28 evalAndLog("storage.foo = 'test'"); 36 evalAndLog("storage.foo = 'TEST'");
|
/dalvik/dx/tests/093-ssa-invoke-range/ |
Blort.java | 56 long testMixedCategory(boolean foo) { 57 if (foo) {
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_3/regress/ |
function-002.js | 52 foo = bar ? function () { return true; } : function() { return false; }; 56 "bar = true; foo = bar ? function () { return true; } : function() { return false; }; foo()", 58 foo() );
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
ORAddress.java | 86 private final Object foo = new Object(); //$NON-LOCK-1$ 89 values[0] = foo;
|