Searched refs:opt_options (Results 1 – 12 of 12) sorted by relevance
/external/chromium_org/ui/file_manager/image_loader/ |
D | image_loader_client.js | 131 url, callback, opt_options, opt_isValid) { argument 132 opt_options = opt_options || {}; 158 var cacheKey = ImageLoaderClient.Cache.createKey(url, opt_options); 159 if (opt_options.cache) { 162 var cachedData = this.cache_.loadImage(cacheKey, opt_options.timestamp); 177 var request = opt_options; 184 request.timestamp = opt_options.timestamp; 190 if (result.status == 'success' && opt_options.cache) 191 this.cache_.saveImage(cacheKey, result.data, opt_options.timestamp); 232 ImageLoaderClient.Cache.createKey = function(url, opt_options) { argument [all …]
|
/external/chromium_org/tools/telemetry/telemetry/page/actions/ |
D | swipe.js | 8 function SwipeGestureOptions(opt_options) { argument 9 if (opt_options) { 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; 42 SwipeAction.prototype.start = function(opt_options) { argument 43 this.options_ = new SwipeGestureOptions(opt_options);
|
D | pinch.js | 13 function PinchGestureOptions(opt_options) { argument 14 if (opt_options) { 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; 46 PinchAction.prototype.start = function(opt_options) { argument 47 this.options_ = new PinchGestureOptions(opt_options);
|
D | tap.js | 9 function TapGestureOptions(opt_options) { argument 10 if (opt_options) { 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; 40 TapAction.prototype.start = function(opt_options) { argument 41 this.options_ = new TapGestureOptions(opt_options);
|
D | scroll.js | 14 function ScrollGestureOptions(opt_options) { argument 15 if (opt_options) { 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; 82 ScrollAction.prototype.start = function(opt_options) { argument 83 this.options_ = new ScrollGestureOptions(opt_options);
|
/external/chromium-trace/trace-viewer/src/tracing/analysis/ |
D | object_snapshot_view.js | 44 opt_options) { argument 47 var options = opt_options || {
|
D | object_instance_view.js | 44 opt_options) { argument 47 var options = opt_options || {
|
D | analysis_view_test.js | 21 typeConstructor, opt_options, fn) { argument 22 registrar.register(typeName, typeConstructor, opt_options);
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
D | dom_util.js | 131 cvox.DomUtil.isVisible = function(node, opt_options) { argument 132 opt_options = opt_options || {}; 133 if (typeof(opt_options.checkAncestors) === 'undefined') { 134 opt_options.checkAncestors = true; 136 if (typeof(opt_options.checkDescendants) === 'undefined') { 137 opt_options.checkDescendants = true; 151 if (opt_options.checkAncestors && 157 var recursive = opt_options.checkDescendants;
|
D | chrome_extension_externs.js | 695 chrome.tts.speak = function(utterance, opt_options, opt_callback) {}; argument
|
/external/chromium_org/remoting/webapp/js_proto/ |
D | chrome_proto.js | 61 extensionId, message, opt_options, opt_callback) {}; argument
|
/external/chromium_org/ui/file_manager/file_manager/common/js/ |
D | util.js | 867 util.loadImage = function(image, url, opt_options, opt_isValid) { argument 870 opt_options || {},
|