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

1 2 3 4

  /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/rapidjson/test/unittest/
namespacetest.cpp 25 #include "rapidjson/document.h"
44 typedef RAPIDJSON_NAMESPACE::Document Document;
61 Document doc;
documenttest.cpp 16 #include "rapidjson/document.h"
91 TEST(Document, Parse) {
116 TEST(Document, ParseStream_EncodedInputStream) {
157 TEST(Document, ParseStream_AutoUTFInputStream) {
164 Document d;
196 TEST(Document, Swap) {
197 Document d1;
198 Document::AllocatorType& a = d1.GetAllocator();
205 // Swap between Document and Value
211 // Swap between Document and Document
    [all...]
  /external/deqp/scripts/
convert_case_list_to_xml.py 23 from xml.dom.minidom import Document
86 # Create XML document.
87 doc = Document()
93 # Dump XML document.
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
Document.java 27 /** The document consists of some legacy events and a single root
31 public class Document extends Node {
37 /** returns "#document" */
56 return "#document";
65 // throw new RuntimeException("Only one document root element allowed");
75 /** reads the document and checks if the last event
93 throw new RuntimeException("Document end expected!");
106 /** returns the root element of this document. */
110 throw new RuntimeException("Document has no root element!");
115 /** Writes this node to the given XmlWriter. For node and document,
    [all...]
  /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...]
Document.cpp 7 #include "Document.h"
52 /* ---------------------- Document ---------------------- */
137 IMPLEMENT_JS_CLASS(CJS_Document, Document)
141 Document* pDoc = static_cast<Document*>(GetEmbedObject());
146 /* --------------------------------- Document ---------------------------------
149 Document::Document(CJS_Object* pJSObject)
156 Document::~Document() {
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
Document.java 16 * The <code>Document</code> interface represents the entire HTML or XML
17 * document. Conceptually, it is the root of the document tree, and provides
18 * the primary access to the document's data.
20 * cannot exist outside the context of a <code>Document</code>, the
21 * <code>Document</code> interface also contains the factory methods needed
24 * <code>Document</code> within whose context they were created.
25 * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
27 public interface Document extends Node {
29 * The Document Type Declaration (see <code>DocumentType</code>
    [all...]
  /system/tools/aidl/
ast_cpp.cpp 405 Document::Document(const std::vector<std::string>& include_list,
410 void Document::Write(CodeWriter* to) const {
422 : Document(include_list, std::move(a_namespace)),
429 Document::Write(to);
437 : Document(include_list, std::move(a_namespace)) {}
ast_java.cpp 489 Document::Document(const std::string& comment,
499 void Document::Write(CodeWriter* to) const {
ast_cpp.h 364 class Document : public AstNode {
366 Document(const std::vector<std::string>& include_list,
375 DISALLOW_COPY_AND_ASSIGN(Document);
376 }; // class Document
378 class CppHeader final : public Document {
391 class CppSource final : public Document {
ast_java.h 356 class Document {
358 Document(const std::string& comment,
362 virtual ~Document() = default;
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treebuilders/
etree.py 186 class Document(Element):
209 rv.append("#document")
213 raise TypeError("Document node cannot have tail")
215 raise TypeError("Document node cannot have attributes")
277 raise TypeError("Document node cannot have tail")
279 raise TypeError("Document node cannot have attributes")
311 documentClass = Document
323 return self.document._element
326 return self.document._element.find(
329 return self.document._element.find("html"
    [all...]
etree_lxml.py 40 class Document(object):
63 rv.append("#document")
86 rv.append("#document-fragment")
183 documentClass = Document
187 fragmentClass = Document
275 return self.document._elementTree
277 return self.document._elementTree.getroot()
309 if (parent == self.document and
310 self.document._elementTree.getroot()[-1].tag == comment_type):
315 """Create the document root""
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/
DocumentsClientTest.java 25 import android.provider.DocumentsContract.Document;
90 readFully(Uri.parse("content://com.android.cts.documentprovider/document/doc:file1"));
173 final String DISPLAY_NAME = "My New Awesome Document Title";
193 assertEquals(DISPLAY_NAME, getColumn(uri, Document.COLUMN_DISPLAY_NAME));
194 assertEquals(MIME_TYPE, getColumn(uri, Document.COLUMN_MIME_TYPE));
248 assertEquals("DIR2", getColumn(doc, Document.COLUMN_DISPLAY_NAME));
253 Document.COLUMN_DISPLAY_NAME }, null, null, null);
264 Uri dir = DocumentsContract.createDocument(resolver, doc, Document.MIME_TYPE_DIR, "my dir");
285 assertEquals("wow", getColumn(dirPic, Document.COLUMN_DISPLAY_NAME));
291 Document.COLUMN_DISPLAY_NAME)
    [all...]
  /external/llvm/include/llvm/Support/
YAMLParser.h 57 class Document;
97 std::unique_ptr<Document> CurrentDoc;
99 friend class Document;
117 Node(unsigned int Type, std::unique_ptr<Document> &, StringRef Anchor,
124 /// \brief Get the tag as it was written in the document. This does not
135 // These functions forward to Document and Scanner.
158 std::unique_ptr<Document> &Doc;
168 /// \brief The tag as typed in the document.
180 NullNode(std::unique_ptr<Document> &D)
195 ScalarNode(std::unique_ptr<Document> &D, StringRef Anchor, StringRef Tag
    [all...]
  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/dirlist/
ModelTest.java 25 import android.provider.DocumentsContract.Document;
52 Document.COLUMN_DOCUMENT_ID,
53 Document.COLUMN_FLAGS,
54 Document.COLUMN_DISPLAY_NAME,
55 Document.COLUMN_SIZE,
56 Document.COLUMN_LAST_MODIFIED,
57 Document.COLUMN_MIME_TYPE
87 row.add(Document.COLUMN_DOCUMENT_ID, Integer.toString(i));
88 row.add(Document.COLUMN_FLAGS, Document.FLAG_SUPPORTS_DELETE)
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
ParseBenchmark.java 44 @Param Document document; field in class:ParseBenchmark
47 private enum Document {
94 text = resourceToString("/" + document.name() + "." + api.extension);
  /development/samples/Vault/src/com/example/android/vault/
VaultProvider.java 35 import android.provider.DocumentsContract.Document;
60 * Each document is stored as described by {@link EncryptedDocument} with
88 /** Key pointing to next available document ID. */
102 Document.COLUMN_DOCUMENT_ID, Document.COLUMN_MIME_TYPE, Document.COLUMN_DISPLAY_NAME,
103 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
140 // Load secret key and ensure our root document is ready
    [all...]
  /frameworks/base/core/java/android/provider/
DocumentsContract.java 60 * To create a document provider, extend {@link DocumentsProvider}, which
78 // content://com.example/document/12/
79 // content://com.example/document/12/children/
80 // content://com.example/tree/12/document/24/
81 // content://com.example/tree/12/document/24/children/
145 * Constants related to a document, including {@link Cursor} column names
148 * A document can be either an openable stream (with a specific MIME type),
156 public final static class Document {
157 private Document() {
161 * Unique ID of a document. This ID is both provided by and interprete
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_minidom.py 12 from xml.dom.minidom import parse, Node, Document, parseString
59 self.confirm(isinstance(dom,Document))
166 dom = Document()
187 dom = Document()
215 dom = Document()
241 dom = Document()
262 dom = Document()
273 dom = Document()
283 dom = Document()
295 dom = Document()
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_minidom.py 12 from xml.dom.minidom import parse, Node, Document, parseString
59 self.confirm(isinstance(dom,Document))
166 dom = Document()
187 dom = Document()
215 dom = Document()
241 dom = Document()
262 dom = Document()
273 dom = Document()
283 dom = Document()
295 dom = Document()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_minidom.py 12 from xml.dom.minidom import parse, Node, Document, parseString
59 self.confirm(isinstance(dom,Document))
166 dom = Document()
187 dom = Document()
215 dom = Document()
241 dom = Document()
262 dom = Document()
273 dom = Document()
283 dom = Document()
295 dom = Document()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_minidom.py 12 from xml.dom.minidom import parse, Node, Document, parseString
59 self.confirm(isinstance(dom,Document))
166 dom = Document()
187 dom = Document()
215 dom = Document()
241 dom = Document()
262 dom = Document()
273 dom = Document()
283 dom = Document()
295 dom = Document()
    [all...]
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/
GwtInput.java 32 import com.google.gwt.dom.client.Document;
476 addEventListener(Document.get(), "mousedown", this, true);
478 addEventListener(Document.get(), "mouseup", this, true);
480 addEventListener(Document.get(), "mousemove", this, true);
482 addEventListener(Document.get(), "keydown", this, false);
483 addEventListener(Document.get(), "keyup", this, false);
484 addEventListener(Document.get(), "keypress", this, false);

Completed in 703 milliseconds

1 2 3 4