Searched refs:isAfterLast (Results 1 - 25 of 37) sorted by relevance

12

/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DCursorPhotoSource.java49 if (!current.cursor.isAfterLast()) {
H A DLocalSource.java226 if (cursor.isAfterLast()) {
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapCallLogComposer.java125 if (mCursor == null || mCursor.isAfterLast()) {
270 public boolean isAfterLast() { method in class:BluetoothPbapCallLogComposer
274 return mCursor.isAfterLast();
H A DBluetoothPbapVcardManager.java219 for (callCursor.moveToFirst(); !callCursor.isAfterLast();
579 while (!composer.isAfterLast()) {
635 while (!composer.isAfterLast()) {
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppService.java450 boolean isAfterLast = cursor.isAfterLast();
468 while (!isAfterLast || arrayPos < mShares.size()) {
469 if (isAfterLast) {
499 isAfterLast = cursor.isAfterLast();
528 isAfterLast = cursor.isAfterLast();
546 isAfterLast = cursor.isAfterLast();
[all...]
H A DBluetoothOppTransferHistory.java234 while (!mTransferCursor.isAfterLast()) {
251 while (!mTransferCursor.isAfterLast()) {
H A DBluetoothOppNotification.java242 for (cursor.moveToFirst(); !cursor.isAfterLast(); cursor.moveToNext()) {
393 for (cursor.moveToFirst(); !cursor.isAfterLast(); cursor.moveToNext()) {
445 for (cursor.moveToFirst(); !cursor.isAfterLast(); cursor.moveToNext()) {
499 for (cursor.moveToFirst(); !cursor.isAfterLast(); cursor.moveToNext()) {
H A DBluetoothOppUtility.java159 for (metadataCursor.moveToFirst(); !metadataCursor.isAfterLast(); metadataCursor
/packages/apps/Music/src/com/android/music/
H A DCreatePlaylist.java110 if (!c.isAfterLast()) {
158 while (! c.isAfterLast()) {
H A DRenamePlaylist.java130 if (!c.isAfterLast()) {
147 if (!c.isAfterLast()) {
H A DSortCursor.java75 if (mCursors[j] == null || mCursors[j].isAfterLast())
158 if (mCursors[j] == null || mCursors[j].isAfterLast()) {
H A DMusicUtils.java432 while (! cur.isAfterLast()) {
478 while (! c.isAfterLast()) {
497 while (! c.isAfterLast()) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DSystemBroadcastReceiver.java126 for (c.moveToFirst(); !c.isAfterLast(); c.moveToNext()) {
H A DUserBinaryDictionary.java201 while (!cursor.isAfterLast()) {
H A DContactsManager.java163 while (!cursor.isAfterLast()) {
/packages/apps/Settings/src/com/android/settings/
H A DUserDictionarySettings.java200 if (mCursor.isAfterLast()) return null;
210 if (mCursor.isAfterLast()) return null;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
H A DUserDictionarySettings.java264 if (mCursor.isAfterLast()) return null;
275 if (mCursor.isAfterLast()) return null;
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
H A DTelephonyBackupAgent.java362 while (smsCursor != null && !smsCursor.isAfterLast() &&
363 mmsCursor != null && !mmsCursor.isAfterLast()) {
375 while (smsCursor != null && !smsCursor.isAfterLast()) {
380 while (mmsCursor != null && !mmsCursor.isAfterLast()) {
420 if (cursor == null || cursor.isAfterLast()) {
440 for (msgCount = 0; msgCount < mMaxMsgPerFile && !cursor.isAfterLast();
453 for (msgCount = 0; msgCount < mMaxMsgPerFile && !cursor.isAfterLast();
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
H A DAbstractDownloadProviderFunctionalTest.java213 for (cursor.moveToFirst(); !cursor.isAfterLast(); cursor.moveToNext()) {
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DAlarmScheduler.java195 while (!instancesCursor.isAfterLast()) {
H A DGlobalDismissManager.java497 if (event_id_idx != -1 && !cursor.isAfterLast()) {
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
H A DExportProcessor.java180 while (!composer.isAfterLast()) {
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
H A DDictionaryBackupAgent.java165 while (!cursor.isAfterLast()) {
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
H A DConversationData.java134 public boolean isAfterLast() { method in class:ConversationData.ReversedCursor
140 return super.isAfterLast();
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DPhoneNumberListAdapter.java430 if (cursor.moveToNext() && !cursor.isAfterLast()) {

Completed in 398 milliseconds

12