Home
last modified time | relevance | path

Searched refs:mSelection (Results 1 – 10 of 10) sorted by relevance

/packages/providers/TvProvider/src/com/android/providers/tv/util/
DSqlParams.java23 private String mSelection; field in SqlParams
36 return mSelection; in getSelection()
48 mSelection = selection; in setWhere()
53 mSelection = DatabaseUtils.concatenateWhere(mSelection, selection); in appendWhere()
/packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/mocks/
DMockContentProvider.java48 private String mSelection; field in MockContentProvider.Query
65 return queryToString(mUri, mProjection, mSelection, mSelectionArgs, mSortOrder); in toString()
84 mSelection = selection; in withSelection()
134 if (!mAnySelection && !Objects.equals(selection, mSelection)) { in equals()
275 @Nullable private String mSelection; field in MockContentProvider.Delete
297 mSelection = Preconditions.checkNotNull(selection); in withSelection()
336 return mUri.equals(uri) && Objects.equals(mSelection, selection) in equals()
344 @Nullable private String mSelection; field in MockContentProvider.Update
364 mSelection = selection; in Update()
395 Objects.equals(mSelection, selection) && in equals()
[all …]
/packages/apps/Messaging/src/com/android/messaging/datamodel/
DCursorQueryData.java39 protected final String mSelection; field in CursorQueryData
49 mSelection = selection; in CursorQueryData()
55 return new BoundCursorLoader(bindingId, mContext, mUri, mProjection, mSelection, in createBoundCursorLoader()
65 return mContext.getContentResolver().query(mUri, mProjection, mSelection, in performSynchronousQuery()
DFrequentContactsCursorQueryData.java111 return new FrequentContactsCursorLoader(bindingId, mContext, mUri, mProjection, mSelection, in createBoundCursorLoader()
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
DPhotoTable.java121 private View mSelection; field in PhotoTable
183 return mSelection != null; in hasSelection()
187 return mSelection; in getSelection()
192 dropOnTable(mSelection); in clearSelection()
193 mPhotoSource.donePaging(getBitmap(mSelection)); in clearSelection()
195 fadeInBackground(mSelection); in clearSelection()
197 mSelection = null; in clearSelection()
215 mSelection = selected; in setSelection()
218 fadeOutBackground(mSelection); in setSelection()
227 placeOnDeck(mSelection, PREV); in selectNext()
[all …]
/packages/apps/UnifiedEmail/src/com/android/mail/content/
DObjectCursorLoader.java43 final String mSelection = null; field in ObjectCursorLoader
77 mSelection, mSelectionArgs, mSortOrder); in loadInBackground()
177 writer.print(prefix); writer.print("mSelection="); writer.println(mSelection); in dump()
/packages/apps/TV/src/com/android/tv/util/
DAsyncDbTask.java94 private final String mSelection; field in AsyncDbTask.AsyncQueryTask
104 mSelection = selection; in AsyncQueryTask()
130 .query(mUri, mProjection, mSelection, mSelectionArgs, mOrderBy)) { in doInBackground() argument
/packages/apps/Contacts/src/com/android/contacts/activities/
DConfirmAddDetailActivity.java370 private String mSelection; field in ConfirmAddDetailActivity.QueryEntitiesTask
388 mSelection = "0"; in doInBackground()
395 mSelection = RawContacts.CONTACT_ID + "=?"; in doInBackground()
400 mSelection = RawContacts.CONTACT_ID + "=?"; in doInBackground()
405 mSelection = Data.RAW_CONTACT_ID + "=?"; in doInBackground()
411 activityTarget.getContentResolver(), mSelection, in doInBackground()
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DHelpers.java675 private final String mSelection; field in Helpers.Lexer
682 mSelection = selection; in Lexer()
684 mChars = new char[mSelection.length()]; in Lexer()
685 mSelection.getChars(0, mChars.length, mChars, 0); in Lexer()
780 String word = mSelection.substring(startOffset, mOffset); in advance()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DAbstractContactAggregator.java1073 private StringBuilder mSelection = new StringBuilder( field in AbstractContactAggregator.NameLookupSelectionBuilder
1091 DatabaseUtils.appendEscapedSQLString(mSelection, string); in insertNameLookup()
1092 mSelection.append(','); in insertNameLookup()
1100 mSelection.setLength(mSelection.length() - 1); // Strip last comma in getSelection()
1101 mSelection.append(')'); in getSelection()
1102 return mSelection.toString(); in getSelection()