HomeSort by relevance Sort by last modified time
    Searched refs:Document (Results 276 - 300 of 1785) sorted by null

<<11121314151617181920>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodereplacechildnewchilddiffdocument.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
33 * created from a different document than the one that
38 * document. An attempt to make such a replacement
51 * @param factory document factory, may not be null
70 Document doc1;
71 Document doc2;
77 doc1 = (Document) load("staff", false);
78 doc2 = (Document) load("staff", true);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
attrgetownerelement04.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
34 * Import an attribute node to another document. If an Attr node is imported, its
45 * @param factory document factory, may not be null
70 Document doc;
71 Document docImp;
77 doc = (Document) load("staffNS", false);
78 docImp = (Document) load("staff", false);
createDocument04.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
40 * Doctype is the type of this document.
52 * @param factory document factory, may not be null
73 Document doc;
76 Document aNewDoc;
77 doc = (Document) load("staffNS", false);
78 aNewDoc = (Document) load("staffNS", false);
documentimportnode02.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
34 * The importNode method imports a node from another document to this document.
36 * altered or removed from the original document but a new copy of the source node
40 * element node which is retreived by its elementId="CANADA", into the another document.
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 null
77 Document doc
    [all...]
documentimportnode05.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
34 * The importNode method imports a node from another document to this document.
36 * altered or removed from the original document but a new copy of the source node
40 * into the another document.
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 null
77 Document doc
    [all...]
documentimportnode06.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
34 * The importNode method imports a node from another document to this document.
38 * Using the method importNode with deep=false, try to import this document object to itself.
39 * Since Document nodes cannot be imported, a NOT_SUPPORTED_ERR should be raised.
43 * @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>
49 * @param factory document factory, may not be null
73 Document doc
    [all...]
documentimportnode15.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
34 * The importNode method imports a node from another document to this document.
36 * altered or removed from the original document but a new copy of the source node
40 * Document. Verify if the node has been imported correctly by checking the value of the
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
76 Document doc
    [all...]
documentimportnode17.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
34 * The importNode method imports a node from another document to this document.
36 * altered or removed from the original document but a new copy of the source node
40 * Document. Verify if the node has been imported correctly by checking the value of the
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
76 Document doc
    [all...]
documentimportnode18.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
34 * The importNode method imports a node from another document to this document.
36 * altered or removed from the original document but a new copy of the source node
40 * Document. Verify if the node has been imported correctly by checking the PITarget and
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
76 Document doc
    [all...]
elementsetattributenodens05.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
35 * an WRONG_DOCUMENT_ERR if newAttr was created from a different document
49 * @param factory document factory, may not be null
74 Document doc;
75 Document docAlt;
79 doc = (Document) load("staffNS", true);
80 docAlt = (Document) load("staffNS", true);
importNode04.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 * Create a Comment child node for the Document Fragment.
40 * Invoke method importNode(importedNode,deep) on this document
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...]
importNode06.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
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...]
importNode07.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.
37 * If this document defines default attributes for this element name (importedNode),
40 * Create an element whose name is "emp:employee" in a different document.
41 * Invoke method importNode(importedNode,deep) on this document which
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>
53 * @param factory document factory, may not be nul
    [all...]
importNode11.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 * If the Document provides a definition for the entity name, its value is assigned.
40 * Create an entity reference whose name is "ent3" in a different document.
41 * Invoke method importNode(importedNode,deep) on this document with importedNode
44 * in this document.
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
    [all...]
setAttributeNodeNS05.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
36 * was created from a different document than the one that
37 * created this document.
41 * attribute was created from a document other than the
45 * from the Document interface.
56 * @param factory document factory, may not be null
77 Document doc1;
78 Document doc2;
83 doc1 = (Document) load("staffNS", true)
    [all...]
setNamedItemNS02.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
36 * created from a different document than the one that created this map.
38 * Create an attr node in a different document with qualifiedName equals
40 * Access the namednodemap of the first "address" element in this document.
53 * @param factory document factory, may not be null
74 Document doc;
75 Document anotherDoc;
81 doc = (Document) load("staffNS", true);
82 anotherDoc = (Document) load("staffNS", true)
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentGeteEementById.java 8 import org.w3c.dom.Document;
17 * Invoke the getElementById method on this Document object with an invalid
27 @TestTargetClass(Document.class)
64 Document doc;
67 doc = (Document) load("staffNS", builder);
GetElementById.java 3 and is a derived work from the source document.
4 The source document contained the following notice:
29 import org.w3c.dom.Document;
35 * The "getElementById(elementId)" method for a Document should return an
38 * Invoke method getElementById(elementId) on this document with elementId
49 @TestTargetClass(Document.class)
81 // Document doc;
84 // doc = (Document) load("staffNS", builder);
96 Document doc;
98 doc = (Document) load("staffNS", builder)
    [all...]
ElementGetElementsByTagNameNS.java 9 import org.w3c.dom.Document;
17 * encountered in a preorder traversal of the Document tree. Invoke
63 Document doc;
66 doc = (Document) load("staffNS", builder);
79 Document doc;
88 doc = (Document) load("staffNS", builder);
112 Document doc;
115 doc = (Document) load("staffNS", builder);
ElementHasAttribute.java 9 import org.w3c.dom.Document;
61 Document doc;
64 doc = (Document) load("staff", builder);
72 // Document doc;
76 // doc = (Document) load("staffNS", builder);
90 Document doc;
95 doc = (Document) load("staff", builder);
111 Document doc;
116 doc = (Document) load("staff", builder);
ElementHasAttributeNS.java 3 and is a derived work from the source document.
4 The source document contained the following notice:
30 import org.w3c.dom.Document;
87 Document doc;
91 doc = (Document) load("staffNS", builder);
105 Document doc;
110 doc = (Document) load("staff", builder);
124 Document doc;
131 doc = (Document) load("staff", builder);
  /libcore/support/src/test/java/tests/support/
Support_Xml.java 22 import org.w3c.dom.Document;
29 public static Document domOf(String xml) throws Exception {
41 public static String firstChildTextOf(Document doc) throws Exception {
47 public static Element firstElementOf(Document doc) throws Exception {
  /external/webkit/WebCore/inspector/
InspectorDOMAgent.h 50 class Document;
98 void setDocument(Document* document);
111 void startListening(Document* document);
112 void stopListening(Document* document);
137 Document* mainFrameDocument() const;
138 String documentURLString(Document* document) const
    [all...]
  /external/webkit/WebCore/page/
DragController.h 37 class Document;
70 void setDragInitiator(Document* initiator) { m_dragInitiator = initiator; m_didInitiateDrag = true; }
71 Document* dragInitiator() const { return m_dragInitiator; }
76 Document* documentUnderMouse() const { return m_documentUnderMouse; }
106 void mouseMovedIntoDocument(Document*);
117 Document* m_documentUnderMouse; // The document the mouse was last dragged over.
118 Document* m_dragInitiator; // The Document (if any) that initiated the drag.
  /external/webkit/WebCore/platform/qt/
CookieJarQt.cpp 32 #include "Document.h"
44 static QNetworkCookieJar *cookieJar(const Document *document)
46 if (!document)
48 Frame *frame = document->frame();
61 void setCookies(Document* document, const KURL& url, const String& value)
64 QUrl p(document->firstPartyForCookies());
65 QNetworkCookieJar* jar = cookieJar(document);
82 String cookies(const Document* document, const KURL& url
    [all...]

Completed in 301 milliseconds

<<11121314151617181920>>