/packages/providers/TvProvider/src/com/android/providers/tv/util/ |
D | SqlParams.java | 23 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/ |
D | MockContentProvider.java | 48 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/ |
D | CursorQueryData.java | 39 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()
|
D | FrequentContactsCursorQueryData.java | 111 return new FrequentContactsCursorLoader(bindingId, mContext, mUri, mProjection, mSelection, in createBoundCursorLoader()
|
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
D | PhotoTable.java | 121 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/ |
D | ObjectCursorLoader.java | 43 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/ |
D | AsyncDbTask.java | 94 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/ |
D | ConfirmAddDetailActivity.java | 370 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/ |
D | Helpers.java | 675 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/ |
D | AbstractContactAggregator.java | 1073 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()
|