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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/ELF/
invalid-symver.s 4 // CHECK: A @@ version cannot be undefined
6 .symver undefined, foo@@bar
7 .long undefined
  /external/valgrind/main/gdbserver_tests/
watchpoints.c 10 static char undefined[10] = "undefined"; variable
23 if (undefined[0] == 'u')
28 if (undefined[4] == 'f')
33 if (undefined[8] == 'd')
41 undefined[0] = 'U';
44 undefined[4] = 'F';
47 undefined[8] = 'D';
53 fprintf(stderr, "value %s\n", undefined);
56 undefined[0] = '0'
    [all...]
mcwatchpoints.stdoutB.exp 5 Hardware read watchpoint 2: undefined[0]
6 Hardware access (read/write) watchpoint 3: undefined[4]
7 Hardware watchpoint 4: undefined[8]
9 Hardware read watchpoint 2: undefined[0]
12 23 if (undefined[0] == 'u')
14 Hardware access (read/write) watchpoint 3: undefined[4]
17 28 if (undefined[4] == 'f')
19 Hardware access (read/write) watchpoint 3: undefined[4]
25 Hardware watchpoint 4: undefined[8]
  /external/chromium/net/data/proxy_resolver_v8_unittest/
return_undefined.js 2 return undefined;
  /external/chromium/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauthsimple.js 37 if (OAuthSimple === undefined)
