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

1 2 3 4 5 6 7 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
importNode15.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 text node whose value matches
41 * the above string. The returned node should belong to 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 nul
    [all...]
nodegetownerdocument02.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
34 * The method getOwnerDocument returns the Document object associated with this node
36 * Create a new Document node. Since this node is not used with any Document yet
37 * verify if the ownerDocument is null. Create a new element Node on the new Document
48 * @param factory document factory, may not be null
72 Document doc;
73 Document newDoc;
75 Document ownerDocDoc
    [all...]
createDocument01.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
38 * Retrieve the DOMImplementation on the XMLNS Document.
54 * @param factory document factory, may not be null
74 Document doc;
78 Document aNewDoc;
79 doc = (Document) load("staffNS", false);
createDocument02.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
51 * @param factory document factory, may not be null
72 Document doc;
76 Document aNewDoc;
77 doc = (Document) load("staffNS", false);
createDocument03.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
36 * if parameter doctype has been used with a different document.
39 * this domimplementation where doctype is the type of this document.
51 * @param factory document factory, may not be null
71 Document doc;
74 Document aNewDoc;
75 doc = (Document) load("staffNS", false);
createDocument06.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
55 * @param factory document factory, may not be null
75 Document doc;
79 Document aNewDoc;
80 doc = (Document) load("staffNS", false);
createDocument07.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
35 * DOMImplementation should return a new xml Document object of the
36 * specified type with its document element given that all parameters are
42 * Method should return a new xml Document as specified by the listed parameters.
51 * @param factory document factory, may not be null
71 Document doc;
75 Document aNewDoc;
78 doc = (Document) load("staffNS", false);
83 assertEquals("nodeName", "#document", nodeName)
    [all...]
documentgetelementsbytagnameNS01.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
36 * in a preorder traversal of the Document tree.
38 * Invoke the getElementsByTagNameNS method on a new Document object with the values of
50 * @param factory document factory, may not be null
68 Document doc;
69 Document newDoc;
76 doc = (Document) load("staffNS", false);
domimplementationcreatedocument04.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
62 * @param factory document factory, may not be null
80 Document doc;
82 Document newDoc;
88 doc = (Document) load("staffNS", false);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetAttributeNodeNS.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;
81 doc = (Document) load("staffNS", builder);
89 Document doc;
94 doc = (Document) load("staffNS", builder);
HasAttributes.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;
71 Document doc;
75 doc = (Document) load("staff", builder);
82 Document doc;
86 doc = (Document) load("staff", builder);
OwnerElement.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;
75 Document doc;
82 doc = (Document) load("staff", builder);
92 Document doc;
95 doc = (Document) load("staff", builder);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CustomElement.h 44 class Document;
66 static void didEnterDocument(Element*, Document*);
67 static void didLeaveDocument(Element*, Document*);
CustomElementRegistrationContext.h 46 class Document;
57 void registerElement(Document*, CustomElementConstructorBuilder*, const AtomicString& type, CustomElement::NameSet validNames, ExceptionState&);
60 PassRefPtr<Element> createCustomTagElement(Document*, const QualifiedName&);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
InsertListCommand.h 39 static PassRefPtr<InsertListCommand> create(Document* document, Type listType)
41 return adoptRef(new InsertListCommand(document, listType));
44 static PassRefPtr<HTMLElement> insertList(Document*, Type);
49 InsertListCommand(Document*, Type);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAudioElement.cpp 35 HTMLAudioElement::HTMLAudioElement(const QualifiedName& tagName, Document* document, bool createdByParser)
36 : HTMLMediaElement(tagName, document, createdByParser)
42 PassRefPtr<HTMLAudioElement> HTMLAudioElement::create(const QualifiedName& tagName, Document* document, bool createdByParser)
44 RefPtr<HTMLAudioElement> audioElement(adoptRef(new HTMLAudioElement(tagName, document, createdByParser)));
49 PassRefPtr<HTMLAudioElement> HTMLAudioElement::createForJSConstructor(Document* document, const String& src)
51 RefPtr<HTMLAudioElement> audio = adoptRef(new HTMLAudioElement(audioTag, document, false));
HTMLHtmlElement.cpp 28 #include "core/dom/Document.h"
39 HTMLHtmlElement::HTMLHtmlElement(const QualifiedName& tagName, Document* document)
40 : HTMLElement(tagName, document)
46 PassRefPtr<HTMLHtmlElement> HTMLHtmlElement::create(Document* document)
48 return adoptRef(new HTMLHtmlElement(htmlTag, document));
51 PassRefPtr<HTMLHtmlElement> HTMLHtmlElement::create(const QualifiedName& tagName, Document* document)
53 return adoptRef(new HTMLHtmlElement(tagName, document));
    [all...]
HTMLImport.h 39 class Document;
51 Document* master();
60 virtual Document* document() const = 0;
HTMLMapElement.h 35 static PassRefPtr<HTMLMapElement> create(Document*);
36 static PassRefPtr<HTMLMapElement> create(const QualifiedName&, Document*);
47 HTMLMapElement(const QualifiedName&, Document*);
HTMLUListElement.cpp 33 HTMLUListElement::HTMLUListElement(const QualifiedName& tagName, Document* document)
34 : HTMLElement(tagName, document)
40 PassRefPtr<HTMLUListElement> HTMLUListElement::create(Document* document)
42 return adoptRef(new HTMLUListElement(ulTag, document));
45 PassRefPtr<HTMLUListElement> HTMLUListElement::create(const QualifiedName& tagName, Document* document)
47 return adoptRef(new HTMLUListElement(tagName, document));
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
XSSAuditorDelegate.h 37 class Document;
63 explicit XSSAuditorDelegate(Document*);
71 Document* m_document;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGDocument.h 24 #include "core/dom/Document.h"
33 class SVGDocument FINAL : public Document {
58 inline SVGDocument* toSVGDocument(Document* document)
60 ASSERT_WITH_SECURITY_IMPLICATION(!document || document->isSVGDocument());
61 return static_cast<SVGDocument*>(document);
64 inline const SVGDocument* toSVGDocument(const Document* document)
66 ASSERT_WITH_SECURITY_IMPLICATION(!document || document->isSVGDocument())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechRecognitionEvent.h 36 class Document;
58 Document* interpretation() { return 0; }
59 Document* emma() { return 0; }
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodegetownerdocument.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
40 * @param factory document factory, may not be null
58 Document doc;
61 Document ownerDocument;
64 doc = (Document) load("hc_staff", false);
nodegetownerdocument.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
31 * The "getOwnerDocument()" method returns the Document
34 * Retrieve the second employee and examine Document
36 * the "getDocumentElement()" on the Document which will
47 * @param factory document factory, may not be null
65 Document doc;
68 Document ownerDocument;
71 doc = (Document) load("staff", false);

Completed in 1351 milliseconds

1 2 3 4 5 6 7 8 91011>>