HomeSort by relevance Sort by last modified time
    Searched defs:mSelection (Results 26 - 50 of 94) sorted by null

12 3 4

  /developers/samples/android/common/src/java/com/example/android/common/db/
SelectionBuilder.java 98 private StringBuilder mSelection = new StringBuilder();
110 mSelection.setLength(0);
156 if (mSelection.length() > 0) {
157 mSelection.append(" AND ");
160 mSelection.append("(").append(selection).append(")");
237 return mSelection.toString();
  /development/samples/SpinnerTest/src/com/android/example/spinner/test/
SpinnerActivityTest.java 73 private String mSelection;
216 mSelection = (String)mSpinner.getItemAtPosition(mPos);
233 assertEquals(resultText,mSelection);
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.common/db/
SelectionBuilder.java 98 private StringBuilder mSelection = new StringBuilder();
110 mSelection.setLength(0);
156 if (mSelection.length() > 0) {
157 mSelection.append(" AND ");
160 mSelection.append("(").append(selection).append(")");
237 return mSelection.toString();
  /frameworks/support/persistence/db/src/main/java/androidx/sqlite/db/
SupportSQLiteQueryBuilder.java 32 private String mSelection;
85 mSelection = selection;
166 appendClause(query, " WHERE ", mSelection);
  /frameworks/support/recyclerview-selection/src/androidTest/java/androidx/recyclerview/selection/
GestureSelectionHelperTest.java 57 private SelectionProbe mSelection;
64 mSelection = new SelectionProbe(mSelectionTracker);
122 mSelection.assertRangeSelected(1, 9);
DefaultSelectionTrackerTest.java 56 private SelectionProbe mSelection;
97 mSelection = new SelectionProbe(mTracker, mListener);
106 mSelection.assertSelection(7);
114 mSelection.assertNoSelection();
123 mSelection.assertNoSelection();
161 mSelection.assertSelection(7);
168 mSelection.assertRangeSelected(6, 8);
177 mSelection.assertSelected(6);
178 mSelection.assertNotSelected(7);
179 mSelection.assertSelected(8)
    [all...]
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/selection/
GestureSelectionHelperTest.java 61 private SelectionProbe mSelection;
69 mSelection = new SelectionProbe(mSelectionHelper);
133 mSelection.assertRangeSelected(1, 9);
DefaultSelectionHelperTest.java 48 private SelectionProbe mSelection;
78 mSelection = new SelectionProbe(mHelper, mListener);
87 mSelection.assertSelection(7);
95 mSelection.assertNoSelection();
104 mSelection.assertNoSelection();
142 mSelection.assertSelection(7);
152 mSelection.assertSelection(7);
159 mSelection.assertRangeSelected(6, 8);
168 mSelection.assertSelected(6);
169 mSelection.assertNotSelected(7)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
FixProjectAction.java 50 private ISelection mSelection;
61 if (mSelection instanceof IStructuredSelection) {
63 for (Iterator<?> it = ((IStructuredSelection) mSelection).iterator();
82 mSelection = selection;
DexDumpAction.java 63 private ISelection mSelection;
72 if (mSelection instanceof IStructuredSelection) {
73 for (Iterator<?> it = ((IStructuredSelection)mSelection).iterator(); it.hasNext();) {
90 mSelection = selection;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringAction.java 76 private ITextSelection mSelection;
108 mSelection = null;
112 mSelection = (ITextSelection) selection;
113 if (mSelection.getLength() > 0) {
119 action.setEnabled(mSelection != null && mFile != null);
127 if (mSelection != null && mFile != null) {
128 ExtractStringRefactoring ref = new ExtractStringRefactoring(mFile, mEditor, mSelection);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/
RenamePackageAction.java 63 private ISelection mSelection;
76 mSelection = selection;
90 if (mSelection instanceof IStructuredSelection) {
91 for (Iterator<?> it = ((IStructuredSelection) mSelection).iterator(); it.hasNext();) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectWizard.java 54 private IStructuredSelection mSelection;
83 if (mSelection != null) {
84 mNamePage.init(mSelection, AdtUtils.getActivePart());
113 mSelection = selection;
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
GridModel.java 87 private final Set<String> mSelection = new HashSet<>();
273 mSelection.clear();
280 * mSelection, so computeCurrentSelection() should be called before this
285 listener.onSelectionChanged(mSelection);
333 mSelection.clear();
348 mSelection.add(id);
  /development/samples/Spinner/src/com/android/example/spinner/
SpinnerActivity.java 43 protected String mSelection;
193 SpinnerActivity.this.mSelection = parent.getItemAtPosition(pos).toString();
198 resultText.setText(SpinnerActivity.this.mSelection);
310 this.mSelection = p.getString(SELECTION_KEY, "");
348 e.putString(SELECTION_KEY, this.mSelection);
368 return this.mSelection;
372 this.mSelection = selection;
  /frameworks/base/core/java/android/content/
CursorLoader.java 51 String mSelection;
68 Cursor cursor = getContext().getContentResolver().query(mUri, mProjection, mSelection,
143 mSelection = selection;
211 return mSelection;
215 mSelection = selection;
240 writer.print(prefix); writer.print("mSelection="); writer.println(mSelection);
ContentProviderOperation.java 48 private final String mSelection;
66 mSelection = builder.mSelection;
78 mSelection = source.readInt() != 0 ? source.readString() : null;
105 mSelection = cpo.mSelection;
130 if (mSelection != null) {
132 dest.writeString(mSelection);
311 numRows = provider.delete(mUri, mSelection, selectionArgs);
313 numRows = provider.update(mUri, values, mSelection, selectionArgs)
    [all...]
  /frameworks/support/loader/src/main/java/androidx/loader/content/
CursorLoader.java 46 String mSelection;
64 mUri, mProjection, mSelection, mSelectionArgs, mSortOrder,
140 mSelection = selection;
211 return mSelection;
215 mSelection = selection;
243 writer.print(prefix); writer.print("mSelection="); writer.println(mSelection);
  /packages/apps/TV/src/com/android/tv/util/
AsyncDbTask.java 73 private final String mSelection;
89 mSelection = selection;
118 mUri, mProjection, mSelection, mSelectionArgs, mOrderBy)) {
  /packages/apps/UnifiedEmail/src/com/android/mail/content/
ObjectCursorLoader.java 43 final String mSelection = null;
77 mSelection, mSelectionArgs, mSortOrder);
177 writer.print(prefix); writer.print("mSelection="); writer.println(mSelection);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
XmlEditorMultiOutline.java 57 private ISelection mSelection;
125 return mSelection;
167 mSelection = selection;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
RunLintAction.java 62 private ISelection mSelection;
67 mSelection = selection;
72 List<IProject> projects = getProjects(mSelection, true /* warn */);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/
OpenWizardAction.java 65 private ISelection mSelection;
112 ISelection selection = mSelection;
173 mSelection = selection;
  /frameworks/support/recyclerview-selection/src/main/java/androidx/recyclerview/selection/
GridModel.java 87 private final Set<K> mSelection = new HashSet<>();
276 mSelection.clear();
283 * mSelection, so computeCurrentSelection() should be called before this
288 listener.onSelectionChanged(mSelection);
336 mSelection.clear();
351 mSelection.add(key);
  /packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
MockContentProvider.java 51 private String mSelection;
77 return queryToString(mUri, mProjection, mSelection, mSelectionArgs, mSortOrder);
96 mSelection = selection;
150 if (!mAnySelection && !Objects.equals(selection, mSelection)) {
308 @Nullable private String mSelection;
330 mSelection = Preconditions.checkNotNull(selection);
369 return mUri.equals(uri) && Objects.equals(mSelection, selection)
377 @Nullable private String mSelection;
397 mSelection = selection;
428 Objects.equals(mSelection, selection) &
    [all...]

Completed in 529 milliseconds

12 3 4