OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isBaseFirst
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
VisibleSelection.h
78
VisiblePosition visibleBase() const { return VisiblePosition(m_base, isRange() ? (
isBaseFirst
() ? UPSTREAM : DOWNSTREAM) : affinity()); }
79
VisiblePosition visibleExtent() const { return VisiblePosition(m_extent, isRange() ? (
isBaseFirst
() ? DOWNSTREAM : UPSTREAM) : affinity()); }
88
bool
isBaseFirst
() const { return m_baseIsFirst; }
181
return a.start() == b.start() && a.end() == b.end() && a.affinity() == b.affinity() && a.
isBaseFirst
() == b.
isBaseFirst
()
FrameSelection.cpp
346
if (m_selection.
isBaseFirst
())
359
if (m_selection.
isBaseFirst
())
471
if (m_selection.
isBaseFirst
())
523
if (m_selection.
isBaseFirst
())
566
// to which depends on the value of
isBaseFirst
. Then this can be changed
568
return m_selection.
isBaseFirst
() ? m_selection.visibleEnd() : m_selection.visibleStart();
[
all
...]
DOMSelection.cpp
82
Position anchor = selection.
isBaseFirst
() ? selection.start() : selection.end();
88
Position focus = selection.
isBaseFirst
() ? selection.end() : selection.start();
DeleteSelectionCommand.cpp
160
bool
isBaseFirst
= startingSelection().
isBaseFirst
();
161
VisiblePosition newBase(
isBaseFirst
? start : end);
162
VisiblePosition newExtent(
isBaseFirst
? end : start);
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextFormControlElement.cpp
490
return selection.isDirectional() ? (selection.
isBaseFirst
() ? SelectionHasForwardDirection : SelectionHasBackwardDirection) : SelectionHasNoDirection;
[
all
...]
/external/chromium_org/third_party/WebKit/Source/web/
WebViewImpl.cpp
[
all
...]
Completed in 2925 milliseconds