OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AnchorBox
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Popover.js
56
* @param {!Element|!
AnchorBox
} anchor
68
* @param {!Element|!
AnchorBox
} anchor
80
* @param {!Element|!
AnchorBox
} anchor
141
* @param {!Element|!
AnchorBox
} anchorElement
159
var
anchorBox
= anchorElement instanceof
AnchorBox
? anchorElement : anchorElement.boxInWindow(window);
163
var roomAbove =
anchorBox
.y;
164
var roomBelow = totalHeight -
anchorBox
.y -
anchorBox
.height;
168
if ((
anchorBox
.y > newElementPosition.height + arrowHeight + borderRadius) || (arrowDirection === WebInspector.Po (…)
[
all
...]
DOMExtension.js
362
function
AnchorBox
(x, y, width, height)
372
* @return {!
AnchorBox
}
376
var elementOffset = new
AnchorBox
();
394
* @return {!
AnchorBox
}
400
var
anchorBox
= this.offsetRelativeToWindow(window);
401
anchorBox
.width = Math.min(this.offsetWidth, window.innerWidth -
anchorBox
.x);
402
anchorBox
.height = Math.min(this.offsetHeight, window.innerHeight -
anchorBox
.y);
404
return
anchorBox
;
[
all
...]
JavaScriptSourceFrame.js
283
var
anchorBox
= new
AnchorBox
(leftCorner.x, leftCorner.y, rightCorner.x - leftCorner.x, leftCorner.height);
284
anchorBox
.highlight = {
289
anchorBox
.forSelection = true;
290
return
anchorBox
;
304
var
anchorBox
= new
AnchorBox
(leftCorner.x, leftCorner.y, rightCorner.x - leftCorner.x, leftCorner.height);
306
anchorBox
.highlight = {
312
return
anchorBox
;
315
_resolveObjectForPopover: function(
anchorBox
, showCallback, objectGroupName
[
all
...]
CodeMirrorTextEditor.js
[
all
...]
Completed in 503 milliseconds