HomeSort by relevance Sort by last modified time
    Searched refs:undefined (Results 101 - 125 of 1166) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/harmony/regress/
regress-2225.js 39 assertSame(undefined, Object.prototype.__lookupGetter__.call(proxy, 'foo'));
40 assertSame(undefined, Object.prototype.__lookupSetter__.call(proxy, 'bar'));
41 assertSame(undefined, Object.prototype.__lookupGetter__.call(proxy, '123'));
42 assertSame(undefined, Object.prototype.__lookupSetter__.call(proxy, '456'));
46 assertSame(undefined, Object.prototype.__lookupGetter__.call(object, 'foo'));
47 assertSame(undefined, Object.prototype.__lookupSetter__.call(object, 'bar'));
48 assertSame(undefined, Object.prototype.__lookupGetter__.call(object, '123'));
49 assertSame(undefined, Object.prototype.__lookupSetter__.call(object, '456'));
  /external/chromium_org/v8/test/mjsunit/
own-symbols.js 16 assertEquals(undefined, o[s]);
35 assertEquals(undefined, o[s]);
regexp-global.js 33 capture === undefined);
56 assertTrue((c1 === undefined && c2 === undefined) ||
57 (c2 === undefined && c3 === undefined) ||
58 (c1 === undefined && c3 === undefined));
69 assertTrue(num_legs !== undefined);
70 assertTrue(likeability !== undefined);
85 capture === undefined);
    [all...]
proto-accessor.js 28 // Fake Symbol if undefined, allowing test to run in non-Harmony mode as well.
29 this.Symbol = typeof Symbol != 'undefined' ? Symbol : String;
62 assertEquals(desc2.set.call({}), undefined);
69 assertEquals(desc3.set.call({}), undefined);
75 Object.defineProperty(Object.prototype, "__proto__", { set: undefined });
94 assertThrows(function() { getProto.call(undefined); }, TypeError);
105 assertEquals(setProto.call(values[i], proto), undefined);
109 assertThrows(function() { setProto.call(undefined, proto); }, TypeError);
119 var valuesWithUndefined = values.concat(undefined);
122 assertEquals(setProto.call(object, valuesWithUndefined[i]), undefined);
    [all...]
array-sort.js 164 // Test array sorting with undefined elemeents in the array.
191 obj[100] = undefined;
198 assertEquals(undefined, obj[3], "objsort undefined");
199 assertTrue(3 in obj, "objsort undefined retained");
258 // Behavior of sort with accessors is undefined. This accessor is
277 obj[i] = undefined;
293 assertEquals(undefined, obj[i], name + "undefined" + i);
326 assertEquals(undefined, y[i], name+"undefined"+i)
    [all...]
test-hidden-string.js 11 assertEquals(undefined, o[empty]);
debug-evaluate-const.js 46 assertEquals(undefined, const1);
47 assertEquals(undefined, const2);
57 assertEquals(undefined, const1);
58 assertEquals(undefined, const2);
85 "const1" : undefined,
86 "const2" : undefined,
88 "var0" : undefined,
  /external/chromium_org/v8/test/mjsunit/regress/
regress-618.js 34 assertEquals("undefined", typeof c1.y);
40 assertEquals("undefined", typeof c1.x);
49 assertEquals("undefined", typeof c2.y);
55 assertEquals("undefined", typeof c2.x);
64 assertEquals("undefined", typeof c3.y);
70 assertEquals("undefined", typeof c3.x);
79 assertEquals("undefined", typeof c4.y);
85 assertEquals("undefined", typeof c4.x);
  /external/clang/test/Preprocessor/
line-directive.c 104 undefined t; // expected-error {{unknown type name 'undefined'}}
  /external/e2fsprogs/lib/uuid/
uuid_types.h.in 34 ?==error: undefined 16 bit type
47 ?== error: undefined 32 bit type
  /external/llvm/test/MC/ARM/
udf-thumb-2-diagnostics.s 7 undefined: label
  /external/chromium_org/v8/test/webkit/fast/js/
