OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SelectionType
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/editing/
VisibleSelection.h
41
enum
SelectionType
{ NoSelection, CaretSelection, RangeSelection };
55
SelectionType
selectionType
() const { return m_selectionType; }
73
bool isNone() const { return
selectionType
() == NoSelection; }
74
bool isCaret() const { return
selectionType
() == CaretSelection; }
75
bool isRange() const { return
selectionType
() == RangeSelection; }
76
bool isCaretOrRange() const { return
selectionType
() != NoSelection; }
131
SelectionType
m_selectionType; // None, Caret, Range
SelectionController.h
90
VisibleSelection::
SelectionType
selectionType
() const { return m_selection.
selectionType
(); }
Completed in 4081 milliseconds