OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:targetData
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/page/
TouchDisambiguation.cpp
130
TouchTargetData&
targetData
= touchTargets.add(node, TouchTargetData()).storedValue->value;
131
targetData
.windowBoundingBox = boundingBoxForEventNodes(node);
132
targetData
.score = scoreTouchTarget(touchPoint, touchPointPadding,
targetData
.windowBoundingBox);
133
bestScore = std::max(bestScore,
targetData
.score);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
DebuggerWorkspaceBinding.js
17
/** @type {!Map.<!WebInspector.Target, !WebInspector.DebuggerWorkspaceBinding.
TargetData
>} */
33
this._targetToData.set(target, new WebInspector.DebuggerWorkspaceBinding.
TargetData
(target, this));
41
var
targetData
= this._targetToData.get(target);
42
targetData
._dispose();
162
var
targetData
= this._targetToData.get(target);
163
return
targetData
? /** @type {?WebInspector.DebuggerModel.Location} */ (
targetData
._uiLocationToRawLocation(uiSourceCode, lineNumber, columnNumber)) : null;
205
var
targetData
= this._targetToData.get(target);
206
return
targetData
?
targetData
._liveEditSupport : null
[
all
...]
Completed in 77 milliseconds