Searched refs:parsedId (Results 1 – 4 of 4) sorted by relevance
/packages/apps/Car/Messenger/src/com/android/car/messenger/tts/ |
D | TTSHelper.java | 239 Pair<String, Integer> parsedId = parse(utteranceId); 240 BatchListener listener = mListeners.get(parsedId.first); 242 callback.accept(listener, parsedId); 297 void onStart(Pair<String, Integer> parsedId) { in onStart() argument 305 void onDone(Pair<String, Integer> parsedId) { in onDone() argument 306 if (parsedId.second == 0) { in onDone() 307 handleBatchFinished(parsedId, false /* error */); in onDone() 312 void onError(Pair<String, Integer> parsedId) { in onError() argument 313 if (parsedId.first.equals(currentBatchId)) { in onError() 316 handleBatchFinished(parsedId, true /* error */); in onError() [all …]
|
/packages/apps/DocumentsUI/src/com/android/documentsui/archives/ |
D | Archive.java | 157 final ArchiveId parsedId = ArchiveId.fromDocumentId(documentId); in getDocumentType() local 158 MorePreconditions.checkArgumentEquals(mArchiveUri, parsedId.mArchiveUri, in getDocumentType() 162 final ZipEntry entry = mEntries.get(parsedId.mPath); in getDocumentType() 178 final ArchiveId parsedId = ArchiveId.fromDocumentId(documentId); in isChildDocument() local 183 final ZipEntry entry = mEntries.get(parsedId.mPath); in isChildDocument() 210 final ArchiveId parsedId = ArchiveId.fromDocumentId(documentId); in queryDocument() local 211 MorePreconditions.checkArgumentEquals(mArchiveUri, parsedId.mArchiveUri, in queryDocument() 215 final ZipEntry entry = mEntries.get(parsedId.mPath); in queryDocument() 274 final ArchiveId parsedId = createArchiveId(getEntryPath(entry)); in addCursorRow() local 275 row.add(Document.COLUMN_DOCUMENT_ID, parsedId.toDocumentId()); in addCursorRow()
|
D | ReadableArchive.java | 229 final ArchiveId parsedId = ArchiveId.fromDocumentId(documentId); in openDocument() local 230 MorePreconditions.checkArgumentEquals(mArchiveUri, parsedId.mArchiveUri, in openDocument() 233 final ZipEntry entry = mEntries.get(parsedId.mPath); in openDocument() 250 final ArchiveId parsedId = ArchiveId.fromDocumentId(documentId); in openDocumentThumbnail() local 251 MorePreconditions.checkArgumentEquals(mArchiveUri, parsedId.mArchiveUri, in openDocumentThumbnail() 256 final ZipEntry entry = mEntries.get(parsedId.mPath); in openDocumentThumbnail()
|
D | WriteableArchive.java | 205 final ArchiveId parsedId = ArchiveId.fromDocumentId(documentId); in openDocument() local 206 MorePreconditions.checkArgumentEquals(mArchiveUri, parsedId.mArchiveUri, in openDocument() 211 entry = mEntries.get(parsedId.mPath); in openDocument() 216 if (!mPendingEntries.contains(parsedId.mPath)) { in openDocument() 219 mPendingEntries.remove(parsedId.mPath); in openDocument()
|