HomeSort by relevance Sort by last modified time
    Searched refs:anchorBox (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
SuggestBox.js 80 * @param {!AnchorBox} anchorBox
82 setPosition: function(anchorBox)
84 this._updateBoxPosition(anchorBox);
88 * @param {!AnchorBox} anchorBox
90 _updateBoxPosition: function(anchorBox)
93 if (this._lastAnchorBox && this._lastAnchorBox.equals(anchorBox))
95 this._lastAnchorBox = anchorBox;
99 anchorBox = anchorBox.relativeToElement(container)
    [all...]
Popover.js 56 * @param {!Element|!AnchorBox} anchor
68 * @param {!Element|!AnchorBox} anchor
80 * @param {!Element|!AnchorBox} anchor
141 * @param {!Element|!AnchorBox} anchorElement
161 var anchorBox = anchorElement instanceof AnchorBox ? anchorElement : anchorElement.boxInWindow(window);
162 anchorBox = anchorBox.relativeToElement(container);
166 var roomAbove = anchorBox.y;
167 var roomBelow = totalHeight - anchorBox.y - anchorBox.height
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
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...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
EllipsisBox.cpp 109 InlineBox* anchorBox = lastLine->lastChild();
110 if (!anchorBox || !anchorBox->renderer().style()->isLink())
113 return anchorBox;
RenderDeprecatedFlexibleBox.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
JavaScriptSourceFrame.js 440 var anchorBox = new AnchorBox(leftCorner.x, leftCorner.y, rightCorner.x - leftCorner.x, leftCorner.height);
441 anchorBox.highlight = {
446 anchorBox.forSelection = true;
447 return anchorBox;
463 var anchorBox = new AnchorBox(leftCorner.x, leftCorner.y, rightCorner.x - leftCorner.x, leftCorner.height);
465 anchorBox.highlight = {
471 return anchorBox;
474 _resolveObjectForPopover: function(anchorBox, showCallback, objectGroupName
    [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, "");

Completed in 321 milliseconds