HomeSort by relevance Sort by last modified time
    Searched refs:return (Results 301 - 325 of 3313) sorted by null

<<11121314151617181920>>

  /external/webkit/LayoutTests/dom/xhtml/level3/core/
domimplementationregistry24.js 17 * @return uri identifier of test
20 return "http://www.w3.org/2001/DOM-Test-Suite/level3/core/domimplementationregistry24";
72 DOMImplementationRegistry.getDOMImplementation("") should return an implementation.
82 if(checkInitialization(builder, "domimplementationregistry24") != null) return;
domimplementationregistry25.js 17 * @return uri identifier of test
20 return "http://www.w3.org/2001/DOM-Test-Suite/level3/core/domimplementationregistry25";
73 should return an empty list or a list of DOMImplementation that implements the specified features.
83 if(checkInitialization(builder, "domimplementationregistry25") != null) return;
nodecomparedocumentposition04.js 17 * @return uri identifier of test
20 return "http://www.w3.org/2001/DOM-Test-Suite/level3/core/nodecomparedocumentposition04";
78 Using compareDocumentPosition to check that no flags are set in return when the document position of a
87 if(checkInitialization(builder, "nodecomparedocumentposition04") != null) return;
nodecomparedocumentposition24.js 17 * @return uri identifier of test
20 return "http://www.w3.org/2001/DOM-Test-Suite/level3/core/nodecomparedocumentposition24";
78 Using compareDocumentPosition check if the return value of document position of a Notation node compared to another
87 if(checkInitialization(builder, "nodecomparedocumentposition24") != null) return;
nodeisequalnode04.js 17 * @return uri identifier of test
20 return "http://www.w3.org/2001/DOM-Test-Suite/level3/core/nodeisequalnode04";
78 Create a new Element node in this Document. return its ownerDocument and check if the
87 if(checkInitialization(builder, "nodeisequalnode04") != null) return;
textiselementcontentwhitespace03.js 17 * @return uri identifier of test
20 return "http://www.w3.org/2001/DOM-Test-Suite/level3/core/textiselementcontentwhitespace03";
81 and whitespace, isElementContentWhitespace should return true.
89 if(checkInitialization(builder, "textiselementcontentwhitespace03") != null) return;
  /external/webkit/LayoutTests/fast/dom/DeviceMotion/script-tests/
no-page-cache.js 17 return pageOneOnloadCount;
  /external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/
no-page-cache.js 17 return pageOneOnloadCount;
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
delayed-permission-denied.js 22 return;
  /external/webkit/LayoutTests/fast/dom/HTMLTableSectionElement/script-tests/
rows.js 10 return body.rows.length;
  /external/webkit/LayoutTests/storage/domstorage/script-tests/
clear.js 8 return;
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
bitops-3bit-bits-in-byte.js 10 return c;
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
bitops-3bit-bits-in-byte.js 10 return c;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/
shell.js 24 return ( testcases );
105 return passed;
117 return passed;
123 return passed;
  /external/chromium/chrome/browser/resources/
print_preview.js 59 return;
144 * @return {boolean} true if the number of copies is valid else returns false.
149 return true;
152 return (numericExp.test(copiesFieldText) && Number(copiesFieldText) > 0);
199 * @return {boolean} true if layout is 'landscape'.
202 return $('landscape').checked;
208 * @return {boolean} true if color is 'color'.
211 return $('color').checked;
217 * @return {boolean} true if collate setting is enabled and checked.
221 return !collateField.disabled && collateField.checked
    [all...]
network_menu.js 53 return networkMenuItem;
57 return networkMenuItemProto.cloneNode(true);
72 return this.firstElementChild.firstElementChild.firstElementChild;
80 return this.label_.nextElementSibling;
88 return this.firstElementChild.firstElementChild.nextElementSibling;
96 return this.status_.nextElementSibling;
181 return !this.action_.classList.contains('hidden');
315 return;
324 return;
340 return new NetworkMenuItem()
    [all...]
  /development/scripts/app_engine_server/gae_shell/static/
shell.js 63 * @return {XmlHttpRequest?} a new XmlHttpRequest
67 return new XMLHttpRequest();
70 return new ActiveXObject('Msxml2.XMLHTTP');
72 return new ActiveXObject('Microsoft.XMLHTTP');
76 return null;
85 * @return {Boolean} false to tell the browser not to submit the form.
101 return false;
106 return false;
117 return this.runStatement();
162 * @return {Boolean} false to tell the browser not to submit the form
    [all...]
  /external/chromium/net/data/proxy_resolver_v8_unittest/
bindings.js 22 // will return |null|, whereas those that have called through to the C++
23 // bindings will return '127.0.0.1'.
58 return "DIRECT";
  /external/v8/test/mjsunit/compiler/
control-flow-0.js 29 return (42 + (0 == 1 ? 1 : 2));
34 return (x + (0 == 1 ? 1 : 2));
39 return ((x + 1) + (0 == 1 ? 1 : 2));
deopt-args.js 31 return x.f(0,1,2);
35 return 42;
46 object.f = function(a,b,c) { return 87; };
property-calls.js 30 function f(o) { return o.g(); }
31 function g() { return 42; }
40 object = { g: function() { return 87; } };
switch-bailout.js 34 case "foo": return 87;
35 case "bar": return 42;
37 return 99;
  /external/v8/test/mjsunit/regress/
regress-3199913.js 32 'a' : function (x, y) { return 'called a(' + x + ', ' + y + ')' },
33 'b' : function (x, y) { return 'called b(' + x + ', ' + y + ')' }
40 return y[(this.a == 1 ? "a" : "b")](0, 1);
  /external/v8/test/mjsunit/
string-charat.js 30 function getTwoByteString() { return "\u1234t"; }
31 function getCons() { return "testtesttesttest" + getTwoByteString() }
33 var slowIndex1 = { valueOf: function() { return 1; } };
34 var slowIndex2 = { toString: function() { return "2"; } };
35 var slowIndexOutOfRange = { valueOf: function() { return -1; } };
80 basicTest(function() { return s; }, s.length);
101 toString: function() { return "012"; },
102 valueOf: function() { return "should not be called"; }
131 basicTest(function() { return s; }, s.length);
136 var badToString = function() { return []; };
    [all...]
with-parameter-access.js 28 // Return a parameter from inside a with statement.
31 return x;
41 return x;
44 return h();

Completed in 3080 milliseconds

<<11121314151617181920>>