HomeSort by relevance Sort by last modified time
    Searched refs:Document (Results 201 - 225 of 2127) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetElementsByTagNameNS.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;
35 * The "getElementsByTagNameNS(namespaceURI,localName)" method for a Document
39 * Invoke method getElementsByTagNameNS(namespaceURI,localName) on this document
72 Document doc;
74 doc = (Document) load("staffNS", builder);
81 Document doc;
86 doc = (Document) load("staffNS", builder);
96 Document doc
    [all...]
ElementGetElementsByTagNameNS.java 4 import org.w3c.dom.Document;
12 * encountered in a preorder traversal of the Document tree. Invoke
51 Document doc;
54 doc = (Document) load("staffNS", builder);
61 Document doc;
70 doc = (Document) load("staffNS", builder);
88 Document doc;
91 doc = (Document) load("staffNS", builder);
ElementHasAttributeNS.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;
75 Document doc;
79 doc = (Document) load("staffNS", builder);
87 Document doc;
92 doc = (Document) load("staff", builder);
100 Document doc;
107 doc = (Document) load("staff", builder);
NamespaceURI.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;
78 // Document doc;
83 // doc = (Document) load("staffNS", builder);
92 Document doc;
97 doc = (Document) load("staffNS", builder);
107 Document doc;
111 doc = (Document) load("staffNS", builder);
119 Document doc
    [all...]
Prefix.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;
77 Document doc;
80 doc = (Document) load("staffNS", builder);
86 Document doc;
91 doc = (Document) load("staffNS", builder);
100 Document doc;
104 doc = (Document) load("staffNS", builder);
112 Document doc
    [all...]
CreateAttributeNS.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;
65 Document doc;
67 doc = (Document) load("staffNS", builder);
83 Document doc;
85 doc = (Document) load("staffNS", builder);
100 Document doc;
131 doc = (Document) load("staffNS", builder);
148 Document doc
    [all...]
CreateElementNS.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;
34 * The "createElementNS(namespaceURI,qualifiedName)" method for a Document
38 * Document with namespaceURI being the literal string
83 Document doc;
85 doc = (Document) load("staffNS", builder);
101 Document doc;
103 doc = (Document) load("staffNS", builder);
118 Document doc
    [all...]
DOMImplementationHasFeature.java 7 import org.w3c.dom.Document;
16 * Retrieve the entire DOM document and invoke its "getImplementation()" method.
56 Document doc;
59 doc = (Document) load("staff", builder);
65 Document doc;
68 doc = (Document) load("staff", builder);
74 Document doc;
90 doc = (Document) load("staffNS", builder);
109 Document doc;
112 doc = (Document) load("staffNS", builder)
    [all...]
GetAttributeNS.java 3 and is a derived work from the source document.
4 The source document contained the following notice:
26 import org.w3c.dom.Document;
80 // Document doc;
84 // doc = (Document) load("staffNS", builder);
94 Document doc;
100 doc = (Document) load("staffNS", builder);
114 Document doc;
118 doc = (Document) load("staffNS", builder);
130 Document doc
    [all...]
HasAttributeNS.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;
76 Document doc;
80 doc = (Document) load("staffNS", builder);
89 Document doc;
93 doc = (Document) load("staffNS", builder);
102 Document doc;
106 doc = (Document) load("staffNS", builder);
118 // Document doc
    [all...]
NamedNodeMapGetNamedItemNS.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;
80 // Document doc;
89 // doc = (Document) load("staffNS", builder);
101 Document doc;
107 doc = (Document) load("staffNS", builder);
118 Document doc;
126 doc = (Document) load("staffNS", builder);
139 Document doc
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
CookieJar.cpp 34 #include "core/dom/Document.h"
46 static WebKit::WebCookieJar* toCookieJar(const Document* document)
48 if (!document || !document->frame())
50 WebKit::WebCookieJar* cookieJar = document->frame()->loader()->client()->cookieJar();
58 String cookies(const Document* document, const KURL& url)
60 WebKit::WebCookieJar* cookieJar = toCookieJar(document);
63 return cookieJar->cookies(url, document->firstPartyForCookies())
    [all...]
DocumentThreadableLoader.h 47 class Document;
56 static void loadResourceSynchronously(Document*, const ResourceRequest&, ThreadableLoaderClient&, const ThreadableLoaderOptions&);
57 static PassRefPtr<DocumentThreadableLoader> create(Document*, ThreadableLoaderClient*, const ResourceRequest&, const ThreadableLoaderOptions&);
76 DocumentThreadableLoader(Document*, ThreadableLoaderClient*, BlockingBehavior, const ResourceRequest&, const ThreadableLoaderOptions&);
108 Document* m_document;
  /libcore/luni/src/main/java/javax/xml/parsers/
