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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/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/chromium_org/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_org/third_party/WebKit/Source/devtools/front_end/search/
AdvancedSearchView.js 2 // Use of this source code is governed by a BSD-style license that can be
11 WebInspector.VBox.call(this);
13 this._searchId = 0;
15 this.element.classList.add("search-view");
17 this._searchPanelElement = this.element.createChild("div", "search-drawer-header");
18 this._searchPanelElement.addEventListener("keydown", this._onKeyDown.bind(this), false);
20 this._searchResultsElement = this.element.createChild("div")
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
box2d.js 6 * This software is provided 'as-is', without any express or implied
8 * arising from the use of this software.
9 * Permission is granted to anyone to use this software for any purpose,
12 * 1. The origin of this software must not be misrepresented; you must not
13 * claim that you wrote the original software. If you use this software
18 * 3. This notice may not be removed or altered from any source distribution.
25 (function(){function F(){F.b2AABB.apply(this,arguments)}function G(){G.b2Bound.apply(this,arguments)}function K(){K.b2BoundValues.apply(this,arguments);this.constructor===K&&this.b2BoundValues.apply(this,arguments)}function y(){y.b2Collision.apply(this,ar (…)
    [all...]
  /external/chromium_org/tools/stats_viewer/
stats_viewer.Designer.cs 2 // Use of this source code is governed by a BSD-style license that can be
31 /// the contents of this method with the code editor.
36 this.listViewCounters = new System.Windows.Forms.ListView();
37 this.columnHeaderName = new System.Windows.Forms.ColumnHeader();
38 this.columnHeaderValue = new System.Windows.Forms.ColumnHeader();
39 this.columnHeaderDelta = new System.Windows.Forms.ColumnHeader();
40 this.pictureBoxTitle = new System.Windows.Forms.PictureBox();
41 this.panelHeader = new System.Windows.Forms.Panel();
42 this.labelKills = new System.Windows.Forms.Label();
43 this.label1 = new System.Windows.Forms.Label();
    [all...]
OpenDialog.Designer.cs 2 // Use of this source code is governed by a BSD-style license that can be
31 /// the contents of this method with the code editor.
35 this.name_box_ = new System.Windows.Forms.TextBox();
36 this.label1 = new System.Windows.Forms.Label();
37 this.button1 = new System.Windows.Forms.Button();
38 this.SuspendLayout();
42 this.name_box_.Location = new System.Drawing.Point(108, 25);
43 this.name_box_.Name = "name_box_";
44 this.name_box_.Size = new System.Drawing.Size(180, 20);
45 this.name_box_.TabIndex = 0;
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/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...]
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_percentage_ = opt_options.left_start_percentage;
18 this.top_start_percentage_ = opt_options.top_start_percentage;
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.body;
24 this.left_start_percentage_ = 0.5
    [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_percentage_ = opt_options.left_anchor_percentage;
17 this.top_anchor_percentage_ = opt_options.top_anchor_percentage;
18 this.scale_factor_ = opt_options.scale_factor;
19 this.speed_ = opt_options.speed;
21 this.element_ = document.body;
22 this.left_anchor_percentage_ = 0.5;
23 this.top_anchor_percentage_ = 0.5
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/layers/
LayerPaintProfilerView.js 2 // Use of this source code is governed by a BSD-style license that can be
12 WebInspector.SplitView.call(this, true, false);
14 this._showImageForLayerCallback = showImageForLayerCallback;
15 this._logTreeView = new WebInspector.PaintProfilerCommandLogView();
16 this._logTreeView.show(this.sidebarElement());
17 this._paintProfilerView = new WebInspector.PaintProfilerView(this._showImage.bind(this));
18 this._paintProfilerView.show(this.mainElement())
    [all...]
  /external/chromium_org/webkit/data/test_shell/sort/
sort.js 30 this.name = name;
31 this.func = func;
32 this.size = size;
33 this.compare_x = null;
34 this.compare_y = null;
35 this.compares = 0;
36 this.swap_x = null;
37 this.swap_y = null;
38 this.swaps = 0;
39 this.start_time = 0
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/
slider.js 2 // Use of this source code is governed by a BSD-style license that can be
22 this.container_ = container;
23 this.onChange_ = opt_onChange;
25 var containerDocument = this.container_.ownerDocument;
27 this.container_.classList.add('slider');
29 this.input_ = containerDocument.createElement('input');
30 this.input_.type = 'range';
31 this.input_.min = min;
32 this.input_.max = max;
33 this.input_.value = value
    [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...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Throttler.js 2 // Use of this source code is governed by a BSD-style license that can be
11 this._timeout = timeout;
12 this._isRunningProcess = false;
13 this._asSoonAsPossible = false;
15 this._process = null;
21 this._isRunningProcess = false;
22 if (this._process)
23 this._innerSchedule(false);
28 delete this._processTimeout;
29 this._asSoonAsPossible = false
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/tests/
this.js 0 this.foo = this.foo + 1; // OK - outside of function.
4 this.foo = this.foo + 1; // OK - global |this|.
11 this.foo = this.foo + 1; // OK - object field in ctor.
14 * @this {TypeOne}
17 this.foo = this.foo + 1; // OK - @this declared
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
function_sequence.js 2 // Use of this source code is governed by a BSD-style license that can be
19 this.currentStepIdx_ = -1;
20 this.failed_ = false;
21 this.steps_ = steps;
22 this.callback_ = callback;
23 this.failureCallback_ = failureCallback;
24 this.logger = logger;
25 this.name = name;
27 this.onError = this.onError_.bind(this)
    [all...]
  /external/chromium_org/chrome/browser/resources/gaia_auth/
main.js 2 // Use of this source code is governed by a BSD-style license that can be
52 // Depending on the key type chosen, this will contain the plain text password
78 this.parentPage_ = params.parentPage || this.PARENT_PAGE;
79 this.gaiaUrl_ = params.gaiaUrl || this.GAIA_URL;
80 this.gaiaPath_ = params.gaiaPath || this.GAIA_PAGE_PATH;
81 this.inputLang_ = params.hl;
82 this.inputEmail_ = params.email
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
ResizerWidget.js 2 // Use of this source code is governed by a BSD-style license that can be
11 WebInspector.Object.call(this);
13 this._isEnabled = true;
14 this._isVertical = true;
15 this._elements = [];
16 this._installDragOnMouseDownBound = this._installDragOnMouseDown.bind(this);
31 return this._isEnabled;
39 this._isEnabled = enabled
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ResponsiveDesignView.js 2 // Use of this source code is governed by a BSD-style license that can be
13 WebInspector.VBox.call(this);
14 this.setMinimumSize(150, 150);
15 this.registerRequiredCSS("responsiveDesignView.css");
16 this.element.classList.add("overflow-hidden");
18 this._responsiveDesignContainer = new WebInspector.VBox();
20 this._createToolbar();
22 this._mediaInspector = new WebInspector.MediaQueryInspector();
23 this._mediaInspectorContainer = this._responsiveDesignContainer.element.createChild("div")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
SourcesView.js 2 // Use of this source code is governed by a BSD-style license that can be
16 WebInspector.VBox.call(this);
17 this.registerRequiredCSS("sourcesView.css");
18 this.element.id = "sources-panel-sources-view";
19 this.setMinimumAndPreferredSizes(50, 25, 150, 100);
21 this._workspace = workspace;
22 this._sourcesPanel = sourcesPanel;
24 this._searchableView = new WebInspector.SearchableView(this);
25 this._searchableView.setMinimalSearchQuerySize(0)
    [all...]
  /external/chromium_org/ui/file_manager/gallery/js/
gallery.js 2 // Use of this source code is governed by a BSD-style license that can be
29 this.context_ = {
48 this.container_ = document.querySelector('.gallery');
49 this.document_ = document;
50 this.metadataCache_ = this.context_.metadataCache;
51 this.volumeManager_ = volumeManager;
52 this.selectedEntry_ = null;
53 this.metadataCacheObserverId_ = null;
54 this.onExternallyUnmountedBound_ = this.onExternallyUnmounted_.bind(this)
    [all...]
  /external/chromium-trace/
script.js 15 document.createElement("div");for(templateElem_.innerHTML=templateData_;templateElem_.hasChildNodes();)document.head.appendChild(templateElem_.removeChild(templateElem_.firstChild));"use strict";var global=this;
16 this.base=function(){function d(a){"/"==a[a.length-1]&&(a=a.substring(0,a.length-1));l=a}function b(a,c){n[a]||(n[a]=[]);for(var e=n[a],f=!1,b=0;b<e.length;b++)e[b]==c&&(f=!0);f||e.push(c)}function a(a,c){q[a]||(q[a]=[]);for(var e=q[a],f=!1,b=0;b<q.length;b++)e[b]==c&&(f=!0);f||e.push(c)}function c(a,c){p[a]||(p[a]=[]);for(var e=p[a],f=!1,b=0;b<e.length;b++)e[b]==c&&(f=!0);f||e.push(c)}function e(){if(!window.FLATTENED&&!m){m=!0;var e=new XMLHttpRequest;e.open("GET","/deps.js",!1);e.send(null);if(200!=
27 base.exportTo("tracing.importer.linux_perf",function(){function d(a){this.importer=a;this.model=a.model}var b=[];d.registerSubtype=function(a){b.push(a)};d.getSubtypeConstructors=function(){return b};d.prototype={__proto__:Object.prototype};return{Parser:d}});"use strict";base.exportTo("base",function(){var d=1;return{GUID:{allocate:function(){return d++}}}});"use strict";base.require("base.guid");
28 base.exportTo("tracing.trace_model",function(){function d(a,c){this.guid_=base.GUID.allocate();this.timestamp_=a;this.value_=c}function b(a,c){this.guid_=base.GUID.allocate();this.name_=a;this.color_=c;this.timestamps_=[];this.samples_=[]}d.prototype={__proto__:Object.prototype,get value(){ (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/main/
ScreencastApp.js 2 // Use of this source code is governed by a BSD-style license that can be
11 WebInspector.App.call(this);
14 this._currentScreencastState = WebInspector.settings.createSetting("currentScreencastState", "disabled");
15 this._toggleScreencastButton = new WebInspector.StatusBarStatesSettingButton(
19 this._currentScreencastState.get(),
20 this._currentScreencastState,
22 this._onStatusBarButtonStateChanged.bind(this));
30 this._rootSplitView = new WebInspector.SplitView(false, true, "InspectorView.screencastSplitViewState", 300, 300);
31 this._rootSplitView.show(rootView.element)
    [all...]
  /external/chromium_org/ui/keyboard/resources/
voice_input.js 2 // Use of this source code is governed by a BSD-style license that can be
6 this.finaResult_ = null;
7 this.recognizing_ = false;
8 this.keyboard_ = keyboard;
9 this.recognition_ = new webkitSpeechRecognition();
10 this.recognition_.onstart = this.onStartHandler.bind(this);
11 this.recognition_.onresult = this.onResultHandler.bind(this)
    [all...]

Completed in 1105 milliseconds

1 2 3 4 5 6 7 8 91011>>