HomeSort by relevance Sort by last modified time
    Searched refs:Document (Results 1 - 25 of 1281) 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,
  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/dirlist/
TestModel.java 20 import android.provider.DocumentsContract.Document;
31 Document.COLUMN_DOCUMENT_ID,
32 Document.COLUMN_FLAGS,
33 Document.COLUMN_DISPLAY_NAME,
34 Document.COLUMN_SIZE,
35 Document.COLUMN_MIME_TYPE
52 row.add(Document.COLUMN_DOCUMENT_ID, Integer.toString(i));
53 row.add(Document.COLUMN_FLAGS, Document.FLAG_SUPPORTS_DELETE);
54 // Generate random document names and sizes. This forces the model's internal sort cod
    [all...]
  /frameworks/support/documents-archive/tests/src/android/support/provider/
DocumentArchiveTest.java 22 import android.provider.DocumentsContract.Document;
37 private static final String DOCUMENT_ID = "document-id";
93 assertEquals("document-id:dir1/",
94 cursor.getString(cursor.getColumnIndexOrThrow(Document.COLUMN_DOCUMENT_ID)));
96 cursor.getString(cursor.getColumnIndexOrThrow(Document.COLUMN_DISPLAY_NAME)));
97 assertEquals(Document.MIME_TYPE_DIR,
98 cursor.getString(cursor.getColumnIndexOrThrow(Document.COLUMN_MIME_TYPE)));
100 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE)));
103 assertEquals("document-id:dir2/",
104 cursor.getString(cursor.getColumnIndexOrThrow(Document.COLUMN_DOCUMENT_ID)))
    [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,
  /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...]
AttrGetOwnerElement.java 4 import org.w3c.dom.Document;
37 // Document doc;
46 // doc = (Document) load("staffNS", builder);
59 Document doc;
65 doc = (Document) load("staffNS", builder);
74 Document doc;
77 doc = (Document) load("staffNS", builder);
83 Document doc;
84 Document docImp;
91 doc = (Document) load("staffNS", builder)
    [all...]
DocumentImportNode.java 3 import org.w3c.dom.Document;
17 * The importNode method imports a node from another document to this document.
19 * altered or removed from the original document but a new copy of the source
24 * and namespaceURI "http://www.nist.gov" into the same document. Check the
33 * 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>
66 // Document doc;
74 // doc = (Document) load("staffNS", builder);
88 Document doc
    [all...]
  /external/autotest/frontend/client/src/autotest/common/ui/
DateTimeBox.java 3 import com.google.gwt.dom.client.Document;
9 super(Document.get().createTextInputElement());
  /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;
  /external/pdfium/fpdfsdk/src/javascript/
Document.h 54 class Document : public CJS_EmbedObj {
56 Document(CJS_Object* pJSObject);
57 ~Document() override;
290 JS_STATIC_PROP(ADBE, Document);
291 JS_STATIC_PROP(author, Document);
292 JS_STATIC_PROP(baseURL, Document);
293 JS_STATIC_PROP(bookmarkRoot, Document);
294 JS_STATIC_PROP(calculate, Document);
295 JS_STATIC_PROP(Collab, Document);
296 JS_STATIC_PROP(creationDate, Document);
    [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);
  /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...]
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
MtpDatabaseConstants.java 21 import android.provider.DocumentsContract.Document;
61 Document.COLUMN_DOCUMENT_ID,
94 * but their document ID will be reuse when the device/storage is connected again.
103 * Document that represents a MTP device.
108 * Document that represents a MTP storage.
113 * Document that represents a MTP object.
117 static final String SELECTION_DOCUMENT_ID = Document.COLUMN_DOCUMENT_ID + " = ?";
122 Document.COLUMN_DOCUMENT_ID +
131 Document.COLUMN_MIME_TYPE + " TEXT NOT NULL," +
132 Document.COLUMN_DISPLAY_NAME + " TEXT NOT NULL,"
    [all...]

Completed in 541 milliseconds

1 2 3 4 5 6 7 8 91011>>