HomeSort by relevance Sort by last modified time
    Searched refs:this (Results 1 - 25 of 12853) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/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...]
drag.js 2 // Use of this source code is governed by a BSD-style license that can be
5 // This file provides the DragAction object, which performs drag on a page
13 this.element_ = opt_options.element;
14 this.left_start_ratio_ = opt_options.left_start_ratio;
15 this.top_start_ratio_ = opt_options.top_start_ratio;
16 this.left_end_ratio_ = opt_options.left_end_ratio;
17 this.top_end_ratio_ = opt_options.top_end_ratio;
18 this.speed_ = opt_options.speed;
19 this.gesture_source_type_ = opt_options.gesture_source_type;
30 // This class performs drag action using given start and end positions
    [all...]
scroll_bounce.js 2 // Use of this source code is governed by a BSD-style license that can be
17 var self = this;
19 this.beginMeasuringHook = function() {};
20 this.endMeasuringHook = function() {};
22 this.callback_ = opt_callback;
26 this.options_ = options;
27 // Assign this.element_ here instead of constructor, because the constructor
28 // ensures this method will be called after the document is loaded.
29 this.element_ = this.options_.element
    [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+"])";
MissingTokenException.js 4 this, expecting, input);
5 this.inserted = inserted;
13 return this.expecting;
17 if (org.antlr.lang.isValue(this.inserted) &&
18 org.antlr.lang.isValue(this.token))
20 return "MissingTokenException(inserted "+this.inserted+" at "+this.token.getText()+")";
22 if ( org.antlr.lang.isValue(this.token) ) {
23 return "MissingTokenException(at "+this.token.getText()+")";
MismatchedTokenException.js 3 this.expecting = org.antlr.runtime.Token.INVALID_TOKEN_TYPE;
6 this, input);
7 this.expecting = expecting;
16 this.getUnexpectedType() + "!=" + this.expecting + ")";
  /external/v8/tools/turbolizer/
node.js 2 // Use of this source code is governed by a BSD-style license that can be
17 return this.control;
20 return this.opcode == 'Parameter' || this.opcode.endsWith('Constant');
23 return this.live !== false;
26 return this.opcode.startsWith('JS');
29 if (this.isJavaScript) return false;
30 return this.opcode.endsWith('Phi') ||
31 this.opcode.startsWith('Boolean') ||
32 this.opcode.startsWith('Number') |
    [all...]
selection.js 2 // Use of this source code is governed by a BSD-style license that can be
6 this.handler = handler;
7 this.selectionBase = null;
8 this.lastSelection = null;
9 this.selection = new Set();
14 return this.selection.size == 0;
19 var handler = this.handler;
20 this.selectionBase = null;
21 this.lastSelection = null;
22 handler.select(this.selection, false)
    [all...]
view.js 2 // Use of this source code is governed by a BSD-style license that can be
9 this.divElement = d3.select("#" + id);
10 this.divNode = this.divElement[0][0];
11 this.parentNode = this.divNode.parentNode;
19 this.parentNode.appendChild(this.divElement[0][0]);
20 this.initializeContent(data, rememberedSelection);
21 this.resizeToParent()
    [all...]
edge.js 2 // Use of this source code is governed by a BSD-style license that can be
12 this.target = target;
13 this.source = source;
14 this.index = index;
15 this.type = type;
16 this.backEdgeNumber = 0;
17 this.visible = isEdgeInitiallyVisible(target, index, source, type);
21 return this.source.id + "," + this.index + "," + this.target.id
    [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/google/marlin/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/marlin/self-extractors_sailfish/
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.
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonErrorNode.js 12 this.input = input;
13 this.start = start;
14 this.stop = stop;
15 this.trappedException = e;
29 if ( this.start instanceof org.antlr.runtime.Token ) {
30 var i = this.start.getTokenIndex();
31 var j = this.stop.getTokenIndex();
32 if ( this.stop.getType() === org.antlr.runtime.Token.EOF ) {
33 j = this.input.size();
35 badText = this.input.toString(i, j)
    [all...]
  /external/flatbuffers/tests/
monster_test_generated.js 53 this.bb = null;
58 this.bb_pos = 0;
67 this.bb_pos = i;
68 this.bb = bb;
69 return this;
104 this.bb = null;
109 this.bb_pos = 0;
118 this.bb_pos = i;
119 this.bb = bb;
120 return this;
    [all...]

Completed in 641 milliseconds

1 2 3 4 5 6 7 8 91011>>