OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SelectionHasNoDirection
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextFormControlElement.h
38
enum TextFieldSelectionDirection {
SelectionHasNoDirection
, SelectionHasForwardDirection, SelectionHasBackwardDirection };
79
void setSelectionRange(int start, int end, TextFieldSelectionDirection =
SelectionHasNoDirection
, SelectionOption = ChangeSelection);
HTMLTextFormControlElement.cpp
64
, m_cachedSelectionDirection(
SelectionHasNoDirection
)
189
setSelectionRange(0, std::numeric_limits<int>::max(),
SelectionHasNoDirection
, isFocusable() ? ChangeSelectionAndFocus : NotChangeSelection);
265
setSelectionRange(newSelectionStart, newSelectionEnd,
SelectionHasNoDirection
);
270
TextFieldSelectionDirection direction =
SelectionHasNoDirection
;
276
if (direction ==
SelectionHasNoDirection
&& document().frame() && document().frame()->editor().behavior().shouldConsiderSelectionAsDirectional())
384
newSelection.setIsDirectional(direction !=
SelectionHasNoDirection
);
460
case
SelectionHasNoDirection
:
475
return directionString(
SelectionHasNoDirection
);
487
return
SelectionHasNoDirection
;
490
return selection.isDirectional() ? (selection.isBaseFirst() ? SelectionHasForwardDirection : SelectionHasBackwardDirection) :
SelectionHasNoDirection
;
[
all
...]
HTMLTextAreaElement.cpp
373
setSelectionRange(endOfString, endOfString,
SelectionHasNoDirection
, ChangeSelectionIfFocused);
390
setSelectionRange(endOfString, endOfString,
SelectionHasNoDirection
, ChangeSelectionIfFocused);
HTMLInputElement.h
211
void cacheSelectionInResponseToSetValue(int caretOffset) { cacheSelection(caretOffset, caretOffset,
SelectionHasNoDirection
); }
Completed in 83 milliseconds