HomeSort by relevance Sort by last modified time
    Searched full:undefined (Results 51 - 75 of 7209) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/dom/
NamedNodeMap.idl 25 Node getNamedItem([Default=Undefined] optional DOMString name);
26 [NotEnumerable, ImplementedAs=getNamedItem] getter Node ([Default=Undefined] optional DOMString name);
28 [RaisesException, CustomElementCallbacks] Node setNamedItem([Default=Undefined] optional Node node);
30 [RaisesException, CustomElementCallbacks] Node removeNamedItem([Default=Undefined] optional DOMString name);
32 getter Node item([Default=Undefined] optional unsigned long index);
40 /*[RaisesException]*/ Node getNamedItemNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
41 [Default=Undefined] optional DOMString localName);
43 [RaisesException, CustomElementCallbacks] Node setNamedItemNS([Default=Undefined] optional Node node);
45 [RaisesException, CustomElementCallbacks] Node removeNamedItemNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
46 [Default=Undefined] optional DOMString localName)
    [all...]
Document.idl 36 [RaisesException, MeasureAs=DocumentCreateCDATASection] CDATASection createCDATASection([Default=Undefined] optional DOMString data); // Removed from DOM4.
38 [RaisesException, MeasureAs=DocumentCreateAttribute] Attr createAttribute([Default=Undefined] optional DOMString name); // Removed from DOM4.
45 [RaisesException, MeasureAs=DocumentCreateAttributeNS] Attr createAttributeNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
46 [TreatNullAs=NullString,Default=Undefined] optional DOMString qualifiedName); // Removed from DOM4.
89 CSSStyleDeclaration getOverrideStyle([Default=Undefined] optional Element element,
90 [Default=Undefined] optional DOMString pseudoElement);
94 boolean execCommand([Default=Undefined] optional DOMString command,
95 [Default=Undefined] optional boolean userInterface,
96 [TreatNullAs=NullString, TreatUndefinedAs=NullString,Default=Undefined] optional DOMString value);
98 boolean queryCommandEnabled([Default=Undefined] optional DOMString command)
    [all...]
  /external/chromium_org/v8/test/webkit/
apply-varargs-expected.txt 24 Test that we properly fill in missing args with "undefined" in JIT code.
29 PASS caller(0) is undefined
30 PASS caller(1) is undefined
31 PASS caller(2) is undefined
32 PASS caller(3) is undefined
33 PASS caller(4) is undefined
34 PASS caller(5) is undefined
35 PASS caller(6) is undefined
36 PASS caller(7) is undefined
37 PASS caller(8) is undefined
    [all...]
array-holes-expected.txt 30 PASS var a = []; a[0] = undefined; showHoles(a) is '[undefined]'
31 PASS var a = []; a[0] = undefined; delete a[0]; showHoles(a) is '[hole]'
39 PASS showHoles([0, undefined, 2, 3].sort()) is '[0, 2, 3, undefined]'
43 PASS showHoles([0, undefined, 2, 3].filter(returnTrue)) is '[0, undefined, 2, 3]'
45 PASS showHoles([0, undefined, 2, 3].map(returnTrue)) is '[true, true, true, true]'
47 PASS a = []; [0, undefined, 2, 3].every(addToArrayReturnTrue); showHoles(a) is '[0, undefined, 2, 3]
    [all...]
array-holes.js 77 shouldBe("var a = []; a[0] = undefined; showHoles(a)", "'[undefined]'");
78 shouldBe("var a = []; a[0] = undefined; delete a[0]; showHoles(a)", "'[hole]'");
87 shouldBe("showHoles([0, undefined, 2, 3].sort())", "'[0, 2, 3, undefined]'");
91 shouldBe("showHoles([0, undefined, 2, 3].filter(returnTrue))", "'[0, undefined, 2, 3]'");
93 shouldBe("showHoles([0, undefined, 2, 3].map(returnTrue))", "'[true, true, true, true]'");
95 shouldBe("a = []; [0, undefined, 2, 3].every(addToArrayReturnTrue); showHoles(a)", "'[0, undefined, 2, 3]'")
    [all...]
