HomeSort by relevance Sort by last modified time
    Searched refs:mSelectionStart (Results 1 - 3 of 3) sorted by null

  /external/webkit/WebKit/android/nav/
CachedRoot.h 101 void setSelection(int start, int end) { mSelectionStart = start; mSelectionEnd = end; }
117 int mSelectionStart;
CachedRoot.cpp 825 int start = mSelectionStart;
826 mSelectionStart = -1;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java 166 private final int mSelectionStart;
209 mSelectionStart = Integer.parseInt(arguments.get(KEY_SEL_START));
215 mSelectionStart = mSelectionEnd = -1;
229 args.put(KEY_SEL_START, Integer.toString(mSelectionStart));
252 mSelectionStart = selection.getOffset();
253 mSelectionEnd = mSelectionStart + Math.max(0, selection.getLength() - 1);
269 mSelectionStart = mSelectionEnd = -1;
423 if (scanner.getCurrentTokenStartPosition() <= mSelectionStart &&
501 for(int offset = mSelectionStart; offset >= 0 && node == null; --offset) {
523 int selStart = mSelectionStart;
    [all...]

Completed in 1037 milliseconds