Home
last modified time | relevance | path

Searched refs:AnchorType (Results 1 – 11 of 11) sorted by relevance

/external/chromium/chrome/browser/resources/shared/js/cr/ui/
Dposition_util.js22 const AnchorType = { variable
84 if (type == AnchorType.BEFORE)
85 type = AnchorType.AFTER;
86 else if (type == AnchorType.AFTER)
87 type = AnchorType.BEFORE;
92 case AnchorType.BELOW:
95 type = AnchorType.ABOVE;
98 case AnchorType.ABOVE:
101 type = AnchorType.BELOW;
104 case AnchorType.AFTER:
[all …]
Dmenu_button.js148 positionPopupAroundElement(this, this.menu, cr.ui.AnchorType.BELOW);
/external/chromium-trace/src/shared/js/cr/ui/
Dposition_util.js22 var AnchorType = { variable
84 if (type == AnchorType.BEFORE)
85 type = AnchorType.AFTER;
86 else if (type == AnchorType.AFTER)
87 type = AnchorType.BEFORE;
92 case AnchorType.BELOW:
95 type = AnchorType.ABOVE;
98 case AnchorType.ABOVE:
101 type = AnchorType.BELOW;
104 case AnchorType.AFTER:
[all …]
Dmenu_button.js42 this.anchorType = cr.ui.AnchorType.BELOW;
Dautocomplete_list.js160 cr.ui.positionPopupAroundElement(input, this, cr.ui.AnchorType.BELOW);
/external/webkit/Source/WebCore/dom/
DPosition.h54 enum AnchorType { enum
71 Position(PassRefPtr<Node> anchorNode, AnchorType);
73 Position(PassRefPtr<Node> anchorNode, int offset, AnchorType);
75 AnchorType anchorType() const { return static_cast<AnchorType>(m_anchorType); } in anchorType()
185 static AnchorType anchorTypeForLegacyEditingPosition(Node* anchorNode, int offset);
DPosition.cpp82 Position::Position(PassRefPtr<Node> anchorNode, AnchorType anchorType) in Position()
91 Position::Position(PassRefPtr<Node> anchorNode, int offset, AnchorType anchorType) in Position()
213 Position::AnchorType Position::anchorTypeForLegacyEditingPosition(Node* anchorNode, int offset) in anchorTypeForLegacyEditingPosition()
/external/chromium/chrome/browser/resources/options/
Dautocomplete_list.js160 cr.ui.positionPopupAroundElement(input, this, cr.ui.AnchorType.BELOW)
/external/webkit/Source/WebCore/editing/
Dvisible_units.cpp759 Position::AnchorType type = p.anchorType(); in startOfParagraph()
831 Position::AnchorType type = p.anchorType(); in endOfParagraph()
/external/webkit/Source/WebCore/
DChangeLog-2009-06-1614572 Change Position to pre-compute the AnchorType and store it.
DChangeLog-2010-01-2982976 (WebCore::Position::anchorType): statically cast to AnchorType