Searched refs:doc (Results 1 – 8 of 8) sorted by relevance
/development/samples/Vault/tests/src/com/example/android/vault/ |
D | EncryptedDocumentTest.java | 76 final EncryptedDocument doc = new EncryptedDocument(4, mFile, mDataKey, mMacKey); in testEmptyFile() local 79 doc.readMetadata(); in testEmptyFile() 86 doc.readContent(pipe[1]); in testEmptyFile() 105 final EncryptedDocument doc = new EncryptedDocument(4, mFile, mDataKey, mMacKey); in testMetadataAndContents() local 125 doc.writeMetadataAndContent(before, beforePipe[0]); in testMetadataAndContents() 128 final JSONObject after = doc.readMetadata(); in testMetadataAndContents() 152 doc.readContent(afterPipe[1]); in testMetadataAndContents() 159 final EncryptedDocument doc = new EncryptedDocument(4, mFile, mDataKey, mMacKey); in testNormalMetadataOnly() local 164 doc.writeMetadataAndContent(before, null); in testNormalMetadataOnly() 167 final JSONObject after = doc.readMetadata(); in testNormalMetadataOnly() [all …]
|
D | VaultProviderTest.java | 98 for (String doc : docs) { in assertContains() 99 assertTrue(doc, set.contains(doc)); in assertContains()
|
/development/testrunner/test_defs/ |
D | test_defs.py | 55 doc = xml.dom.minidom.parse(file_path) 56 self._ParseDoc(doc) 69 doc = xml.dom.minidom.parseString(xml_string) 71 return self._ParseDoc(doc) 73 def _ParseDoc(self, doc): argument 74 root_element = self._GetRootElement(doc) 83 def _GetRootElement(self, doc): argument 84 root_elements = doc.getElementsByTagName("test-definitions")
|
/development/samples/Vault/src/com/example/android/vault/ |
D | VaultProvider.java | 232 final EncryptedDocument doc = getDocument(docId); in includeDocument() local 233 if (!doc.getFile().exists()) { in includeDocument() 237 final JSONObject meta = doc.readMetadata(); in includeDocument() 334 final EncryptedDocument doc = getDocument(docId); in initDocument() local 335 if (doc.getFile().exists()) return; in initDocument() 346 doc.writeMetadataAndContent(meta, null); in initDocument() 358 final EncryptedDocument doc = getDocument(docId); in renameDocument() local 359 final JSONObject meta = doc.readMetadata(); in renameDocument() 362 doc.writeMetadataAndContent(meta, null); in renameDocument() 396 final EncryptedDocument doc = getDocument(docId); in deleteDocumentTree() local [all …]
|
/development/build/ |
D | Android.mk | 116 full_target := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/framework-doc-stubs_generated-api-versi… 121 full_target := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/framework-doc-stubs_annotations.zip
|
D | sdk.atree | 28 # doc redirect 61 ${OUT_DIR}/target/common/obj/PACKAGING/framework-doc-stubs_generated-api-versions.xml platform-t… 62 ${OUT_DIR}/target/common/obj/PACKAGING/framework-doc-stubs_annotations.zip platform-tools/api/ann… 209 ${OUT_DIR}/target/common/obj/PACKAGING/framework-doc-stubs_generated-api-versions.xml platforms/${… 213 ${OUT_DIR}/target/common/obj/PACKAGING/framework-doc-stubs_annotations.zip platforms/${PLATFORM_NAM… 217 ${OUT_DIR}/target/common/obj/PACKAGING/framework-doc-stubs-metadata_intermediates/activity_actions.… 218 ${OUT_DIR}/target/common/obj/PACKAGING/framework-doc-stubs-metadata_intermediates/broadcast_actions… 219 ${OUT_DIR}/target/common/obj/PACKAGING/framework-doc-stubs-metadata_intermediates/service_actions.t… 220 ${OUT_DIR}/target/common/obj/PACKAGING/framework-doc-stubs-metadata_intermediates/categories.txt … 221 ${OUT_DIR}/target/common/obj/PACKAGING/framework-doc-stubs-metadata_intermediates/widgets.txt … [all …]
|
/development/samples/ApiDemos/src/com/example/android/apis/content/ |
D | DocumentsSample.java | 330 Uri doc = DocumentsContract.buildDocumentUriUsingTree(uri, in onActivityResult() local 345 Uri pic = createDocument(cr, doc, "image/png", "pic.png"); in onActivityResult() 346 Uri dir = createDocument(cr, doc, Document.MIME_TYPE_DIR, "my dir"); in onActivityResult()
|
/development/vndk/tools/definition-tool/assets/insight/ |
D | insight.js | 209 function init(doc, stringsData, modulesData) { argument 210 document = doc;
|