OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mSelectionEnd
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebKit/android/nav/
CachedRoot.h
107
void setSelection(int start, int end) { mSelectionStart = start;
mSelectionEnd
= end; }
124
int
mSelectionEnd
;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java
176
private final int
mSelectionEnd
;
236
mSelectionEnd
= Integer.parseInt(arguments.get(KEY_SEL_END));
241
mSelectionStart =
mSelectionEnd
= -1;
258
args.put(KEY_SEL_END, Integer.toString(
mSelectionEnd
));
281
mSelectionEnd
= mSelectionStart + Math.max(0, selection.getLength() - 1);
300
mSelectionStart =
mSelectionEnd
= -1;
488
scanner.getCurrentTokenEndPosition() >=
mSelectionEnd
) {
494
} else if (scanner.getCurrentTokenStartPosition() >
mSelectionEnd
) {
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoring.java
116
protected int
mSelectionEnd
= -1;
122
/** Same as {@link #
mSelectionEnd
} but not adjusted to element edges */
142
mSelectionEnd
= Integer.parseInt(arguments.get(KEY_SEL_END));
144
mOriginalSelectionEnd =
mSelectionEnd
;
159
mSelectionEnd
= 0;
176
mSelectionEnd
= end;
190
// Initialize mSelectionStart and
mSelectionEnd
based on the selection context, which
215
mSelectionEnd
= end;
217
mOriginalSelectionEnd =
mSelectionEnd
;
226
mSelectionEnd
= mSelectionStart + selection.getLength()
[
all
...]
/frameworks/base/core/java/android/widget/
NumberPicker.java
[
all
...]
Completed in 53 milliseconds