OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AnchorBox
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
DOMExtension.js
476
function
AnchorBox
(x, y, width, height)
485
* @param {!
AnchorBox
} box
486
* @return {!
AnchorBox
}
488
AnchorBox
.prototype.relativeTo = function(box)
490
return new
AnchorBox
(
496
* @return {!
AnchorBox
}
498
AnchorBox
.prototype.relativeToElement = function(element)
504
* @param {?
AnchorBox
}
anchorBox
507
AnchorBox
.prototype.equals = function(anchorBox
[
all
...]
Popover.js
53
* @param {!Element|!
AnchorBox
} anchor
65
* @param {!Element|!
AnchorBox
} anchor
77
* @param {!Element|!
AnchorBox
} anchor
142
* @param {!Element|!
AnchorBox
} anchorElement
162
var
anchorBox
= anchorElement instanceof
AnchorBox
? anchorElement : anchorElement.boxInWindow(window);
163
anchorBox
=
anchorBox
.relativeToElement(container);
167
var roomAbove =
anchorBox
.y;
168
var roomBelow = totalHeight -
anchorBox
.y - anchorBox.height
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
FilterBar.js
338
var
anchorBox
= this._filterInputElement.boxInWindow().relativeTo(new
AnchorBox
(-3, 0));
339
this._suggestBox.updateSuggestions(
anchorBox
, suggestions, 0, true, "");
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
JavaScriptSourceFrame.js
509
var
anchorBox
= new
AnchorBox
(leftCorner.x, leftCorner.y, rightCorner.x - leftCorner.x, leftCorner.height);
510
anchorBox
.highlight = {
515
anchorBox
.forSelection = true;
516
return
anchorBox
;
532
var
anchorBox
= new
AnchorBox
(leftCorner.x, leftCorner.y, rightCorner.x - leftCorner.x, leftCorner.height);
534
anchorBox
.highlight = {
540
return
anchorBox
;
543
_resolveObjectForPopover: function(
anchorBox
, showCallback, objectGroupName
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
SourceFrame.js
111
this._errorWavePopoverAnchor = new
AnchorBox
(event.clientX, event.clientY, 1, 1);
CodeMirrorTextEditor.js
[
all
...]
Completed in 170 milliseconds