HomeSort by relevance Sort by last modified time
    Searched refs:Document (Results 1 - 25 of 1364) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaTemplate/
delegating-constructors.cpp 34 class Document
37 Document() = default;
41 Document(T&& t) : Document()
47 Document d(1);
  /packages/apps/Test/connectivity/sl4n/utils/
command_receiver.h 19 #include <rapidjson/document.h>
21 typedef void (*MFP)(rapidjson::Document&);
38 // passes the document to the corresponding wrapper function.
39 void Call(rapidjson::Document& doc);
common_utils.h 19 #include <rapidjson/document.h>
26 static bool IsParamLengthMatching(rapidjson::Document& doc,
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestDocumentsProvider.java 26 import android.provider.DocumentsContract.Document;
34 * Test doubles of {@link DocumentsProvider} to isolate document providers. This is not registered
40 Document.COLUMN_DOCUMENT_ID,
41 Document.COLUMN_MIME_TYPE,
42 Document.COLUMN_DISPLAY_NAME,
43 Document.COLUMN_LAST_MODIFIED,
44 Document.COLUMN_FLAGS,
45 Document.COLUMN_SUMMARY,
46 Document.COLUMN_SIZE,
47 Document.COLUMN_ICO
    [all...]
TestModel.java 22 import android.provider.DocumentsContract.Document;
38 Document.COLUMN_DOCUMENT_ID,
39 Document.COLUMN_FLAGS,
40 Document.COLUMN_DISPLAY_NAME,
41 Document.COLUMN_SIZE,
42 Document.COLUMN_MIME_TYPE
75 Document.FLAG_SUPPORTS_WRITE
76 | Document.FLAG_SUPPORTS_DELETE
77 | Document.FLAG_SUPPORTS_RENAME);
90 Document.FLAG_SUPPORTS_WRIT
    [all...]
  /system/tools/aidl/