DocumentBuilder.java 27 import org.w3c.dom.Document;
34 * Defines the API to obtain DOM Document instances from an XML
35 * document. Using this class, an application programmer can obtain a
36 * {@link Document} from XML.<p>
46 * implementation use a SAX parser to parse XML document into a
47 * <code>Document</code>. It merely requires that the implementation
88 * document and return a new DOM {@link Document} object.
93 * @return <code>Document</code> result of parsing the
100 public Document parse(InputStream is
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontSelector.h 43 class Document;
49 static PassRefPtr<CSSFontSelector> create(Document* document)
51 return adoptRef(new CSSFontSelector(document));
72 Document* document() const { return m_document; } function in class:WebCore::CSSFontSelector
77 CSSFontSelector(Document*);
83 Document* m_document;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
markup.h 37 class Document;
51 PassRefPtr<DocumentFragment> createFragmentFromMarkup(Document*, const String& markup, const String& baseURL, ParserContentPolicy = AllowScriptingContent);
52 PassRefPtr<DocumentFragment> createFragmentFromMarkupWithContext(Document*, const String& markup, unsigned fragmentStart, unsigned fragmentEnd, const String& baseURL, ParserContentPolicy);
53 PassRefPtr<DocumentFragment> createFragmentFromNodes(Document*, const Vector<Node*>&);
55 PassRefPtr<DocumentFragment> createFragmentForTransformToFragment(const String&, const String& sourceMIMEType, Document* outputDoc);
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
WebVTTElement.h 44 static PassRefPtr<WebVTTElement> create(const WebVTTNodeType, Document*);
45 static PassRefPtr<WebVTTElement> create(const QualifiedName&, Document*);
46 PassRefPtr<HTMLElement> createEquivalentHTMLElement(Document*);
73 WebVTTElement(const QualifiedName&, Document*);
74 WebVTTElement(WebVTTNodeType, Document*);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
importNode02.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
35 * Document should import the given importedNode into that Document.
39 * a different document. Invoke method importNode(importedNode,deep) on
40 * this document. Method should return a CDATASection node whose value matches
41 * the above string. The returned node should belong to this document whose systemId is "staff.dtd"
44 * @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>
50 * @param factory document factory, may not be nul
    [all...]
importNode03.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
35 * Document should import the given importedNode into that Document.
39 * a different document. Invoke method importNode(importedNode,deep) on
40 * this document. Method should return a comment node whose value matches
41 * the above string. The returned node should belong to this document whose
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>
51 * @param factory document factory, may not be nul
    [all...]
importNode05.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
35 * Document should import the given importedNode into that Document.
38 * Retrieve element "emp:address" from staffNS.xml document.
39 * Invoke method importNode(importedNode,deep) on this document
43 * belong to this document whose systemId is "staff.dtd"
46 * @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>
52 * @param factory document factory, may not be nul
    [all...]
importNode08.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
35 * Document should import the given importedNode into that Document.
38 * Create a DocumentFragment in a different document.
39 * Invoke method importNode(importedNode,deep) on this document
42 * to this document whose systemId is "staff.dtd"
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>
52 * @param factory document factory, may not be nul
    [all...]
importNode10.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
35 * Document should import the given importedNode into that Document.
39 * Create an entity reference whose name is "entRef1" in a different document.
41 * Invoke method importNode(importedNode,deep) on this document with importedNode
44 * belongs to this document whose systemId is "staff.dtd".
47 * @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>
53 * @param factory document factory, may not be nul
    [all...]
importNode12.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
35 * Document should import the given importedNode into that Document.
38 * Retrieve entity "ent4" from staffNS.xml document.
39 * Invoke method importNode(importedNode,deep) on this document with deep as false.
41 * The returned node should belong to this document whose systemId is "staffNS.dtd"
44 * @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>
50 * @param factory document factory, may not be nul
    [all...]
importNode13.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
35 * Document should import the given importedNode into that Document.
38 * Retrieve notation named "notation1" from document staffNS.xml.
42 * The returned node should belong to this document whose systemId is "staff.dtd"
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>
51 * @param factory document factory, may not be null
70 Document doc
    [all...]
importNode14.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
35 * Document should import the given importedNode into that Document.
39 * in a different document. Invoke method importNode(importedNode,deep) on this document.
41 * parameters. The returned PI should belong to this document whose systemId is "staff.dtd".
44 * @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>
50 * @param factory document factory, may not be nul
    [all...]

Completed in 3504 milliseconds

1 2 3 4 5 6 7 891011>>