Home | History | Annotate | Download | only in map

Lines Matching refs:folderId

752             int folderId = 0;
754 folderId = c.getInt(fi.mSmsColFolder);
755 if (folderId == 1)
757 else if (folderId == 2)
759 else if (folderId == 3)
761 else if (folderId == 4 || folderId == 5 || folderId == 6)
766 folderId = c.getInt(fi.mMmsColFolder);
767 if (folderId == 1)
769 else if (folderId == 2)
771 else if (folderId == 3)
773 else if (folderId == 4)
780 folderId = c.getInt(fi.mMessageColFolder);
781 if (folderId == BluetoothMapContract.FOLDER_ID_INBOX)
783 else if (folderId == BluetoothMapContract.FOLDER_ID_SENT)
785 else if (folderId == BluetoothMapContract.FOLDER_ID_DRAFT)
787 else if (folderId == BluetoothMapContract.FOLDER_ID_OUTBOX)
789 else if (folderId == BluetoothMapContract.FOLDER_ID_DELETED)
1629 private String setWhereFilterFolderTypeEmail(long folderId) {
1631 if (folderId >= 0) {
1632 where = BluetoothMapContract.MessageColumns.FOLDER_ID + " = " + folderId;
1640 private String setWhereFilterFolderTypeIm(long folderId) {
1642 if (folderId > BluetoothMapContract.FOLDER_ID_OTHER) {
1643 where = BluetoothMapContract.MessageColumns.FOLDER_ID + " = " + folderId;
3804 long folderId = c.getLong(
3806 folderElement = currentFolder.getFolderById(folderId);
3907 long threadId, folderId;
3933 folderId =
3935 folderElement = folderElement.getFolderById(folderId);
3984 if(folderId == BluetoothMapContract.FOLDER_ID_SENT
3985 || folderId == BluetoothMapContract.FOLDER_ID_OUTBOX) {