generate_cpp.h 52 std::unique_ptr<Document> BuildClientSource(const TypeNamespace& types,
54 std::unique_ptr<Document> BuildServerSource(const TypeNamespace& types,
56 std::unique_ptr<Document> BuildInterfaceSource(const TypeNamespace& types,
58 std::unique_ptr<Document> BuildClientHeader(const TypeNamespace& types,
60 std::unique_ptr<Document> BuildServerHeader(const TypeNamespace& types,
62 std::unique_ptr<Document> BuildInterfaceHeader(const TypeNamespace& types,
  /packages/apps/DocumentsUI/src/com/android/documentsui/base/
DocumentFilters.java 22 import android.provider.DocumentsContract.Document;
30 * Predicates for matching certain types of document records
35 private static int MOVABLE_MASK = Document.FLAG_SUPPORTS_REMOVE
36 | Document.FLAG_SUPPORTS_DELETE
37 | Document.FLAG_SUPPORTS_MOVE;
52 int flags = getCursorInt(c, Document.COLUMN_FLAGS);
55 return (flags & Document.FLAG_PARTIAL) == 0
63 int flags = getCursorInt(c, Document.COLUMN_FLAGS);
66 return (flags & Document.FLAG_PARTIAL) == 0
67 && (flags & Document.FLAG_VIRTUAL_DOCUMENT) ==
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ImportNode.java 3 and is a derived work from the source document.
4 The source document contained the following notice:
27 import org.w3c.dom.Document;
44 * The "importNode(importedNode,deep)" method for a Document should import the
45 * given importedNode into that Document. The importedNode is of type Attr. The
49 * Create a new attribute whose name is "elem:attr1" in a different document.
51 * above. Invoke method importNode(importedNode,deep) on this document with
54 * "importedText". The returned node should belong to this document whose
60 * href="http://www.w3.org/TR/DOM-Level-2-Core/core#Core-Document-importNode">http://www.w3.org/TR/DOM-Level-2-Core/core#Core-Document-importNode</a
    [all...]
ElementHasAttribute.java 4 import org.w3c.dom.Document;
49 Document doc;
52 doc = (Document) load("staff", builder);
60 // Document doc;
64 // doc = (Document) load("staffNS", builder);
72 Document doc;
77 doc = (Document) load("staff", builder);
87 Document doc;
92 doc = (Document) load("staff", builder);
HasAttribute.java 4 import org.w3c.dom.Document;
50 Document doc;
54 doc = (Document) load("staff", builder);
63 // Document doc;
67 // doc = (Document) load("staff", builder);
74 Document doc;
78 doc = (Document) load("staff", builder);
85 Document doc;
89 doc = (Document) load("staffNS", builder);
LocalName.java 4 import org.w3c.dom.Document;
56 Document doc;
61 doc = (Document) load("staffNS", builder);
70 Document doc;
73 doc = (Document) load("staffNS", builder);
79 Document doc;
84 doc = (Document) load("staffNS", builder);
92 Document doc;
96 doc = (Document) load("staffNS", builder);
NodeGetOwnerDocument.java 3 and is a derived work from the source document.
4 The source document contained the following notice:
25 import org.w3c.dom.Document;
33 * The method getOwnerDocument returns the Document object associated with this
36 * Create a new DocumentType node. Since this node is not used with any Document
76 Document doc;
77 Document ownerDoc;
82 doc = (Document) load("staff", builder);
89 Document doc;
90 Document newDoc
    [all...]
DocumentGetElementsByTagnameNS.java 3 import org.w3c.dom.Document;
14 * encountered in a preorder traversal of the Document tree.
16 * Invoke the getElementsByTagNameNS method on a new Document object with the
59 Document doc;
60 Document newDoc;
67 doc = (Document) load("staffNS", builder);
75 Document doc;
80 doc = (Document) load("staffNS", builder);
89 Document doc;
91 doc = (Document) load("staffNS", builder)
    [all...]
IsSupported.java 6 import org.w3c.dom.Document;
17 * Retrieve the root node of the DOM document by invoking the
58 Document doc;
61 doc = (Document) load("staff", builder);
67 Document doc;
70 doc = (Document) load("staff", builder);
76 Document doc;
79 doc = (Document) load("staff", builder);
85 Document doc;
88 doc = (Document) load("staff", builder)
    [all...]
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/
Context.java 19 import org.eclipse.jface.text.Document;
23 * Only one method of {@link #rewrite()} or {@link #document()} can be called.
29 /** Returns a Document for direct text manipulation. */
30 Document document(); method in interface:Context
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
XmlLoader.java 3 import org.w3c.dom.Document;
15 protected abstract void processResourceXml(File xmlFile, Document document, boolean isSystem) throws Exception;
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/
TestRootProvider.java 25 import android.provider.DocumentsContract.Document;
46 Document.COLUMN_DOCUMENT_ID,
47 Document.COLUMN_MIME_TYPE,
48 Document.COLUMN_DISPLAY_NAME,
49 Document.COLUMN_LAST_MODIFIED,
50 Document.COLUMN_FLAGS,
51 Document.COLUMN_SIZE,
85 row.add(Document.COLUMN_DOCUMENT_ID, id);
86 row.add(Document.COLUMN_DISPLAY_NAME, id);
87 row.add(Document.COLUMN_SIZE, 0)
    [all...]
  /external/pdfium/fxjs/
cjs_document.h 21 class Document : public CJS_EmbedObj {
23 explicit Document(CJS_Object* pJSObject);
24 ~Document() override;
248 JS_STATIC_PROP(ADBE, ADBE, Document);
249 JS_STATIC_PROP(author, author, Document);
250 JS_STATIC_PROP(baseURL, base_URL, Document);
251 JS_STATIC_PROP(bookmarkRoot, bookmark_root, Document);
252 JS_STATIC_PROP(calculate, calculate, Document);
253 JS_STATIC_PROP(Collab, collab, Document);
254 JS_STATIC_PROP(creationDate, creation_date, Document);
    [all...]
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/archives/
ReadableArchiveTest.java 26 import android.provider.DocumentsContract.Document;
91 cursor.getString(cursor.getColumnIndexOrThrow(Document.COLUMN_DOCUMENT_ID)));
93 cursor.getString(cursor.getColumnIndexOrThrow(Document.COLUMN_DISPLAY_NAME)));
95 cursor.getString(cursor.getColumnIndexOrThrow(Document.COLUMN_MIME_TYPE)));
97 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE)));
101 cursor.getString(cursor.getColumnIndexOrThrow(Document.COLUMN_DOCUMENT_ID)));
103 cursor.getString(cursor.getColumnIndexOrThrow(Document.COLUMN_DISPLAY_NAME)));
104 assertEquals(Document.MIME_TYPE_DIR,
105 cursor.getString(cursor.getColumnIndexOrThrow(Document.COLUMN_MIME_TYPE)));
107 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE)))
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
XalanDOMTestDocumentBuilderFactory.java 33 import org.w3c.dom.Document;
65 * @param doc DOM document, may not be null
67 public Object createXPathEvaluator(Document doc) {
71 Constructor constructor = xpathClass.getConstructor(new Class[] {Document.class});
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodegetownerdocumentnull.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
32 * node itself is a document.
35 * document. The Document returned should be null.
43 * @param factory document factory, may not be null
61 Document doc;
62 Document ownerDocument;
63 doc = (Document) load("hc_staff", false);
nodegetownerdocumentnull.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
32 * node itself is a document.
41 * @param factory document factory, may not be null
59 Document doc;
60 Document ownerDocument;
61 doc = (Document) load("staff", false);
  /frameworks/base/packages/Shell/src/com/android/shell/
BugreportStorageProvider.java 27 import android.provider.DocumentsContract.Document;
45 Document.COLUMN_DOCUMENT_ID, Document.COLUMN_MIME_TYPE, Document.COLUMN_DISPLAY_NAME,
46 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
121 throw new FileNotFoundException("Invalid document ID: " + documentId);
135 row.add(Document.COLUMN_FLAGS, Document.FLAG_SUPPORTS_DELETE)
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
importNode16.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
35 * Document should raise NOT_SUPPORTED_ERR DOMException if
38 * Retrieve document staff.xml and get its type.
40 * contains the document type of the staff.xml.
45 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#Core-Document-importNode">http://www.w3.org/TR/DOM-Level-2-Core/core#Core-Document-importNode</a>
46 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Core-Document-importNode')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NOT_SUPPORTED_ERR'])">http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Core-Document-importNode')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NOT_SUPPORTED_ERR'])</a>
52 * @param factory document factory, may not be nul
    [all...]
importNode17.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
35 * Document should raise NOT_SUPPORTED_ERR DOMException if
36 * the type of node being imported is Document.
38 * Retrieve staff.xml document.
45 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#Core-Document-importNode">http://www.w3.org/TR/DOM-Level-2-Core/core#Core-Document-importNode</a>
46 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Core-Document-importNode')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NOT_SUPPORTED_ERR'])">http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Core-Document-importNode')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NOT_SUPPORTED_ERR'])</a>
52 * @param factory document factory, may not be nul
    [all...]

Completed in 2478 milliseconds

1 2 3 4 5 6 7 8 91011>>