OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:selectionType
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
VisibleSelection.h
29
#include "core/editing/
SelectionType
.h"
61
SelectionType
selectionType
() const { return m_selectionType; }
81
bool isNone() const { return
selectionType
() == NoSelection; }
82
bool isCaret() const { return
selectionType
() == CaretSelection; }
83
bool isRange() const { return
selectionType
() == RangeSelection; }
84
bool isCaretOrRange() const { return
selectionType
() != NoSelection; }
174
SelectionType
m_selectionType; // None, Caret, Range
FrameSelection.h
118
SelectionType
selectionType
() const { return m_selection.
selectionType
(); }
Completed in 101 milliseconds