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

<<11121314151617181920>>

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
domimplementationcreatedocument05.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;
87 doc = (Document) load("staffNS", false);
domimplementationcreatedocument07.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
60 * @param factory document factory, may not be null
78 Document doc;
80 Document newDoc;
84 doc = (Document) load("staffNS", false);
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSParser.java 17 import org.w3c.dom.Document;
24 * corresponding DOM document structure. A <code>LSParser</code> instance
28 * , when a document is first made available via the LSParser:
57 * The <code>LSParser</code> finishes to load the document. See also the
94 * Raised when loading a document and no input is specified in the
138 * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407'>Document Object Model (DOM) Level 3 Load
147 * object on the <code>Document</code> that is created, or used, by the
151 * <code>Document</code> object.
178 * <dd>[<em>optional</em>] Throw a fatal <b>"doctype-not-allowed"</b> error if a doctype node is found while parsing the document. This is
182 * <dd>[<em>required</em>] (<em>default</em>) Allow doctype nodes in the document. </dd
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentGeteEementById.java 3 import org.w3c.dom.Document;
12 * Invoke the getElementById method on this Document object with an invalid
52 Document doc;
55 doc = (Document) load("staffNS", builder);
DocumentTypeInternalSubset.java 4 import org.w3c.dom.Document;
52 Document doc;
58 doc = (Document) load("staffNS", builder);
DocumentTypePublicId.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
25 import org.w3c.dom.Document;
71 Document doc;
77 doc = (Document) load("staffNS", builder);
DocumentTypeSystemId.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
26 import org.w3c.dom.Document;
68 Document doc;
73 doc = (Document) load("staffNS", builder);
ElementRemoveAttributeNS.java 5 import org.w3c.dom.Document;
51 Document doc;
56 doc = (Document) load("staff", builder);
GetElementById.java 3 and is a derived work from the source document.
4 The source document contained the following notice:
24 import org.w3c.dom.Document;
30 * The "getElementById(elementId)" method for a Document should return an
33 * Invoke method getElementById(elementId) on this document with elementId
75 // Document doc;
78 // doc = (Document) load("staffNS", builder);
84 Document doc;
86 doc = (Document) load("staffNS", builder);
InternalSubset.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
26 import org.w3c.dom.Document;
70 Document doc;
73 doc = (Document) load("staff2", builder);
OwnerDocument.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
25 import org.w3c.dom.Document;
32 * node itself is a DocumentType which is not used with any document yet.
35 * document. The DocumentType returned should be null.
68 Document doc;
70 doc = (Document) load("staff", builder);
PublicId.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
26 import org.w3c.dom.Document;
69 Document doc;
72 doc = (Document) load("staffNS", builder);
SystemId.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("staffNS", builder);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CDATASection.cpp 25 #include "core/dom/Document.h"
29 inline CDATASection::CDATASection(Document* document, const String& data)
30 : Text(document, data, CreateText)
35 PassRefPtr<CDATASection> CDATASection::create(Document* document, const String& data)
37 return adoptRef(new CDATASection(document, data));
57 return create(document(), data);
Comment.cpp 25 #include "core/dom/Document.h"
29 inline Comment::Comment(Document* document, const String& text)
30 : CharacterData(document, text, CreateOther)
35 PassRefPtr<Comment> Comment::create(Document* document, const String& text)
37 return adoptRef(new Comment(document, text));
52 return create(document(), data());
TreeScope.h 38 class Document;
50 friend class Document;
64 Document* documentScope() const { return m_documentScope; }
107 // node that outlives its scope to still have a valid document
133 TreeScope(ContainerNode*, Document*);
134 TreeScope(Document*);
139 void setDocumentScope(Document* document)
141 ASSERT(document);
143 m_documentScope = document;
    [all...]
TreeScopeAdopter.cpp 29 #include "core/dom/Document.h"
43 // If an element is moved from a document and then eventually back again the collection cache for
45 // of the document it was moved to. By increasing the DOMTreeVersion of the donating document here
47 Document* oldDocument = m_oldScope->documentScope();
48 Document* newDocument = m_newScope->documentScope();
83 void TreeScopeAdopter::moveTreeToNewDocument(Node* root, Document* oldDocument, Document* newDocument) const
94 static Document* oldDocumentDidMoveToNewDocumentWasCalledWith = 0;
96 void TreeScopeAdopter::ensureDidMoveToNewDocumentWasCalled(Document* oldDocument
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
ApplyBlockElementCommand.h 41 ApplyBlockElementCommand(Document*, const QualifiedName& tagName, const AtomicString& inlineStyle);
42 ApplyBlockElementCommand(Document*, const QualifiedName& tagName);
InsertParagraphSeparatorCommand.h 37 static PassRefPtr<InsertParagraphSeparatorCommand> create(Document* document, bool useDefaultParagraphElement = false, bool pasteBlockqutoeIntoUnquotedArea = false)
39 return adoptRef(new InsertParagraphSeparatorCommand(document, useDefaultParagraphElement, pasteBlockqutoeIntoUnquotedArea));
43 InsertParagraphSeparatorCommand(Document*, bool useDefaultParagraphElement, bool pasteBlockqutoeIntoUnquotedArea);
RemoveCSSPropertyCommand.h 38 static PassRefPtr<RemoveCSSPropertyCommand> create(Document* document, PassRefPtr<Element> element, CSSPropertyID property)
40 return adoptRef(new RemoveCSSPropertyCommand(document, element, property));
44 RemoveCSSPropertyCommand(Document*, PassRefPtr<Element>, CSSPropertyID);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLEmbedElement.h 32 static PassRefPtr<HTMLEmbedElement> create(const QualifiedName&, Document*, bool createdByParser);
35 HTMLEmbedElement(const QualifiedName&, Document*, bool createdByParser);
HTMLKeygenElement.h 35 static PassRefPtr<HTMLKeygenElement> create(const QualifiedName& tagName, Document* document, HTMLFormElement* form)
37 return adoptRef(new HTMLKeygenElement(tagName, document, form));
43 HTMLKeygenElement(const QualifiedName&, Document*, HTMLFormElement*);
HTMLMarqueeElement.h 36 static PassRefPtr<HTMLMarqueeElement> create(const QualifiedName&, Document*);
55 HTMLMarqueeElement(const QualifiedName&, Document*);
HTMLPreElement.cpp 35 inline HTMLPreElement::HTMLPreElement(const QualifiedName& tagName, Document* document)
36 : HTMLElement(tagName, document)
41 PassRefPtr<HTMLPreElement> HTMLPreElement::create(const QualifiedName& tagName, Document* document)
43 return adoptRef(new HTMLPreElement(tagName, document));
HTMLQuoteElement.cpp 27 #include "core/dom/Document.h"
34 inline HTMLQuoteElement::HTMLQuoteElement(const QualifiedName& tagName, Document* document)
35 : HTMLElement(tagName, document)
41 PassRefPtr<HTMLQuoteElement> HTMLQuoteElement::create(const QualifiedName& tagName, Document* document)
43 return adoptRef(new HTMLQuoteElement(tagName, document));
49 document()->styleSheetCollection()->setUsesBeforeAfterRulesOverride(true);

Completed in 243 milliseconds

<<11121314151617181920>>