Object-defineProperty.js 30 shouldBe("JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {get:undefined}), 'foo'))",
56 shouldThrow("Object.defineProperty({}, 'foo', {get:undefined, value:true}).foo");
136 // Either accessor may be omitted or replaced with undefined, or both may be replaced with undefined.
139 shouldBe("var o = Object.defineProperty({}, 'foo', {get:undefined, set:function(x){this.result = x;}}); o.foo", 'undefined')
140 shouldBe("var o = Object.defineProperty({}, 'foo', {get:undefined, set:function(x){this.result = x;}}); o.foo = 42; o.result;", '42');
141 shouldBe("var o = Object.defineProperty({}, 'foo', {set:function(x){this.result = x;}}); o.foo", 'undefined')
143 shouldBe("var o = Object.defineProperty({}, 'foo', {get:function(){return 42;}, set:undefined}); o.foo", '42')
144 shouldBe("var o = Object.defineProperty({}, 'foo', {get:function(){return 42;}, set:undefined}); o.foo = 42; o.result;", 'undefined')
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
string-endswith.js 38 assertFalse(testString.endsWith(undefined));
41 assertTrue("undefined".endsWith(undefined));
50 assertThrows("String.prototype.endsWith.call(undefined, undefined)", TypeError);
54 assertThrows("String.prototype.endsWith.apply(undefined, [undefined])", TypeError);
131 assertTrue("abc".endsWith("bc", undefined));
143 assertEquals("undefined".endsWith(), true);
144 assertEquals("undefined".endsWith(undefined), true)
    [all...]
string-startswith.js 38 assertFalse(testString.startsWith(undefined));
41 assertTrue("undefined".startsWith(undefined));
50 assertThrows("String.prototype.startsWith.call(undefined, undefined)", TypeError);
54 assertThrows("String.prototype.startsWith.apply(undefined, [undefined])", TypeError);
142 assertEquals("undefined".startsWith(), true);
143 assertEquals("undefined".startsWith(undefined), true)
    [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
errorcodes.js 28 * errorMessage: (?string|undefined)
  /external/chromium_org/content/renderer/java/
gin_java_bridge_value_converter_unittest.cc 48 v8::Handle<v8::Primitive> v8_undefined(v8::Undefined(isolate_));
49 scoped_ptr<base::Value> undefined(
51 ASSERT_TRUE(undefined.get());
52 EXPECT_TRUE(GinJavaBridgeValue::ContainsGinJavaBridgeValue(undefined.get()));
54 GinJavaBridgeValue::FromValue(undefined.get()));
87 scoped_ptr<base::Value> undefined(
89 ASSERT_TRUE(undefined.get());
90 EXPECT_TRUE(GinJavaBridgeValue::ContainsGinJavaBridgeValue(undefined.get()));
92 GinJavaBridgeValue::FromValue(undefined.get()));
  /external/chromium_org/third_party/WebKit/Tools/qunit/test/
logs.js 65 message: undefined,
76 strictEqual(testDoneContext, undefined);
80 strictEqual(moduleDoneContext, undefined);
103 strictEqual(moduleDoneContext, undefined);
  /external/chromium_org/v8/test/cctest/compiler/
test-run-inlining.cc 124 T.CheckCall(T.Val(42 + 12), T.Val(12), T.undefined());
143 T.CheckCall(T.Val(42), T.Val("x"), T.undefined());
160 T.CheckCall(T.Val(42 + 12), T.Val(12), T.undefined());
198 T.CheckCall(T.Val(42 + 12), T.Val(12), T.undefined());
331 T.CheckThrows(T.undefined(), T.undefined());
349 T.CheckCall(T.Val(42), T.undefined(), T.undefined());
test-run-intrinsics.cc 21 T.CheckFalse(T.undefined());
33 T.CheckFalse(T.undefined());
45 T.CheckFalse(T.undefined());
56 T.CheckFalse(T.undefined());
70 T.CheckFalse(T.undefined());
84 T.CheckFalse(T.undefined());
98 T.CheckFalse(T.undefined());
112 T.CheckCall(T.null(), T.undefined());
147 T.CheckCall(T.Val("x"), T.undefined(), T.Val("x"));
156 T.CheckCall(T.Val(""), T.undefined());
    [all...]
  /external/e2fsprogs/lib/blkid/
blkid_types.h.in 33 ?==error: undefined 16 bit type
47 ?==error: undefined 16 bit type
65 ?== error: undefined 32 bit type
83 ?== error: undefined 32 bit type
  /external/e2fsprogs/lib/ext2fs/
ext2_types.h.in 33 ?==error: undefined 16 bit type
47 ?==error: undefined 16 bit type
65 ?== error: undefined 32 bit type
83 ?== error: undefined 32 bit type
  /external/libogg/src/
Makefile.am 8 libogg_la_LDFLAGS = -no-undefined -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
  /external/chromium_org/v8/test/webkit/
JSON-stringify-replacer.js 26 var object = {0:0, 1:1, 2:2, 3:undefined};
27 var array = [0, 1, 2, undefined];
41 return undefined;
65 if (v === undefined)
66 return "undefined value";
88 shouldBe("JSON.stringify(object, returnStringForUndefined)", '\'{"0":0,"1":1,"2":2,"3":"undefined value"}\'');
89 shouldBe("JSON.stringify(array, returnStringForUndefined)", '\'[0,1,2,"undefined value"]\'');
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
ScopeChainSidebarPane.js 82 subtitle = undefined;
102 subtitle = undefined;
107 subtitle = undefined;
121 subtitle = undefined;
125 var scopeObject = runtimeModel.createScopeRemoteObject(scope.object, new WebInspector.ScopeRef(i, callFrame.id, undefined));
  /external/chromium_org/v8/test/webkit/resources/
standalone-pre.js 144 testFailed(_a + " should be undefined. Threw exception " + exception);
145 else if (typeof _av == "undefined")
146 testPassed(_a + " is undefined.");
148 testFailed(_a + " should be undefined. Was " + _av);
167 if (typeof _e == "undefined" || exception == _ev)
170 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Threw exception " + exception + ".");
171 } else if (typeof _av == "undefined")
172 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Was undefined.");
174 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Was " + _av + ".")
    [all...]

Completed in 1033 milliseconds

1 2 3 45 6 7 8 91011>>