HomeSort by relevance Sort by last modified time
    Searched refs:undefined (Results 76 - 100 of 3095) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/bridge/objc/
WebScriptObject.h 43 + (WebUndefined *)undefined;
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodeinsertbefore15.js 46 if (typeof(this.doc) != 'undefined') {
102 if (typeof(this.doc) != 'undefined') {
117 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
129 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
141 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
153 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
165 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
nodereplacechild21.js 47 if (typeof(this.doc) != 'undefined') {
53 if (typeof(this.doc1) != 'undefined') {
111 if (typeof(this.doc) != 'undefined') {
122 if (typeof(this.doc1) != 'undefined') {
138 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
149 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
nodereplacechild38.js 46 if (typeof(this.doc) != 'undefined') {
103 if (typeof(this.doc) != 'undefined') {
124 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
136 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
148 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
160 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
172 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
184 success = (typeof(ex.code) != 'undefined' && ex.code == 7);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
15.10.2-1.js 71 expectedmatch = Array('abc', 'a', 'a', undefined, 'bc', undefined, 'bc');
106 expectedmatch = Array('zaacbbbcac', 'z', 'ac', 'a', undefined, 'c');
113 expectedmatch = Array('', undefined);
141 expectedmatch = Array('baaabaac', 'ba', undefined, 'abaac');
  /external/v8/test/mjsunit/
function.js 29 assertTrue(typeof f() == 'undefined');
31 assertTrue(typeof f() == 'undefined');
46 assertTrue(typeof f() == 'undefined');
54 assertEquals('undefined', f());
63 assertTrue(typeof f() == 'undefined');
object-define-property.js 42 // Check that an exception is thrown when undefined is passed as object.
45 Object.defineProperty(undefined, undefined, undefined);
55 Object.defineProperty(0, "foo", undefined);
114 // Check that we can't add property with undefined attributes.
116 Object.defineProperty(obj1, "foo", undefined);
126 // foo should be undefined as it has no get, set or value
127 assertEquals(undefined, obj1.foo);
135 assertEquals(desc.get, undefined);
    [all...]
double-equals.js 99 // Null and undefined are equal to themselves.
102 testEqual(undefined, undefined);
130 // Null and undefined are equal to each-other, and to nothing else.
131 testEqual(null, undefined);
132 testEqual(undefined, null);
139 testNotEqual(undefined, new Wrapper(undefined));
140 testNotEqual(undefined, 0);
141 testNotEqual(undefined, false)
    [all...]
function-bind.js 147 assertEquals([foo, 0, undefined], f());
231 f = foo.bind(undefined);
232 assertEquals([this, 0, undefined], f());
235 assertEquals([this, 0, undefined], f());
238 assertEquals([Object(42), 0, undefined], f());
241 assertEquals([Object("foo"), 0, undefined], f());
244 assertEquals([Object(true), 0, undefined], f());
252 var s = soo.bind(undefined);
253 assertEquals([undefined, 0, undefined], s())
    [all...]
error-tostring.js 63 return (nameValue === undefined) ? nameValue : {
69 return (messageValue === undefined) ? messageValue : {
78 assertEquals(["Error",[1,3]], testErrorToString(undefined, undefined));
79 assertEquals(["e1",[1,2,3]], testErrorToString("e1", undefined));
82 assertEquals(["Error: e2",[1,3,4]], testErrorToString(undefined, "e2"));
for-in.js 100 assertEquals("undefined", typeof y.bar, "y.bar");
104 assertEquals("undefined", typeof y[2], "y[2]");
105 assertEquals("undefined", typeof y[0], "y[0]");
115 assertEquals("undefined", typeof y.bar, "y.bar");
119 assertEquals("undefined", typeof y[2], "y[2]");
120 assertEquals("undefined", typeof y[0], "y[0]");
array-slice.js 57 assertEquals(array, array.slice(undefined));
59 assertEquals(array, array.slice(undefined, undefined));
90 assertEquals(7, array.slice(0, 7, obj, null, undefined).length);
158 assertEquals(array[3], undefined);
163 assertEquals(array[7], undefined);
201 assertEquals(array[3], undefined);
206 assertEquals(array[7], undefined);
231 func(['a', 1, undefined], 'a', 1, undefined);
    [all...]
polymorph-arrays.js 78 assertEquals(undefined, load(js_array, new Object()));
80 assertEquals(undefined, load(object_array, new Object()));
82 assertEquals(undefined, load(sparse_js_array, new Object()));
84 assertEquals(undefined, load(sparse_object_array, new Object()));
96 assertEquals(undefined, load(js_array, new Object()));
99 assertEquals(undefined, load(object_array, new Object()));
102 assertEquals(undefined, load(sparse_js_array, new Object()));
105 assertEquals(undefined, load(sparse_object_array, new Object()));
  /external/v8/test/mjsunit/regress/
regress-326.js 29 // Should sort non-array into equivalent of [37,42,undefined,,0]
31 var nonArray = { length: 4, 0: 42, 2: 37, 3: undefined, 4: 0 };
37 assertTrue(2 in nonArray, "don't delete undefined");
38 assertEquals(undefined, nonArray[2], "sort undefined after largest");
  /external/webkit/LayoutTests/fast/js/resources/
js-test-pre.js 138 } else if (typeof expected == "undefined") {
215 testFailed(_a + " should be undefined. Threw exception " + exception);
216 else if (typeof _av == "undefined")
217 testPassed(_a + " is undefined.");
219 testFailed(_a + " should be undefined. Was " + _av);
234 else if (_av !== undefined)
255 else if (typeof _av == "undefined" || _av < _bv)
276 if (typeof _e == "undefined" || exception == _ev)
279 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Threw exception " + exception + ".");
280 } else if (typeof _av == "undefined")
    [all...]
  /external/compiler-rt/make/
util.mk 44 IsDefined = $(call strneq,undefined,$(flavor $(1)))
48 # Check whether the given variable is undefined.
49 IsUndefined = $(call streq,undefined,$(flavor $(1)))
54 # is undefined.
72 # if 'src' is undefined. The destination variable must be undefined.
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-raytrace.js 69 if(typeof(Flog) == 'undefined') var Flog = {};
70 if(typeof(Flog.RayTracer) == 'undefined') Flog.RayTracer = {};
187 if(typeof(Flog) == 'undefined') var Flog = {};
188 if(typeof(Flog.RayTracer) == 'undefined') Flog.RayTracer = {};
214 if(typeof(Flog) == 'undefined') var Flog = {};
215 if(typeof(Flog.RayTracer) == 'undefined') Flog.RayTracer = {};
278 if(typeof(Flog) == 'undefined') var Flog = {};
279 if(typeof(Flog.RayTracer) == 'undefined') Flog.RayTracer = {};
296 if(typeof(Flog) == 'undefined') var Flog = {};
297 if(typeof(Flog.RayTracer) == 'undefined') Flog.RayTracer = {}
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-raytrace.js 69 if(typeof(Flog) == 'undefined') var Flog = {};
70 if(typeof(Flog.RayTracer) == 'undefined') Flog.RayTracer = {};
187 if(typeof(Flog) == 'undefined') var Flog = {};
188 if(typeof(Flog.RayTracer) == 'undefined') Flog.RayTracer = {};
214 if(typeof(Flog) == 'undefined') var Flog = {};
215 if(typeof(Flog.RayTracer) == 'undefined') Flog.RayTracer = {};
278 if(typeof(Flog) == 'undefined') var Flog = {};
279 if(typeof(Flog.RayTracer) == 'undefined') Flog.RayTracer = {};
296 if(typeof(Flog) == 'undefined') var Flog = {};
297 if(typeof(Flog.RayTracer) == 'undefined') Flog.RayTracer = {}
    [all...]
  /bionic/libc/kernel/arch-mips/asm/
module.h 62 #error MODULE_PROC_FAMILY undefined for your processor configuration
  /build/core/combo/
HOST_linux-x86.mk 61 HOST_NO_UNDEFINED_LDFLAGS := -Wl,--no-undefined
  /development/ndk/platforms/android-9/arch-mips/include/asm/
module.h 62 #error MODULE_PROC_FAMILY undefined for your processor configuration
  /external/chromium/chrome/browser/resources/ntp4/tools/
externs.js 35 * @param {EventListener|function(Event):(boolean|undefined)} listener
37 * @return {undefined}
  /external/chromium/chrome/browser/resources/touch_ntp/tools/
externs.js 35 * @param {EventListener|function(Event):(boolean|undefined)} listener
37 * @return {undefined}
  /external/clang/test/Sema/
pragma-unused.c 36 #pragma unused(undeclared, undefined, y) // expected-warning{{undeclared variable 'undeclared' used as an argument for '#pragma unused'}} expected-warning{{undeclared variable 'undefined' used as an argument for '#pragma unused'}}
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/
browser.js 56 if ( gc != undefined ) {

Completed in 1136 milliseconds

1 2 34 5 6 7 8 91011>>