Home
last modified time | relevance | path

Searched refs:Document (Results 1 – 21 of 21) sorted by relevance

/frameworks/base/packages/Shell/src/com/android/shell/
DBugreportStorageProvider.java28 import android.provider.DocumentsContract.Document;
46 Document.COLUMN_DOCUMENT_ID, Document.COLUMN_MIME_TYPE, Document.COLUMN_DISPLAY_NAME,
47 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
148 row.add(Document.COLUMN_FLAGS, Document.FLAG_SUPPORTS_DELETE); in includeFile()
154 row.add(Document.COLUMN_DOCUMENT_ID, DOC_ID_ROOT); in includeDefaultDocument()
155 row.add(Document.COLUMN_MIME_TYPE, Document.MIME_TYPE_DIR); in includeDefaultDocument()
156 row.add(Document.COLUMN_DISPLAY_NAME, mRoot.getName()); in includeDefaultDocument()
157 row.add(Document.COLUMN_LAST_MODIFIED, mRoot.lastModified()); in includeDefaultDocument()
158 row.add(Document.COLUMN_FLAGS, Document.FLAG_DIR_PREFERS_LAST_MODIFIED); in includeDefaultDocument()
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
DTestDocumentsProvider.java40 import android.provider.DocumentsContract.Document;
89 Document.COLUMN_DOCUMENT_ID, Document.COLUMN_MIME_TYPE, Document.COLUMN_DISPLAY_NAME,
90 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
242 includeFile(result, "localfile2", Document.FLAG_SUPPORTS_THUMBNAIL); in queryChildDocuments()
248 includeFile(result, "i maded u an picshure" + i, Document.FLAG_SUPPORTS_THUMBNAIL); in queryChildDocuments()
395 row.add(Document.COLUMN_DOCUMENT_ID, docId); in includeFile()
396 row.add(Document.COLUMN_DISPLAY_NAME, docId); in includeFile()
397 row.add(Document.COLUMN_LAST_MODIFIED, System.currentTimeMillis()); in includeFile()
398 row.add(Document.COLUMN_FLAGS, flags); in includeFile()
401 row.add(Document.COLUMN_MIME_TYPE, Document.MIME_TYPE_DIR); in includeFile()
[all …]
DExternalStorageProvider.java39 import android.provider.DocumentsContract.Document;
85 Document.COLUMN_DOCUMENT_ID, Document.COLUMN_MIME_TYPE, Document.COLUMN_DISPLAY_NAME,
86 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
DMoSerializer.java22 import org.w3c.dom.Document;
64 String serialize(@NonNull Document doc) { in serialize()
83 Document createNewDocument() { in createNewDocument()
94 Element createMgmtTree(@NonNull Document doc) { in createMgmtTree()
108 Element writeVersion(@NonNull Document doc) { in writeVersion()
122 Element createNode(@NonNull Document doc, @NonNull String nodeName) { in createNode()
140 Element createNodeForUrn(@NonNull Document doc, @NonNull String urn) { in createNodeForUrn()
161 Element createNodeForValue(@NonNull Document doc, @NonNull String name, @NonNull String value) { in createNodeForValue()
DDevInfoMo.java23 import org.w3c.dom.Document;
65 Document doc = moSerializer.createNewDocument(); in serializeToXml()
DDevDetailMo.java31 import org.w3c.dom.Document;
164 Document doc = moSerializer.createNewDocument(); in serializeToXml()
/frameworks/base/core/java/com/android/internal/content/
DFileSystemProvider.java39 import android.provider.DocumentsContract.Document;
150 if (Document.MIME_TYPE_DIR.equals(mimeType)) { in getDocumentMetadata()
249 if (Document.MIME_TYPE_DIR.equals(mimeType)) { in createDocument()
495 return Document.MIME_TYPE_DIR; in getDocumentType()
548 fileMimeType = DocumentsContract.Document.MIME_TYPE_DIR; in matchSearchQueryArguments()
587 row.add(Document.COLUMN_DOCUMENT_ID, docId); in includeFile()
588 row.add(Document.COLUMN_MIME_TYPE, mimeType); in includeFile()
590 final int flagIndex = ArrayUtils.indexOf(columns, Document.COLUMN_FLAGS); in includeFile()
594 if (mimeType.equals(Document.MIME_TYPE_DIR)) { in includeFile()
595 flags |= Document.FLAG_DIR_SUPPORTS_CREATE; in includeFile()
[all …]
/frameworks/layoutlib/validator/src/
DResourceConverter.java19 import org.w3c.dom.Document;
87 Document document = documentBuilder.parse(file); in loadStrings()
/frameworks/base/core/java/android/provider/
DDocumentsProvider.java62 import android.provider.DocumentsContract.Document;
765 return cursor.getString(cursor.getColumnIndexOrThrow(Document.COLUMN_MIME_TYPE)); in getDocumentType()
1122 final String mimeType = extras.getString(Document.COLUMN_MIME_TYPE); in callUnchecked()
1123 final String displayName = extras.getString(Document.COLUMN_DISPLAY_NAME); in callUnchecked()
1146 final String displayName = extras.getString(Document.COLUMN_DISPLAY_NAME); in callUnchecked()
1394 cursor.getString(cursor.getColumnIndexOrThrow(Document.COLUMN_MIME_TYPE)); in getDocumentStreamTypes()
1396 cursor.getLong(cursor.getColumnIndexOrThrow(Document.COLUMN_FLAGS)); in getDocumentStreamTypes()
1397 if ((flags & Document.FLAG_VIRTUAL_DOCUMENT) == 0 && mimeType != null && in getDocumentStreamTypes()
DDocumentsContract.java292 public final static class Document { class in DocumentsContract
293 private Document() { in Document() method in DocumentsContract.Document
1368 in.putString(Document.COLUMN_MIME_TYPE, mimeType); in createDocument()
1369 in.putString(Document.COLUMN_DISPLAY_NAME, displayName); in createDocument()
1435 in.putString(Document.COLUMN_DISPLAY_NAME, displayName); in renameDocument()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/omadm/
DMoSerializerTest.java29 import org.w3c.dom.Document;
42 Document mDocument;
/frameworks/base/core/tests/coretests/src/android/os/
DFileUtilsTest.java53 import android.provider.DocumentsContract.Document;
434 … assertNameEquals("test", FileUtils.buildUniqueFile(mTarget, Document.MIME_TYPE_DIR, "test")); in testBuildUniqueFile_dir()
437 FileUtils.buildUniqueFile(mTarget, Document.MIME_TYPE_DIR, "test")); in testBuildUniqueFile_dir()
440 FileUtils.buildUniqueFile(mTarget, Document.MIME_TYPE_DIR, "test.jpg")); in testBuildUniqueFile_dir()
443 FileUtils.buildUniqueFile(mTarget, Document.MIME_TYPE_DIR, "test.jpg")); in testBuildUniqueFile_dir()
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/certificate/
DCertUtils.java24 import org.w3c.dom.Document;
124 Document document = in getXmlRootNode()
/frameworks/base/core/java/android/os/
DFileUtils.java45 import android.provider.DocumentsContract.Document;
1159 if (Document.MIME_TYPE_DIR.equals(mimeType)) { in splitFileName()
/frameworks/base/core/proto/android/service/
Dprint.proto378 // Document info of the job
/frameworks/base/core/java/com/android/internal/app/
DChooserActivity.java1392 int flagsIndex = cursor.getColumnIndex(DocumentsContract.Document.COLUMN_FLAGS);
1403 & DocumentsContract.Document.FLAG_SUPPORTS_THUMBNAIL) != 0;
/frameworks/opt/setupwizard/tools/docs/
Dandroid-22.txt24780 public static final class DocumentsContract.Document {
53518 method public abstract org.w3c.dom.Document newDocument();
53519 …method public org.w3c.dom.Document parse(java.io.InputStream) throws java.io.IOException, org.xml.…
53520 …method public org.w3c.dom.Document parse(java.io.InputStream, java.lang.String) throws java.io.IOE…
53521 …method public org.w3c.dom.Document parse(java.lang.String) throws java.io.IOException, org.xml.sax…
53522 …method public org.w3c.dom.Document parse(java.io.File) throws java.io.IOException, org.xml.sax.SAX…
53523 …method public abstract org.w3c.dom.Document parse(org.xml.sax.InputSource) throws java.io.IOExcept…
57865 …method public abstract org.w3c.dom.Document createDocument(java.lang.String, java.lang.String, org…
57896 public abstract interface Document implements org.w3c.dom.Node {
58012 method public abstract org.w3c.dom.Document getOwnerDocument();
[all …]
/frameworks/base/api/
Dcurrent.txt39877 public static final class DocumentsContract.Document {
80452 method public abstract org.w3c.dom.Document newDocument();
80453 …method public org.w3c.dom.Document parse(java.io.InputStream) throws java.io.IOException, org.xml.…
80454 …method public org.w3c.dom.Document parse(java.io.InputStream, String) throws java.io.IOException, …
80455 …method public org.w3c.dom.Document parse(String) throws java.io.IOException, org.xml.sax.SAXExcept…
80456 …method public org.w3c.dom.Document parse(java.io.File) throws java.io.IOException, org.xml.sax.SAX…
80457 …method public abstract org.w3c.dom.Document parse(org.xml.sax.InputSource) throws java.io.IOExcept…
81288 …method public org.w3c.dom.Document createDocument(String, String, org.w3c.dom.DocumentType) throws…
81319 public interface Document extends org.w3c.dom.Node {
81435 method public org.w3c.dom.Document getOwnerDocument();
[all …]
/frameworks/base/config/
Dpreloaded-classes11823 org.w3c.dom.Document
Dboot-image-profile.txt38456 HSPLjavax/xml/parsers/DocumentBuilder;->parse(Ljava/io/InputStream;)Lorg/w3c/dom/Document;
53597 Lorg/w3c/dom/Document;
/frameworks/base/tools/aapt2/integration-tests/CommandTests/
Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...