HomeSort by relevance Sort by last modified time
    Searched refs:mSelectionEnd (Results 1 - 11 of 11) 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;
CachedRoot.cpp     [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...]
WrapInRefactoring.java 103 if (mSelectionStart == -1 || mSelectionEnd == -1) {
216 doc, mSelectionStart, mSelectionEnd, rootId, id);
361 String nested = getText(mSelectionStart, mSelectionEnd);
387 InsertEdit endEdit = new InsertEdit(mSelectionEnd, sb.toString());
UnwrapRefactoring.java 85 if (mSelectionStart == -1 || mSelectionEnd == -1) {
ChangeViewRefactoring.java 95 if (mSelectionStart == -1 || mSelectionEnd == -1) {
ChangeLayoutRefactoring.java 125 if (mSelectionStart == -1 || mSelectionEnd == -1) {
228 String text = getText(mSelectionStart, mSelectionEnd);
252 mSelectionEnd, oldId, newId);
ExtractIncludeRefactoring.java 135 if (mSelectionStart == -1 || mSelectionEnd == -1) {
239 handleIncludingFile(changes, sourceFile, mSelectionStart, mSelectionEnd,
622 String xml = getText(mSelectionStart, mSelectionEnd);
ExtractStyleRefactoring.java 158 if (mSelectionStart == -1 || mSelectionEnd == -1) {
  /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...]
  /frameworks/base/core/java/android/widget/
NumberPicker.java     [all...]

Completed in 344 milliseconds