83 /* if (api_key == undefined)
85 if (shared_secret == undefined)
91 if (consumer_key !== undefined) {
94 if (shared_secret !== undefined) {
104 this._path=undefined;
113 if (parameters === undefined) {
120 if (this._parameters['oauth_nonce'] === undefined) {
123 if (this._parameters['oauth_timestamp'] === undefined) {
126 if (this._parameters['oauth_method'] === undefined) {
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauthsimple.js 37 if (OAuthSimple === undefined)
83 /* if (api_key == undefined)
85 if (shared_secret == undefined)
91 if (consumer_key !== undefined) {
94 if (shared_secret !== undefined) {
104 this._path=undefined;
113 if (parameters === undefined) {
120 if (this._parameters['oauth_nonce'] === undefined) {
123 if (this._parameters['oauth_timestamp'] === undefined) {
126 if (this._parameters['oauth_method'] === undefined) {
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
chrome_ex_oauthsimple.js 37 if (OAuthSimple === undefined)
83 /* if (api_key == undefined)
85 if (shared_secret == undefined)
91 if (consumer_key !== undefined) {
94 if (shared_secret !== undefined) {
104 this._path=undefined;
113 if (parameters === undefined) {
120 if (this._parameters['oauth_nonce'] === undefined) {
123 if (this._parameters['oauth_timestamp'] === undefined) {
126 if (this._parameters['oauth_method'] === undefined) {
    [all...]
prettyload.js 39 this.frames = frames !== undefined ? frames : ELLIPSIS;
40 this.backgroundColor = backgroundColor !== undefined ? backgroundColor : null;
42 successBackgroundColor !== undefined ? successBackgroundColor : null;
44 timeoutBackgroundColor !== undefined ? timeoutBackgroundColor : null;
45 this.frameRate = frameRate !== undefined ? frameRate : 12;
46 this.minDuration = minDuration !== undefined ? minDuration : 1;
47 this.maxDuration = maxDuration !== undefined ? maxDuration : 10;
62 timeoutFrame !== undefined ? timeoutFrame : '', TIMEOUT_BACKGROUND_COLOR
95 successFrame !== undefined ? successFrame : '', SUCCESS_BACKGROUND_COLOR
  /external/llvm/test/MC/AsmParser/
ifdef.s 5 .ifdef undefined
21 movl %eax, undefined
25 .ifdef undefined
ifndef.s 5 .ifndef undefined
21 movl %eax, undefined
25 .ifndef undefined
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/Regress/
regress-7224.js 63 undefined,
68 undefined,
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
argument-types.js 38 test('navigator.geolocation.getCurrentPosition(undefined)', true);
51 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined)', false);
64 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, undefined)', false);
65 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, null)', false);
66 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {})', false);
67 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, objectThrowingException)', true, 'Error: enableHighAccuracy getter exception');
68 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, emptyFunction)', false);
69 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, true)', false);
70 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, 42)', false)
    [all...]
  /external/v8/test/mjsunit/
bitwise-operations-undefined.js 28 // Test bitwise operations with undefined.
31 assertEquals(undefined | 1, 1);
32 assertEquals(undefined & 1, 0);
33 assertEquals(undefined ^ 1, 1);
34 assertEquals(undefined << 1, 0);
35 assertEquals(undefined >> 1, 0);
36 assertEquals(undefined >>> 1, 0);
40 assertEquals(1 | undefined, 1);
41 assertEquals(1 & undefined, 0);
42 assertEquals(1 ^ undefined, 1)
    [all...]
array-indexing.js 29 var undef_array = [0,,2,undefined,4,,6,undefined,8,,10];
33 sparse_array[200] = undefined;
39 sparse_array[800] = undefined;
67 // Find undefined, not holes.
68 assertEquals(3, undef_array.indexOf(undefined));
69 assertEquals(3, undef_array.indexOf(undefined, 3));
70 assertEquals(7, undef_array.indexOf(undefined, 4));
71 assertEquals(7, undef_array.indexOf(undefined, 7));
72 assertEquals(-1, undef_array.indexOf(undefined, 8))
    [all...]
arguments-opt.js 69 assertTrue(typeof A(1) == 'undefined');
70 assertTrue(typeof A(3,2,1) == 'undefined');
74 assertTrue(typeof(A(-10000)) == 'undefined');
75 assertTrue(typeof(A(-10000, 0)) == 'undefined');
76 assertTrue(typeof(A(-1)) == 'undefined');
77 assertTrue(typeof(A(-1, 0)) == 'undefined');
78 assertTrue(typeof(A(10000)) == 'undefined');
79 assertTrue(typeof(A(10000, 0)) == 'undefined');
87 assertEquals('undefined', typeof A('1'));
88 assertEquals('undefined', typeof A('3',2,1))
    [all...]
  /external/clang/examples/analyzer-plugin/
Makefile 19 LDFLAGS=-Wl,-undefined,dynamic_lookup
  /external/e2fsprogs/lib/uuid/
uuid_types.h 34 ?==error: undefined 16 bit type
47 ?== error: undefined 32 bit type
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/Array/
regress-310425-01.js 47 actual = [].lastIndexOf(undefined, -1);
51 actual = [].indexOf(undefined, -1);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
15.3.4.4-1.js 109 * Function.prototype.call(x, undefined) should return the same result
112 actual = F1.call(0, undefined);
117 actual = F1.call("", undefined);
122 actual = F1.call(null, undefined);
127 actual = F1.call(undefined, undefined);
128 expect = F1.call(undefined);
134 * Function.prototype.call(undefined) should return the same result
137 actual = F2.call(undefined);
15.3.4.3-1.js 109 * Function.prototype.apply(x, undefined) should return the same result
112 actual = F1.apply(0, undefined);
117 actual = F1.apply("", undefined);
122 actual = F1.apply(null, undefined);
127 actual = F1.apply(undefined, undefined);
128 expect = F1.apply(undefined);
152 actual = F1.apply(undefined, null);
153 expect = F1.apply(undefined);
159 * Function.prototype.apply(undefined) should return the same resul
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/GetSet/
getset-006.js 27 * or undefined if o.p has no getter. Users can wrap and layer."
73 expect = [undefined, undefined];
78 expect = [undefined, undefined];
100 expect = [undefined, undefined];
105 expect = [undefined, undefined];
131 expect = [undefined, undefined]
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Expressions/
11.9.6-1.js 38 * SUMMARY: Testing the comparison |undefined === null|
45 var summary = 'Testing the comparison |undefined === null|';
55 if (undefined === null)
67 case (undefined === null) :
97 actual = f3(undefined);
127 var arr = Array('a', undefined);
139 for(var i=0; (arr[i]===undefined) && (i<len); i++)
146 * An array of 5 undefined elements. Note:
148 * The return value of eval(a STATEMENT) is undefined.
149 * A non-existent PROPERTY is undefined, not a ReferenceError
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
vertical_bar.js 67 String(["Bob",undefined,"Bob", undefined, undefined]), String('Hi Bob'.match(new RegExp('(Rob)|(Bob)|(Robert)|(Bobby)'))));
75 String(["Bob",undefined,"Bob", undefined, undefined]), String('Hi Bob'.match(/(Rob)|(Bob)|(Robert)|(Bobby)/)));
  /external/webkit/LayoutTests/fast/js/resources/
select-options-remove.js 8 shouldBe("select1.options.remove(value)", "undefined");
15 shouldBe("select1.options.remove(value)", "undefined");
22 shouldBe("select1.options.remove(value)", "undefined");
29 shouldBe("select1.options.remove(value)", "undefined");
34 debug("1.5 Remove (undefined) from empty Options");
35 value = undefined;
36 shouldBe("select1.options.remove(value)", "undefined");
43 shouldBe("select1.options.remove(value)", "undefined");
50 shouldBe("select1.options.remove(value)", "undefined");
57 shouldBe("select1.options.remove(value)", "undefined");
    [all...]
  /external/webkit/LayoutTests/fast/dom/DeviceMotion/script-tests/
optional-event-properties.js 1 description("Tests the optional properties of DeviceMotionEvent. Each property should be null if not set, or set to null or undefined.");
66 evalAndLog("event.initDeviceMotionEvent('', false, false, undefined, undefined, undefined, undefined)");
102 evalAndLog("event.initDeviceMotionEvent('', false, false, {x: undefined, y: undefined, z: undefined}, {x: undefined, y: undefined, z: undefined}, {alpha: undefined, beta: undefined, gamma: undefined}, undefined)")
    [all...]

Completed in 565 milliseconds

1 2 3 4 5 6 7 8 91011>>