Home
last modified time | relevance | path

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

/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
DPhotoTable.java122 private View mSelection; field in PhotoTable
180 return mSelection != null; in hasSelection()
184 return mSelection; in getSelection()
189 dropOnTable(mSelection); in clearSelection()
190 mPhotoSource.donePaging(getBitmap(mSelection)); in clearSelection()
192 fadeInBackground(mSelection); in clearSelection()
194 mSelection = null; in clearSelection()
212 mSelection = selected; in setSelection()
215 fadeOutBackground(mSelection); in setSelection()
224 placeOnDeck(mSelection, PREV); in selectNext()
[all …]
/packages/apps/Contacts/src/com/android/contacts/activities/
DConfirmAddDetailActivity.java364 private String mSelection; field in ConfirmAddDetailActivity.QueryEntitiesTask
382 mSelection = "0"; in doInBackground()
389 mSelection = RawContacts.CONTACT_ID + "=?"; in doInBackground()
394 mSelection = RawContacts.CONTACT_ID + "=?"; in doInBackground()
399 mSelection = Data.RAW_CONTACT_ID + "=?"; in doInBackground()
405 activityTarget.getContentResolver(), mSelection, in doInBackground()
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DHelpers.java446 private final String mSelection; field in Helpers.Lexer
453 mSelection = selection; in Lexer()
455 mChars = new char[mSelection.length()]; in Lexer()
456 mSelection.getChars(0, mChars.length, mChars, 0); in Lexer()
551 String word = mSelection.substring(startOffset, mOffset); in advance()
/packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/mocks/
DMockContentProvider.java47 private String mSelection; field in MockContentProvider.Query
64 return queryToString(mUri, mProjection, mSelection, mSelectionArgs, mSortOrder); in toString()
83 mSelection = selection; in withSelection()
133 if (!mAnySelection && !equals(selection, mSelection)) { in equals()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DContactAggregator.java1465 private StringBuilder mSelection = new StringBuilder( field in ContactAggregator.NameLookupSelectionBuilder
1483 DatabaseUtils.appendEscapedSQLString(mSelection, string); in insertNameLookup()
1484 mSelection.append(','); in insertNameLookup()
1492 mSelection.setLength(mSelection.length() - 1); // Strip last comma in getSelection()
1493 mSelection.append(')'); in getSelection()
1494 return mSelection.toString(); in getSelection()