/external/v8/test/mjsunit/es6/ |
math-fround.js | 2 // Use of this source code is governed by a BSD-style license that can be 8 Float32Array = function(x) { this[0] = 0; }; 50 this.sign_bit = sign_bit & 1; 51 this.exponent_bits = exponent_bits & ((1 << 11) - 1); 52 this.mantissa_23_bits = mantissa_23_bits & ((1 << 23) - 1); 53 this.mantissa_29_bits = mantissa_29_bits & ((1 << 29) - 1); 62 var sign = this.sign_bit ? -1 : 1; 63 var exponent = this.exponent_bits - 1023; 65 var mantissa = 1 + this.mantissa_23_bits * mantissa_23_shift + 66 this.mantissa_29_bits * mantissa_29_shift [all...] |
/external/v8/test/mjsunit/regress/ |
regress-3969.js | 2 // Use of this source code is governed by a BSD-style license that can be 8 this.property = "OK"; 9 this.o2 = 1; 13 this.inner = inner; 20 return this.inner.property; 31 // The key is that this lets inner's map die while keeping outer's map alive.
|
readonly3.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 this.x = 0; 32 this.__proto__ = p; 47 var o1 = c(this); 48 var o2 = c(this); 51 s(c(this)); [all...] |
regress-crbug-424142.js | 2 // Use of this source code is governed by a BSD-style license that can be 11 this.x = 0; 14 this.x += y; 15 return this.x;
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
RewriteCardinalityException.js | 2 this.elementDescription = elementDescription; 6 * This signifies a case where the cardinality of two or more elements 11 if ( org.antlr.lang.isString(this.elementDescription) ) { 12 return this.elementDescription;
|
RewriteRuleSubtreeStream.js | 3 sup.constructor.apply(this, arguments); 9 * This is used instead of next() when the result has to be a 18 * a proper way to refactor. This needs to always call dup node 22 var n = this.size(), 24 if ( this.dirty || (this.cursor>=n && n===1) ) { 26 // since this is for making root nodes). 27 el = this._next(); 28 return this.adaptor.dupNode(el); 31 el = this._next() [all...] |
RewriteRuleTokenStream.js | 3 sup.constructor.apply(this, arguments); 10 var t = this._next(); 11 return this.adaptor.create(t); 15 return this._next(); 19 * This way we can do hetero tree nodes in rewrite.
|
/external/v8/test/mjsunit/compiler/ |
regress-4206.js | 2 // Use of this source code is governed by a BSD-style license that can be 20 var min = Module(this).TernaryMin; 21 var max = Module(this).TernaryMax;
|
/external/v8/test/mjsunit/ |
global-deleted-property-ic.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. 30 // Load x from the prototype of this. Make sure to initialize the IC. 31 this.__proto__ = { x: 42 }; 32 for (var i = 0; i < 3; i++) assertEquals(42, LoadX(this)); 35 this.x = 87; 36 for (var i = 0; i < 3; i++) assertEquals(87, LoadX(this)); [all...] |
prototype-changes.js | 2 // Use of this source code is governed by a BSD-style license that can be 8 this.a = "a"; 13 this.b = "b"; 18 this.c = "c";
|
/external/v8/test/webkit/ |
function-call-aliased.js | 8 // notice, this list of conditions and the following disclaimer. 10 // notice, this list of conditions and the following disclaimer in the 13 // THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY 21 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 25 "This tests that we can correctly call Function.prototype.call" 29 var myFunction = function (arg1) { return [this, "myFunction", arg1] }; 30 var myFunctionWithCall = function (arg1) { return [this, "myFunctionWithCall", arg1] }; 31 myFunctionWithCall.call = function (arg1) { return [this, "myFunctionWithCall.call", arg1] }; 35 shouldBe("myFunction('arg1')", '[this, "myFunction", "arg1"]'); 37 shouldBe("myFunction.call()", '[this, "myFunction", undefined]') [all...] |
/build/kati/testcase/ |
override_rule.mk | 4 # The behavior for this depends on the version of GNU make. It looks
|
wildcard_with_var.mk | 5 # expect Makefile, since runtest.rb put this as Makefile in new dir.
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
IndexOutOfBoundsExceptions.js | 2 org.antlr.runtime.IndexOutOfBoundsException.superclass.constructor.call(this, m);
|
/external/chromium-libpac/test/js-unittest/ |
side_effects.js | 2 // We write it this way so if the script gets loaded twice,
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
timeline.js | 4 // you may not use this file except in compliance with the License. 19 this._players = []; 20 this.currentTime = undefined; 24 // FIXME: This needs to return the wrapped players in Web Animations Next 25 // TODO: Does this need to be sorted? 28 this._discardPlayers(); 29 return this._players.slice(); 32 this._players = this._players.filter(function(player) { 38 this._players.push(player) [all...] |
/external/v8/src/js/ |
harmony-species.js | 2 // Use of this source code is governed by a BSD-style license that can be 12 // It is important that this file is run after src/js/typedarray.js, 24 return this; 28 return this; 32 return this; 36 return this; 40 return this; 44 return this; 48 return this;
|
regexp.js | 2 // Use of this source code is governed by a BSD-style license that can be 105 if (!IS_REGEXP(this)) { 107 "RegExp.prototype.compile", this); 117 RegExpInitialize(this, pattern, flags); 129 // This is kind of performance sensitive, so we want to avoid unnecessary 169 if (!IS_REGEXP(this)) { 171 'RegExp.prototype.exec', this); 175 var lastIndex = this.lastIndex; 181 var updateLastIndex = REGEXP_GLOBAL(this) || REGEXP_STICKY(this); [all...] |
/external/v8/test/mjsunit/es7/ |
array-includes-to-object-sloppy.js | 2 // Use of this source code is governed by a BSD-style license that can be 6 // https://github.com/tc39/Array.prototype.includes/blob/master/test/number-this.js 9 // Array.prototype.includes should use ToObject on this, so that when called 17 assertEquals("object", typeof this);
|
/external/v8/test/test262/ |
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 function fnGlobalObject() { return (function() { return this; })(); } 32 var $this = this; 36 this.id = id; 37 this.path = path [all...] |
/external/valgrind/gdbserver_tests/ |
mcclean_after_fork.stderrB.exp | 3 monitor command request to kill this process
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic4x/ |
rebuild.sh | 6 ; Please use ./rebuild.sh to rebuild this file
|
/build/tools/droiddoc/templates-sdk-dev/assets/js/ |
docs.js | 36 // finding the relative URL to this page. This will allow us to find links on the page 37 // leading back to this page. 75 // jump to previous topic in this section 79 // jump to this section's index page (if it exists) 111 // this means we're on a class landing page 115 // jump to the next topic in this section (if it exists) 119 // no more topics in this section, jump to the first topic in the next section 186 var langDescr = $(this).attr(lang + "-description"); 192 $classDescriptions[index] = $(this).attr("description") [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/ |
qpol.py | 0 # This file was automatically generated by SWIG (http://www.swig.org). 4 # Do not make changes to this file unless you know what you are doing--modify 38 if (name == "thisown"): return self.this.own(value) 39 if (name == "this"): 54 if (name == "thisown"): return self.this.own() 60 try: strthis = "proxy of " + self.this.__repr__() 128 this = _qpol.new_qpol_policy_t(*args) 129 try: self.this.append(this) 130 except: self.this = thi [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(); 39 this.c_entries_ = {}; 107 this.codeMap_.addLibrary(startAddr, entry) [all...] |