/external/v8/test/mjsunit/regress/ |
regress-470804.js | 2 // Use of this source code is governed by a BSD-style license that can be 8 this.foo00 = 0; 9 this.foo01 = 0; 10 this.foo02 = 0; 11 this.foo03 = 0; 12 this.foo04 = 0; 13 this.foo05 = 0; 14 this.foo06 = 0; 15 this.foo07 = 0; 16 this.foo08 = 0 [all...] |
/external/v8/test/mjsunit/compiler/ |
alloc-object-huge.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 // Test that huge constructors (more than 256 this assignments) are 51 // The huge constructor, nothing interesting beyond this point. 53 this.foo1 = 1; 54 this.foo2 = 2; 55 this.foo3 = 3 [all...] |
/external/v8/test/mjsunit/ |
large-object-allocation.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.a = i; 33 this.b = i; 34 this.c = i; 35 this.d = i; 36 this.e = i [all...] |
/external/chromium-trace/catapult/experimental/heatmap/ |
heatmap.js | 2 this.canvas = canvas.get(0); 3 this.context = this.canvas.getContext('2d'); 4 this.scaleCanvas(); 6 this.calculate(data); 7 this.installInputHandlers(canvas, resolutionSlider); 9 this.draw();
|
draw.js | 2 this.drawHeatmap(); 3 for (var i = 0; i < this.drawTraces.length; ++i) 4 if (this.drawTraces[i]) 5 this.drawTrace(i, 1); 9 this.context.clearRect(0, 0, this.w, this.h); 11 this.context.save(); 12 this.context.scale(this.w / this.revisions.length, this.h / this.resolution) [all...] |
renderer.js | 6 this.canvas = canvas.get(0); 7 this.context = this.canvas.getContext('2d'); 8 this.scaleCanvas(); 10 this.colors = colors; 11 this.resolution = this.h / DEFAULT_RESOLUTION; 13 this.calculate(data); 14 this.installInputHandlers(canvas, resolutionSlider); 16 this.draw() [all...] |
/external/autotest/client/deps/webgl_mpd/src/ |
cros_fps.js | 2 this.seq = seq; 3 this.startTime = startTime; 4 this.frameElapsedTime = frameElapsedTime; 5 this.jsElapsedTime = jsElapsedTime; 9 this.totalElapsedTime = 0.0; 10 this.totalRenderTime = 0.0; 11 this.totalFrames = 0; 12 this.buffer_size = 120; 13 this.frameDataBuf = new Array(); 18 this.totalFrameElapsedTime += frameElapsedTime [all...] |
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
player.js | 4 // you may not use this file except in compliance with the License. 20 this.target = target; 21 this.currentTime = currentTime; 22 this.timelineTime = timelineTime; 24 this.type = 'finish'; 25 this.bubbles = false; 26 this.cancelable = false; 27 this.currentTarget = target; 28 this.defaultPrevented = false; 29 this.eventPhase = Event.AT_TARGET [all...] |
web-animations-next-player.js | 4 // you may not use this file except in compliance with the License. 17 this.source = source; 20 source.player = this; 22 this._isGroup = false; 23 this._player = null; 24 this._childPlayers = []; 25 this._callback = null; 26 this._rebuildUnderlyingPlayer(); 28 this._player.cancel(); 34 if (this._player) [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/internal/actions/ |
swipe.js | 2 // Use of this source code is governed by a BSD-style license that can be 10 this.element_ = opt_options.element; 11 this.left_start_ratio_ = opt_options.left_start_ratio; 12 this.top_start_ratio_ = opt_options.top_start_ratio; 13 this.direction_ = opt_options.direction; 14 this.distance_ = opt_options.distance; 15 this.speed_ = opt_options.speed; 17 this.element_ = document.body; 18 this.left_start_ratio_ = 0.5; 19 this.top_start_ratio_ = 0.5 [all...] |
tap.js | 2 // Use of this source code is governed by a BSD-style license that can be 11 this.element_ = opt_options.element; 12 this.left_position_percentage_ = opt_options.left_position_percentage; 13 this.top_position_percentage_ = opt_options.top_position_percentage; 14 this.duration_ms_ = opt_options.duration_ms; 15 this.gesture_source_type_ = opt_options.gesture_source_type; 17 this.element_ = document.body; 18 this.left_position_percentage_ = 0.5; 19 this.top_position_percentage_ = 0.5; 20 this.duration_ms_ = 50 [all...] |
pinch.js | 2 // Use of this source code is governed by a BSD-style license that can be 5 // This file provides the PinchAction object, which zooms into or out of a 15 this.element_ = opt_options.element; 16 this.left_anchor_ratio_ = opt_options.left_anchor_ratio; 17 this.top_anchor_ratio_ = opt_options.top_anchor_ratio; 18 this.scale_factor_ = opt_options.scale_factor; 19 this.speed_ = opt_options.speed; 21 this.element_ = document.body; 22 this.left_anchor_ratio_ = 0.5; 23 this.top_anchor_ratio_ = 0.5 [all...] |
scroll.js | 2 // Use of this source code is governed by a BSD-style license that can be 5 // This file provides the ScrollAction object, which scrolls a page 16 this.element_ = opt_options.element; 17 this.left_start_ratio_ = opt_options.left_start_ratio; 18 this.top_start_ratio_ = opt_options.top_start_ratio; 19 this.direction_ = opt_options.direction; 20 this.speed_ = opt_options.speed; 21 this.gesture_source_type_ = opt_options.gesture_source_type; 23 this.element_ = document.scrollingElement || document.body; 24 this.left_start_ratio_ = 0.5 [all...] |
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/jsdom/ |
parsing_unit.js | 4 this.parser = parser; 5 this.suspended = false; 6 this.parsingLoopLock = false; 7 this.callback = null; 11 if (this.suspended && suspend) 14 else if (!this.suspended && !suspend) 21 this.suspended = this._stateGuard(true); 23 return this; 27 this.suspended = this._stateGuard(false) [all...] |
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tokenization/ |
tokenizer.js | 93 //OPTIMIZATION: these utility functions should not be moved out of this module. V8 Crankshaft will not inline 94 //this functions if they will be situated in another module due to context switch. 95 //Always perform inlining check before modifying this functions ('node --trace-inlining'). 130 //So, we need to workaround this manually. 146 this.disableEntitiesDecoding = false; 148 this.preprocessor = new Preprocessor(html); 150 this.tokenQueue = []; 152 this.allowCDATA = false; 154 this.state = DATA_STATE; 155 this.returnState = '' [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
CommonToken.js | 4 this.charPositionInLine = -1; // set to invalid position 5 this.channel = 0; // org.antlr.runtime.CommonToken.DEFAULT_CHANNEL 6 this.index = -1; 10 this.type = arguments[0]; 13 this.text = oldToken.getText(); 14 this.type = oldToken.getType(); 15 this.line = oldToken.getLine(); 16 this.index = oldToken.getTokenIndex(); 17 this.charPositionInLine = oldToken.getCharPositionInLine(); 18 this.channel = oldToken.getChannel() [all...] |
MismatchedRangeExceptions.js | 3 return this; 7 this, input); 8 this.a = a; 9 this.b = b; 17 this.getUnexpectedType()+" not in ["+this.a+","+this.b+"])";
|
NoViableAltException.js | 6 org.antlr.runtime.NoViableAltException.superclass.constructor.call(this, input); 7 this.grammarDecisionDescription = grammarDecisionDescription; 8 this.decisionNumber = decisionNumber; 9 this.stateNumber = stateNumber; 16 if ( this.input instanceof org.antlr.runtime.CharStream ) { 17 return "NoViableAltException('"+this.getUnexpectedType()+"'@["+this.grammarDecisionDescription+"])"; 20 return "NoViableAltException("+this.getUnexpectedType()+"@["+this.grammarDecisionDescription+"])";
|
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tree_construction/ |
open_element_stack.js | 84 this.stackTop = -1; 85 this.items = []; 86 this.current = document; 87 this.currentTagName = null; 88 this.currentTmplContent = null; 89 this.tmplCount = 0; 90 this.treeAdapter = treeAdapter; 97 for (var i = this.stackTop; i >= 0; i--) { 98 if (this.items[i] === element) { 108 if (this.currentTagName !== $.TEMPLATE [all...] |
/device/asus/fugu/self-extractors/ |
PART1 | 5 echo The license for this software will now be displayed. 6 echo You must agree to this license before using this software.
|
/device/google/dragon/self-extractors/ |
PART1 | 5 echo The license for this software will now be displayed. 6 echo You must agree to this license before using this software.
|
/device/htc/flounder/self-extractors/ |
PART1 | 5 echo The license for this software will now be displayed. 6 echo You must agree to this license before using this software.
|
/device/huawei/angler/self-extractors/ |
PART1 | 5 echo The license for this software will now be displayed. 6 echo You must agree to this license before using this software.
|
/device/lge/bullhead/self-extractors/ |
PART1 | 5 echo The license for this software will now be displayed. 6 echo You must agree to this license before using this software.
|
/device/linaro/hikey/self-extractors/ |
PART1 | 5 echo The license for this software will now be displayed. 6 echo You must agree to this license before using this software.
|