HomeSort by relevance Sort by last modified time
    Searched defs:AnchorType (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/ui/webui/resources/js/cr/ui/
position_util.js 22 cr.ui.AnchorType = {
50 var AnchorType = cr.ui.AnchorType;
56 * @param {cr.ui.AnchorType} type The type of anchoring to do.
88 if (type == AnchorType.BEFORE)
89 type = AnchorType.AFTER;
90 else if (type == AnchorType.AFTER)
91 type = AnchorType.BEFORE;
96 case AnchorType.BELOW:
99 type = AnchorType.ABOVE
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.h 55 enum AnchorType {
85 Position(PassRefPtrWillBeRawPtr<Node> anchorNode, AnchorType);
90 Position(PassRefPtrWillBeRawPtr<Node> anchorNode, int offset, AnchorType);
92 AnchorType anchorType() const { return static_cast<AnchorType>(m_anchorType); }
107 ASSERT(anchorType() == PositionIsOffsetInAnchor);
208 static AnchorType anchorTypeForLegacyEditingPosition(Node* anchorNode, int offset);
228 return a.anchorNode() == b.anchorNode() && a.deprecatedEditingOffset() == b.deprecatedEditingOffset() && a.anchorType() == b.anchorType();
    [all...]
  /external/chromium_org/ui/views/bubble/
tray_bubble_view.h 37 // AnchorType differentiates between bubbles that are anchored on a tray
40 enum AnchorType {
56 typedef TrayBubbleView::AnchorType AnchorType;
80 AnchorType anchor_type,
94 InitParams(AnchorType anchor_type,
98 AnchorType anchor_type;

Completed in 124 milliseconds