OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mSelectionStart
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/input/
ImeTest.java
397
private final int
mSelectionStart
;
405
mSelectionStart
= selectionStart;
414
assertEquals("Selection start did not match", selectionStart,
mSelectionStart
);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java
174
private final int
mSelectionStart
;
236
mSelectionStart
= Integer.parseInt(arguments.get(KEY_SEL_START));
242
mSelectionStart
= mSelectionEnd = -1;
258
args.put(KEY_SEL_START, Integer.toString(
mSelectionStart
));
281
mSelectionStart
= selection.getOffset();
282
mSelectionEnd =
mSelectionStart
+ Math.max(0, selection.getLength() - 1);
301
mSelectionStart
= mSelectionEnd = -1;
488
if (scanner.getCurrentTokenStartPosition() <=
mSelectionStart
&&
566
for(int offset =
mSelectionStart
; offset >= 0 && node == null; --offset) {
588
int selStart =
mSelectionStart
;
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoring.java
116
protected int
mSelectionStart
= -1;
121
/** Same as {@link #
mSelectionStart
} but not adjusted to element edges */
142
mSelectionStart
= Integer.parseInt(arguments.get(KEY_SEL_START));
144
mOriginalSelectionStart =
mSelectionStart
;
159
mSelectionStart
= 0;
176
mSelectionStart
= start;
191
// Initialize
mSelectionStart
and mSelectionEnd based on the selection context, which
215
mSelectionStart
= start;
217
mOriginalSelectionStart =
mSelectionStart
;
226
mSelectionStart
= selection.getOffset()
[
all
...]
/frameworks/base/core/java/android/widget/
NumberPicker.java
[
all
...]
Completed in 1001 milliseconds