regexp-zero-length-alternatives-expected.txt 41 PASS emptyStr.match(re4) is ["", undefined]
42 PASS s1.match(re4) is ["", undefined]
45 PASS emptyStr.match(re5) is ["", undefined]
46 PASS s1.match(re5) is ["", undefined]
49 PASS emptyStr.match(re6) is ["", undefined]
50 PASS s1.match(re6) is ["", undefined]
77 PASS emptyStr.match(re13) is ["", undefined]
78 PASS s1.match(re13) is ["", undefined]
79 PASS s2.match(re13) is ["", undefined]
80 PASS s3.match(re13) is ["", undefined]
    [all...]
delete-getters-setters-expected.txt 29 PASS b1.property threw exception TypeError: Cannot read property 'property' of undefined.
30 PASS a2.property threw exception TypeError: Cannot read property 'property' of undefined.
31 PASS b3.property threw exception TypeError: Cannot read property 'property' of undefined.
32 PASS a4.property threw exception TypeError: Cannot read property 'property' of undefined.
33 PASS b5.property threw exception TypeError: Cannot read property 'property' of undefined.
34 PASS a6.property threw exception TypeError: Cannot read property 'property' of undefined.
35 PASS b7.property threw exception TypeError: Cannot read property 'property' of undefined.
36 PASS a8.property threw exception TypeError: Cannot read property 'property' of undefined.
37 PASS o1.b.property threw exception TypeError: Cannot read property 'property' of undefined.
38 PASS o1.a.property threw exception TypeError: Cannot read property 'property' of undefined
    [all...]
  /external/chromium_org/v8/test/webkit/fast/regex/
