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

1 2 3 45 6 7 8 91011>>

  /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/mjsunit/
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,
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...]
debug-step-4-in-frame.js 72 if (frame_index !== undefined) {
112 TestCase(undefined, 0, "0,0,-1");
113 TestCase(undefined, 1, "0,0,-1");
114 TestCase(undefined, 2, "0,0,0");
115 TestCase(undefined, 5, "0,0,1");
116 TestCase(undefined, 8, "0,0,3");
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]");
  /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"]\'');
cached-call-uninitialized-arguments.js 25 "This test checks that uninitialized parameters for cached call functions correctly defaults to undefined."
42 testFailed(_a + " should be undefined. Threw exception " + exception);
43 else if (typeof _av == "undefined")
44 testPassed(_a + " is undefined.");
46 testFailed(_a + " should be undefined. Was " + _av);
  /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...]
  /external/chromium_org/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/chromium_org/v8/test/webkit/fast/regex/
ecma-regex-examples.js 32 shouldBe('regex02.exec("abc")', '["abc", "a", "a", undefined, "bc", undefined, "bc"]');
47 shouldBe('regex07.exec("zaacbbbcac")', '["zaacbbbcac", "z", "ac", "a", undefined, "c"]');
50 shouldBe('regex08.exec("b")', '["", undefined]');
62 shouldBe('regex12.exec("baaabaac")', '["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...]
  /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/chromium_org/v8/test/mjsunit/harmony/
array-find.js 33 assertEquals(undefined, a.find(function() { return false; }));
35 assertEquals(undefined, a.find(function(val) { return 121 === val; }));
38 assertEquals(22, a.find(function(val) { return 22 === val; }), undefined);
90 assertEquals(undefined, found);
106 assertEquals(undefined, found);
132 assertEquals(undefined, found);
181 assertEquals(undefined, found);
193 assertEquals(undefined, found);
199 assertEquals(undefined, found);
245 assertThrows('Array.prototype.find.call(undefined, function() { })'
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
model_unittests.js 147 "revertedRevision": undefined,
157 "revertedRevision": undefined
167 "revertedRevision": undefined
  /external/chromium_org/v8/test/webkit/fast/js/kde/
lval-exceptions.js 25 // Tests for raising --- and non-raising exceptions on access to reference to undefined things...
27 // Locals should throw on access if undefined..
33 // Other reference types should just return undefined...
56 if (typeof exType == "undefined" || exception instanceof exType)
60 } else if (typeof _av == "undefined")
61 testFailed(f + " should throw exception " + exType + ". Was undefined.");
operators.js 125 shouldBeTrue("!undefined");
134 shouldBeTrue("nonSpeculativeNot(undefined)");
312 shouldBeTrue("'a' != undefined");
314 shouldBeTrue("null == undefined");
315 shouldBeTrue("undefined == undefined");
317 shouldBeTrue("true != undefined");
319 shouldBeTrue("false != undefined");
325 shouldBeTrue("NaN != undefined");
338 shouldBeTrue("nonSpeculativeNotEqual('a', 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.

Completed in 221 milliseconds

1 2 3 45 6 7 8 91011>>