Home
last modified time | relevance | path

Searched refs:docs (Results 1 – 25 of 109) sorted by relevance

12345

/packages/apps/DocumentsUI/src/com/android/documentsui/ui/
DMessageBuilder.java45 public String generateDeleteMessage(List<DocumentInfo> docs) { in generateDeleteMessage() argument
49 for (DocumentInfo doc : docs) { in generateDeleteMessage()
55 if (docs.size() == 1) { in generateDeleteMessage()
60 String displayName = BidiFormatter.getInstance().unicodeWrap(docs.get(0).displayName); in generateDeleteMessage()
69 R.plurals.delete_files_confirmation_message, docs.size()); in generateDeleteMessage()
70 } else if (dirsCount == docs.size()) { in generateDeleteMessage()
73 R.plurals.delete_folders_confirmation_message, docs.size()); in generateDeleteMessage()
77 R.plurals.delete_items_confirmation_message, docs.size()); in generateDeleteMessage()
83 @DialogType int dialogType, @OpType int operationType, List<DocumentInfo> docs, in generateListMessage() argument
119 for (DocumentInfo documentInfo : docs) { in generateListMessage()
[all …]
/packages/modules/Virtualization/
DREADME.md7 Visit [our public doc site](https://source.android.com/docs/core/virtualization) to learn more about
11 If you want a quick start, see the [getting started guideline](docs/getting_started.md)
18 * [Android Boot Loader (ABL)](docs/abl.md)
32 * [Debugging](docs/debug)
33 * [Using custom VM](docs/custom_vm.md)
34 * [Device assignment](docs/device_assignment.md)
35 * [Microdroid vendor modules](docs/microdroid_vendor_modules.md)
36 * [Huge Pages](docs/hugepages.md)
Ddice_for_avf_guest.cddl4 ; https://pigweed.googlesource.com/open-dice/+/HEAD/docs/specification.md,
6 ; https://pigweed.googlesource.com/open-dice/+/HEAD/docs/android.md.
47 ; in the APK Signature Scheme v4 (https://source.android.com/docs/security/features/apksigning/v4)
54 ; (see https://source.android.com/docs/core/ota/apex).
/packages/services/Car/car-lib/
DAndroid.bp121 name: "android.car-docs-default",
131 name: "android.car-stubs-docs",
132 defaults: ["android.car-docs-default"],
158 name: "android.car-system-stubs-docs",
159 defaults: ["android.car-docs-default"],
188 name: "android.car-test-stubs-docs",
189 defaults: ["android.car-docs-default"],
207 name: "android.car-stub-docs",
255 // Generates API docs for go/devsite.
257 // How API docs are generated:
[all …]
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/
DAbstractActionHandlerTest.java105 mEnv.docs, in setUp()
154 mEnv.docs.nextIsDocumentsUri = true; in testOpensContainerDocuments_OpenFolderInSearch_JumpsToNewLocation()
155 mEnv.docs.nextPath = new Path( in testOpensContainerDocuments_OpenFolderInSearch_JumpsToNewLocation()
158 mEnv.docs.nextDocuments = Arrays.asList(TestEnv.FOLDER_1, TestEnv.FOLDER_2); in testOpensContainerDocuments_OpenFolderInSearch_JumpsToNewLocation()
164 assertEquals(mEnv.docs.nextPath.getPath().size(), mEnv.state.stack.size()); in testOpensContainerDocuments_OpenFolderInSearch_JumpsToNewLocation()
176 mEnv.docs.nextIsDocumentsUri = true; in testOpensContainerDocuments_ClickFolderInSearch_PushToRootDoc_NoFindPathSupport()
177 mEnv.docs.nextDocuments = Arrays.asList(TestEnv.FOLDER_1, TestEnv.FOLDER_2); in testOpensContainerDocuments_ClickFolderInSearch_PushToRootDoc_NoFindPathSupport()
198 mEnv.docs.nextIsDocumentsUri = true; in testOpensContainerDocuments_ClickArchiveInSearch_opensArchiveInArchiveProvider()
199 mEnv.docs.nextPath = new Path( in testOpensContainerDocuments_ClickArchiveInSearch_opensArchiveInArchiveProvider()
203 mEnv.docs.nextDocuments = Arrays.asList( in testOpensContainerDocuments_ClickArchiveInSearch_opensArchiveInArchiveProvider()
[all …]
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
DDocumentStackAsserts.java18 public static void assertEqualsTo(DocumentStack stack, RootInfo root, List<DocumentInfo> docs) { in assertEqualsTo() argument
20 assertEquals(docs.size(), stack.size()); in assertEqualsTo()
21 for (int i = 0; i < docs.size(); ++i) { in assertEqualsTo()
22 assertEquals(docs.get(i), stack.get(i)); in assertEqualsTo()
DTestDocumentsProvider.java160 public void setNextChildDocumentsReturns(DocumentInfo... docs) { in setNextChildDocumentsReturns() argument
161 mNextChildDocuments = createDocumentsCursor(docs); in setNextChildDocumentsReturns()
164 public void setNextRecentDocumentsReturns(DocumentInfo... docs) { in setNextRecentDocumentsReturns() argument
165 mNextRecentDocuments = createDocumentsCursor(docs); in setNextRecentDocumentsReturns()
168 private Cursor createDocumentsCursor(DocumentInfo... docs) { in createDocumentsCursor() argument
170 for (DocumentInfo doc : docs) { in createDocumentsCursor()
DDocsProviders.java28 public static UrisSupplier createDocsProvider(List<Uri> docs) { in createDocsProvider() argument
29 return new UrisSupplier.StandardUrisSupplier(docs); in createDocsProvider()
DTestStableIdProvider.java27 public TestStableIdProvider(List<String> docs) { in TestStableIdProvider() argument
28 mDocs = docs; in TestStableIdProvider()
/packages/modules/Virtualization/docs/debug/
Dtracing.md28 [Perfetto](https://perfetto.dev/docs/) is an open-source stack for performance instrumentation and
35 https://perfetto.dev/docs/quickstart/android-tracing.
73 by following steps outlined in the [Perfetto docs](
74 https://perfetto.dev/docs/quickstart/android-tracing#recording-a-trace-through-the-cmdline)
78 Perfetto supports capturing traces on Linux: https://perfetto.dev/docs/quickstart/linux-tracing.
82 1. Checkout Perfetto repository: https://perfetto.dev/docs/contributing/getting-started
83 2. Follow https://perfetto.dev/docs/contributing/build-instructions#cross-compiling-for-linux-arm-64
95 documentation is available at https://perfetto.dev/docs/quickstart/trace-analysis and
96 https://perfetto.dev/docs/analysis/trace-processor.
187 https://perfetto.dev/docs/quickstart/android-tracing#recording-a-trace-through-the-cmdline)
[all …]
/packages/apps/DocumentsUI/src/com/android/documentsui/base/
DDocumentStack.java68 public DocumentStack(RootInfo root, DocumentInfo... docs) { in DocumentStack() argument
70 for (int i = 0; i < docs.length; ++i) { in DocumentStack()
71 mList.add(docs[i]); in DocumentStack()
81 public DocumentStack(RootInfo root, List<DocumentInfo> docs) { in DocumentStack() argument
82 mList = new LinkedList<>(docs); in DocumentStack()
90 public DocumentStack(DocumentStack src, DocumentInfo... docs) { in DocumentStack() argument
92 for (DocumentInfo doc : docs) { in DocumentStack()
/packages/apps/DocumentsUI/src/com/android/documentsui/files/
DActionHandler.java111 DocumentsAccess docs, in ActionHandler() argument
122 super(activity, state, providers, docs, searchMgr, executors, injector); in ActionHandler()
334 public void deleteSelectedDocuments(List<DocumentInfo> docs, DocumentInfo srcParent) { in deleteSelectedDocuments() argument
335 if (docs == null || docs.isEmpty()) { in deleteSelectedDocuments()
345 List<Uri> uris = new ArrayList<>(docs.size()); in deleteSelectedDocuments()
346 for (DocumentInfo doc : docs) { in deleteSelectedDocuments()
388 List<DocumentInfo> docs = mModel.loadDocuments( in shareSelectedDocuments() local
393 if (docs.size() == 1) { in shareSelectedDocuments()
395 DocumentInfo doc = docs.get(0); in shareSelectedDocuments()
399 } else if (docs.size() > 1) { in shareSelectedDocuments()
[all …]
/packages/apps/DocumentsUI/src/com/android/documentsui/
DLoadDocStackTask.java56 DocumentsAccess docs, in LoadDocStackTask() argument
61 mDocs = docs; in LoadDocStackTask()
112 List<DocumentInfo> docs = mDocs.getDocuments(root.userId, authority, path.getPath()); in buildStack() local
114 return new DocumentStack(root, docs); in buildStack()
DRootsMonitor.java50 final DocumentsAccess docs, in RootsMonitor() argument
63 docs, in RootsMonitor()
95 DocumentsAccess docs, in HandleRootsChangedTask() argument
102 mDocs = docs; in HandleRootsChangedTask()
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/
DSelectionHelpers.java40 public static DocsSelectionHelper createTestInstance(List<String> docs) { in createTestInstance() argument
45 Integer.toHexString(System.identityHashCode(docs)), in createTestInstance()
46 new TestStableIdProvider(docs), in createTestInstance()
/packages/apps/DocumentsUI/src/com/android/documentsui/clipping/
DUrisSupplier.java223 public StandardUrisSupplier(List<Uri> docs) { in StandardUrisSupplier() argument
224 mDocs = docs; in StandardUrisSupplier()
228 ArrayList<Uri> docs = new ArrayList<>(clipData.getItemCount()); in listDocs() local
233 docs.add(uri); in listDocs()
236 return docs; in listDocs()
/packages/modules/Bluetooth/system/gd/
DREADME.md9 * [Architecture](./docs/architecture/architecture.md)
20 * [GTest Unit Test](./docs/testing/gtest.md)
26 * [GD Certification Tests](./docs/testing/cert_test.md)
/packages/apps/Car/DebuggingRestrictionController/server/
DHOW_TO.md35 …[https://firebase.google.com/docs/functions/get-started](https://firebase.google.com/docs/function…
47 …[https://firebase.google.com/docs/functions/manage-functions](hhttps://firebase.google.com/docs/fu…
/packages/modules/Bluetooth/floss/build/
DREADME.md18 mode](https://docs.podman.io/en/latest/markdown/podman.1.html#rootless-mode):
27 https://docs.docker.com/engine/install/, such as
28 https://docs.docker.com/engine/install/debian/.
31 https://docs.docker.com/engine/security/rootless/
/packages/apps/DocumentsUI/
Dperfetto_config.pbtx16 # See: https://perfetto.dev/docs/data-sources/atrace#traceconfig
72 # authorities="com.google.android.apps.docs.storage" - Google Docs
73 atrace_apps: "com.google.android.apps.docs"
93 # See https://perfetto.dev/docs/data-sources/frametimeline#traceconfig
101 # See https://perfetto.dev/docs/data-sources/memory-counters
/packages/apps/DocumentsUI/src/com/android/documentsui/picker/
DPickActivity.java444 public void onDocumentsPicked(List<DocumentInfo> docs) { in onDocumentsPicked() argument
446 if (!canShare(docs)) { in onDocumentsPicked()
452 final int size = docs.size(); in onDocumentsPicked()
455 for (int i = 0; i < docs.size(); i++) { in onDocumentsPicked()
456 DocumentInfo doc = docs.get(i); in onDocumentsPicked()
468 private boolean canShare(List<DocumentInfo> docs) { in canShare() argument
469 for (DocumentInfo doc : docs) { in canShare()
/packages/modules/adb/
DREADME.md6 [man page](docs/user/adb.1.md)
9 [main page](docs/dev/README.md)
/packages/modules/AppSearch/testing/contactsindexertests/src/com/android/server/appsearch/contactsindexer/
DTestUtils.java200 List<SearchResult> docs = getNextPageAsync(session, results, executor).get(); in getDocIdsByQuery() local
201 if (docs.isEmpty()) { in getDocIdsByQuery()
204 for (int i = 0; i < docs.size(); ++i) { in getDocIdsByQuery()
205 allIds.add(docs.get(i).getGenericDocument().getId()); in getDocIdsByQuery()
/packages/modules/Connectivity/thread/
DREADME.md20 ## More docs
22 - [Make your Android Border Router](./docs/make-your-android-border-router.md)
/packages/modules/Virtualization/guest/pvmfw/
DREADME.md54 [AVF]: https://source.android.com/docs/core/virtualization
55 [why-avf]: https://source.android.com/docs/core/virtualization/whyavf
56 [android-dice]: https://pigweed.googlesource.com/open-dice/+/refs/heads/main/docs/android.md
57 [pKVM]: https://source.android.com/docs/core/virtualization/architecture#hypervisor
58 [open-dice]: https://pigweed.googlesource.com/open-dice/+/refs/heads/main/docs/specification.md
107 [ABL-part]: https://source.android.com/docs/core/architecture/bootloader/partitions
108 [boot-img]: https://source.android.com/docs/core/architecture/bootloader/boot-image-header
255 [debug_policy]: ../../docs/debug/README.md#debug-policy
256 [device_assignment]: ../../docs/device_assignment.md
331 [AVB]: https://source.android.com/docs/security/features/verifiedboot/boot-flow
[all …]

12345