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

  /frameworks/base/core/java/android/view/inputmethod/
CursorAnchorInfo.java 42 private final int mSelectionStart;
124 mSelectionStart = source.readInt();
146 dest.writeInt(mSelectionStart);
169 hash += mSelectionStart + mSelectionEnd + mComposingTextStart;
205 if (mSelectionStart != that.mSelectionStart || mSelectionEnd != that.mSelectionEnd) {
230 return "SelectionInfo{mSelection=" + mSelectionStart + "," + mSelectionEnd
247 private int mSelectionStart = -1;
265 mSelectionStart = newStart;
385 mSelectionStart = -1
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
WrapInRefactoring.java 107 if (mSelectionStart == -1 || mSelectionEnd == -1) {
192 // Add indent to all lines between mSelectionStart and mEnd
198 String startIndent = AndroidXmlEditor.getIndentAtOffset(document, mSelectionStart);
223 doc, mSelectionStart, mSelectionEnd, rootId, id);
365 InsertEdit beginEdit = new InsertEdit(mSelectionStart, sb.toString());
368 String nested = getText(mSelectionStart, mSelectionEnd);
374 InsertEdit newline = new InsertEdit(mSelectionStart + index, indentUnit);
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...]
ChangeLayoutRefactoring.java 129 if (mSelectionStart == -1 || mSelectionEnd == -1) {
235 String text = getText(mSelectionStart, mSelectionEnd);
243 rootEdit.addChild(new ReplaceEdit(mSelectionStart + open, oldLength, name));
245 rootEdit.addChild(new ReplaceEdit(mSelectionStart + close, oldLength, name));
258 mSelectionStart,
382 rootEdit.addChild(new ReplaceEdit(mSelectionStart + open, oldLength,
385 rootEdit.addChild(new ReplaceEdit(mSelectionStart + close,
UseCompoundDrawableRefactoring.java 123 if (mSelectionStart == -1 || mSelectionEnd == -1) {
346 doc, mSelectionStart, mSelectionEnd, layoutId, id);
361 TextEdit replace = new ReplaceEdit(mSelectionStart, mSelectionEnd - mSelectionStart, xml);
ExtractIncludeRefactoring.java 139 if (mSelectionStart == -1 || mSelectionEnd == -1) {
246 handleIncludingFile(changes, sourceFile, mSelectionStart, mSelectionEnd,
632 String xml = getText(mSelectionStart, mSelectionEnd);
634 xml = stripTopLayoutAttributes(primaryNode, mSelectionStart, xml);
UnwrapRefactoring.java 89 if (mSelectionStart == -1 || mSelectionEnd == -1) {
ChangeViewRefactoring.java 101 if (mSelectionStart == -1 || mSelectionEnd == -1) {
ExtractStyleRefactoring.java 168 if (mSelectionStart == -1 || mSelectionEnd == -1) {
  /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...]
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/input/
ImeTest.java     [all...]
  /frameworks/base/core/java/android/widget/
NumberPicker.java     [all...]

Completed in 894 milliseconds