/external/chromium/chrome/browser/resources/net_internals/ |
dataview.js | 2 // Use of this source code is governed by a BSD-style license that can be 6 * This view displays options for importing/exporting the captured data. Its 28 DivView.call(this, mainBoxId); 30 this.textPre_ = document.getElementById(outputTextBoxId); 35 this.onSetSecurityStripping_.bind(this, securityStrippingCheckbox); 39 this.onSetByteLogging_.bind(this, byteLoggingCheckbox); 42 exportTextButton.onclick = this.onExportToText_.bind(this); [all...] |
serviceprovidersview.js | 2 // Use of this source code is governed by a BSD-style license that can be 6 * This view displays information on Winsock layered service providers and 19 DivView.call(this, mainBoxId); 24 this.serviceProvidersTbody_ = 26 this.namespaceProvidersTbody_ = 29 g_browser.addServiceProvidersObserver(this); 36 this.updateServiceProviders_(serviceProviders['service_providers']); 37 this.updateNamespaceProviders_(serviceProviders['namespace_providers']); 106 this.serviceProvidersTbody_.innerHTML = ''; 110 var tr = addNode(this.serviceProvidersTbody_, 'tr') [all...] |
util.js | 2 // Use of this source code is governed by a BSD-style license that can be 147 this.rows_ = []; 148 this.hasHeaderRow_ = false; 149 this.title_ = null; 156 this.text = '' + value; 157 this.link = null; 158 this.alignRight = false; 159 this.allowOverflow = false; 166 this.rows_.push([]); 175 var r = this.rows_[this.rows_.length - 1] [all...] |
/external/v8/test/es5conform/ |
harness-adapt.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 var global = this; 31 this.ut = ut; 35 return this.ut.res; 41 return this.message; 45 sth.call(this, global) [all...] |
/external/v8/test/mjsunit/compiler/ |
simple-global-access.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32 this.__defineGetter__("g4", function () { return 45; }); 34 function f1() { this.x = this.y = this.z = g1; } 35 function f2() { this.x = g1; this.y = g2; this.z = g3; [all...] |
/external/v8/test/mjsunit/regress/ |
regress-1973.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 // Test that getters and setters pass unwrapped this values in strict mode 29 // and wrapped this values is non-strict mode. 33 // Check that strict mode passes unwrapped this value. 36 get: function() { "use strict"; assertSame(strict_type, typeof this); }, 37 set: function() { "use strict"; assertSame(strict_type, typeof this); } [all...] |
regress-1081309.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 38 this.response_ = eval('(' + json + ')'); 39 this.refs_ = []; 40 if (this.response_.refs) { 41 for (var i = 0; i < this.response_.refs.length; i++) { 42 this.refs_[this.response_.refs[i].handle] = this.response_.refs[i] [all...] |
/external/v8/test/mjsunit/ |
this.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 function f() { return this; } 30 assertFalse(this == null); // the global object shouldn't be null or undefined 31 assertEquals('[object global]', String(this)); 33 assertTrue(this === this); [all...] |
arguments-apply.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33 return this; 38 return ReturnArguments.apply(this, arguments); 51 return object.f.apply(this, arguments); 64 return ReturnArguments.apply(this, arguments); 79 assertSame(this, NonObjectReceiver(null)) [all...] |
strict-mode-implicit-receiver.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32 function get_y() { return this.y; } 33 function strict_get_y() { "use strict"; return this.y; } 36 for (var i = 0; i < 10; i++) assertEquals(3, strict_get_y.call(this)); 50 function get_y() { return this.y; } 51 function strict_get_y() { "use strict"; return this.y; [all...] |
top-level-assignments.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 83 this.x = x; 84 this.y = y; 87 Calculator.prototype.sum = function() { return this.x + this.y; }; 88 Calculator.prototype.difference = function() { return this.x - this.y; } [all...] |
/external/v8/tools/ |
profile.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 36 this.codeMap_ = new CodeMap(); 37 this.topDownTree_ = new CallTree(); 38 this.bottomUpTree_ = new CallTree(); 106 this.codeMap_.addLibrary(startAddr, entry); 122 this.codeMap_.addStaticCode(startAddr, entry) [all...] |
profile_view.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 36 this.samplingRate = samplingRate; 50 var samplingRate = this.samplingRate; 51 var createViewNode = this.createViewNode; 70 var view = this.createView(head); 113 this.head = head [all...] |
/cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/ |
code-load.js | 7 // notice, this list of conditions and the following disclaimer. 9 // copyright notice, this list of conditions and the following 14 // from this software without specific prior written permission. 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33 // you may not use this file except in compliance with the License. 49 // a copy of this software and associated documentation files (the 56 // The above copyright notice and this permission notice shall be 146 var BASE_JS = "var COMPILED=!0,goog=goog||{};goog.global=this;goog.DEBUG=!0;goo\ 226 urn a.apply(this,b)}};goog.mixin=function(a,b){for(var c in b)a[c]=b[c]};goog.n [all...] |