parentheses.js 33 shouldBe("regexp3.exec('abacadabe')", "['abe','ab','b',undefined]");
36 shouldBe("regexp4.exec('abacadabe')", "['abe','ab','b',undefined]");
39 shouldBe("regexp5.exec('abacadabe')", "['abe','ab','b','b',undefined,undefined]");
42 shouldBe("regexp6.exec('abcde')", "['ab','ab','b','b',undefined,undefined]");
51 shouldBe("regexp9.exec('asdfjejgsdflaksdfjkeljghkjea')", "['a','a',undefined]");
60 shouldBe("regexp12.exec('Seattle, WA to Buckley, WA')", "['Seattle, WA to Buckley, WA', undefined, 'Seattle', 'WA', undefined, 'Buckley', 'WA']");
63 shouldBe("regexp13.exec('zxcasd;fl\ ^AaaAAaaaf;lrlrzs')", "['AaaAAaaaf;lrlrzs',undefined,'AaaAAaaaf;lrlrzs']")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGSVGElement.idl 42 unsigned long suspendRedraw([Default=Undefined] optional unsigned long maxWaitMilliseconds);
43 void unsuspendRedraw([Default=Undefined] optional unsigned long suspendHandleId);
50 void setCurrentTime([Default=Undefined] optional float seconds);
51 NodeList getIntersectionList([Default=Undefined] optional SVGRect rect,
52 [Default=Undefined] optional SVGElement referenceElement);
53 NodeList getEnclosureList([Default=Undefined] optional SVGRect rect,
54 [Default=Undefined] optional SVGElement referenceElement);
55 boolean checkIntersection([Default=Undefined] optional SVGElement element,
56 [Default=Undefined] optional SVGRect rect);
57 boolean checkEnclosure([Default=Undefined] optional SVGElement element
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
Selection.idl 43 [RaisesException] void collapse([Default=Undefined] optional Node node,
44 [Default=Undefined] optional long index);
49 boolean containsNode([Default=Undefined] optional Node node,
50 [Default=Undefined] optional boolean allowPartial);
51 [RaisesException] void selectAllChildren([Default=Undefined] optional Node node);
53 [RaisesException] void extend([Default=Undefined] optional Node node,
54 [Default=Undefined] optional long offset);
56 [RaisesException] Range getRangeAt([Default=Undefined] optional long index);
58 void addRange([Default=Undefined] optional Range range);
72 void modify([Default=Undefined] optional DOMString alter
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
DocumentXPathEvaluator.idl 21 [RaisesException] XPathExpression createExpression([Default=Undefined] optional DOMString expression,
22 [Default=Undefined] optional XPathNSResolver resolver);
24 [Custom, RaisesException] XPathResult evaluate([Default=Undefined] optional DOMString expression,
25 [Default=Undefined] optional Node contextNode,
26 [Default=Undefined] optional XPathNSResolver resolver,
27 [Default=Undefined] optional unsigned short type,
28 [Default=Undefined] optional XPathResult inResult);
  /external/llvm/test/MC/Disassembler/ARM/
unpredictable-AI1cmp-arm.txt 3 # CHECK: potentially undefined
7 # CHECK: potentially undefined
11 # CHECK: potentially undefined
15 # CHECK: potentially undefined
19 # CHECK: potentially undefined
23 # CHECK: potentially undefined
27 # CHECK: potentially undefined
unpredictable-AExtI-arm.txt 4 # CHECK-WARN: potentially undefined
9 # CHECK-WARN: potentially undefined
14 # CHECK-WARN: potentially undefined
19 # CHECK-WARN: potentially undefined
24 # CHECK-WARN: potentially undefined
29 # CHECK-WARN: potentially undefined
34 # CHECK-WARN: potentially undefined
39 # CHECK-WARN: potentially undefined
44 # CHECK-WARN: potentially undefined
49 # CHECK-WARN: potentially undefined
    [all...]
unpredictable-MRRC2-arm.txt 3 # CHECK: potentially undefined
7 # CHECK: potentially undefined
11 # CHECK: potentially undefined
unpredictable-MRS-arm.txt 3 # CHECK: warning: potentially undefined
7 # CHECK: warning: potentially undefined
11 # CHECK: warning: potentially undefined
15 # CHECK: warning: potentially undefined
  /external/valgrind/main/gdbserver_tests/
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_org/v8/test/webkit/fast/js/
object-prototype-properties-expected.txt 29 PASS Object.prototype.toString.call(undefined) is "[object Undefined]"
31 PASS Object.prototype.toLocaleString.call(undefined) threw exception TypeError: Object.prototype.toLocaleString called on null or undefined.
32 PASS Object.prototype.valueOf.call(undefined) threw exception TypeError: Cannot convert undefined or null to object.
33 PASS Object.prototype.hasOwnProperty.call(undefined, 'hasOwnProperty') threw exception TypeError: Cannot convert undefined or null to object.
34 PASS Object.prototype.propertyIsEnumerable.call(undefined, 'propertyIsEnumerable') threw exception TypeError: Cannot convert undefined or null to object
    [all...]
  /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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
python_unittest_input.py 3 # and one that will generate a pylint error for an undefined variable.
  /external/chromium_org/tools/gyp/test/ios/deployment-target/
check-version-min.c 9 * left undefined.
13 * left undefined.
21 # error __MAC_OS_X_VERSION_MIN_REQUIRED should be undefined
29 # error __IPHONE_OS_VERSION_MIN_REQUIRED should be undefined
  /external/chromium_org/tools/gyp/test/mac/deployment-target/
check-version-min.c 9 * left undefined.
13 * left undefined.
21 # error __MAC_OS_X_VERSION_MIN_REQUIRED should be undefined
29 # error __IPHONE_OS_VERSION_MIN_REQUIRED should be undefined
  /external/chromium_org/v8/test/mjsunit/
regexp-lookahead.js 93 execRE(re, "b", ["b", undefined]);
107 execRE(re, "b", ["b", undefined]);
108 execRE(re, "c", ["c", undefined]);
111 execRE(/^(?:(?=(b))|a)b/, "ab", ["ab", undefined]);
112 execRE(/^(?:(?=(b)(?:(?=(c))|d))|)bd/, "bd", ["bd", "b", undefined]);
125 execRE(re, "4", ["4", undefined]);
126 execRE(re, "x", ["", undefined]);
139 execRE(re, "xy", ["", undefined, undefined]);
144 execRE(re, "xz", ["", "x", undefined]);
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/kde/
var_decl_init.js 28 return (myvar == undefined);
33 return (myvar == undefined);
44 return (myvar == undefined);
51 return (myvar == undefined);
57 return (myvar == undefined);
65 return (myvar == undefined);
72 return (myvar == undefined);
78 return (myvar == undefined);
85 return (myvar == undefined);
91 return (myvar == undefined);
    [all...]
  /external/kernel-headers/original/asm-generic/bitops/
ffz.h 8 * Undefined if no zero exists, so code should check against ~0UL first.

Completed in 1025 milliseconds

1 23 4 5 6 7 8 91011>>