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

1 2 3 4 5 67 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodegetownerdocumentnull.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
32 * node itself is a document.
41 * @param factory document factory, may not be null
59 Document doc;
60 Document ownerDocument;
61 doc = (Document) load("staff", false);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentGetElementsByTagnameNS.java 3 import org.w3c.dom.Document;
14 * encountered in a preorder traversal of the Document tree.
16 * Invoke the getElementsByTagNameNS method on a new Document object with the
59 Document doc;
60 Document newDoc;
67 doc = (Document) load("staffNS", builder);
75 Document doc;
80 doc = (Document) load("staffNS", builder);
89 Document doc;
91 doc = (Document) load("staffNS", builder)
    [all...]
IsSupported.java 6 import org.w3c.dom.Document;
17 * Retrieve the root node of the DOM document by invoking the
58 Document doc;
61 doc = (Document) load("staff", builder);
67 Document doc;
70 doc = (Document) load("staff", builder);
76 Document doc;
79 doc = (Document) load("staff", builder);
85 Document doc;
88 doc = (Document) load("staff", builder)
    [all...]
AttrGetOwnerElement.java 4 import org.w3c.dom.Document;
37 // Document doc;
46 // doc = (Document) load("staffNS", builder);
59 Document doc;
65 doc = (Document) load("staffNS", builder);
74 Document doc;
77 doc = (Document) load("staffNS", builder);
83 Document doc;
84 Document docImp;
91 doc = (Document) load("staffNS", builder)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DateTimeFieldElements.h 39 static PassRefPtr<DateTimeAMPMFieldElement> create(Document*, FieldOwner&, const Vector<String>&);
42 DateTimeAMPMFieldElement(Document*, FieldOwner&, const Vector<String>&);
54 static PassRefPtr<DateTimeDayFieldElement> create(Document*, FieldOwner&, const String& placeholder, const Range&);
57 DateTimeDayFieldElement(Document*, FieldOwner&, const String& placeholder, const Range&);
69 DateTimeHourFieldElementBase(Document*, FieldOwner&, const Range&, const Range& hardLimits, const Step&);
82 static PassRefPtr<DateTimeHour11FieldElement> create(Document*, FieldOwner&, const Range&, const Step&);
85 DateTimeHour11FieldElement(Document*, FieldOwner&, const Range& hour23Range, const Step&);
96 static PassRefPtr<DateTimeHour12FieldElement> create(Document*, FieldOwner&, const Range&, const Step&);
99 DateTimeHour12FieldElement(Document*, FieldOwner&, const Range& hour23Range, const Step&);
110 static PassRefPtr<DateTimeHour23FieldElement> create(Document*, FieldOwner&, const Range&, const Step&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
DocumentTimeline.h 44 class Document;
47 // DocumentTimeline is constructed and owned by Document, and tied to its lifecycle.
51 static PassRefPtr<DocumentTimeline> create(Document*);
68 DocumentTimeline(Document*);
71 Document* m_document;
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaQueryMatcher.h 30 class Document;
43 static PassRefPtr<MediaQueryMatcher> create(Document* document) { return adoptRef(new MediaQueryMatcher(document)); }
72 MediaQueryMatcher(Document*);
76 Document* m_document;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentParser.h 32 class Document;
46 // insert is used by document.write.
69 // document() will return 0 after detach() is called.
70 Document* document() const { ASSERT(m_document); return m_document; } function in class:WebCore::DocumentParser
90 // Document is expected to detach the parser before releasing its ref.
105 explicit DocumentParser(Document*);
117 // Every DocumentParser needs a pointer back to the document.
119 Document* m_document;
IgnoreDestructiveWriteCountIncrementer.h 29 #include "core/dom/Document.h"
36 explicit IgnoreDestructiveWriteCountIncrementer(Document* document)
37 : m_count(document ? &document->m_ignoreDestructiveWriteCount : 0)
ScriptRunner.h 39 class Document;
46 static PassOwnPtr<ScriptRunner> create(Document* document) { return adoptPtr(new ScriptRunner(document)); }
57 explicit ScriptRunner(Document*);
61 Document* m_document;
CustomElementRegistry.h 47 class Document;
58 CustomElementDefinition* registerElement(Document*, CustomElementConstructorBuilder*, const AtomicString& name, CustomElement::NameSet validNames, ExceptionState&);
DocumentFragment.h 36 static PassRefPtr<DocumentFragment> create(Document*);
45 DocumentFragment(Document*, ConstructionType = CreateContainer);
DocumentFragment.idl 22 ConstructorCallWith=Document
TemplateContentDocumentFragment.h 36 static PassRefPtr<TemplateContentDocumentFragment> create(Document* document, const Element* host)
38 return adoptRef(new TemplateContentDocumentFragment(document, host));
45 TemplateContentDocumentFragment(Document* document, const Element* host)
46 : DocumentFragment(document, CreateDocumentFragment)
  /external/chromium_org/third_party/WebKit/Source/core/editing/
UnlinkCommand.cpp 33 UnlinkCommand::UnlinkCommand(Document* document)
34 : CompositeEditCommand(document)
44 removeStyledElement(HTMLAnchorElement::create(document()));
TypingCommand.h 60 static void deleteSelection(Document*, Options = 0);
61 static void deleteKeyPressed(Document*, Options = 0, TextGranularity = CharacterGranularity);
62 static void forwardDeleteKeyPressed(Document*, Options = 0, TextGranularity = CharacterGranularity);
63 static void insertText(Document*, const String&, Options, TextCompositionType = TextCompositionNone);
64 static void insertText(Document*, const String&, const VisibleSelection&, Options, TextCompositionType = TextCompositionNone);
65 static void insertLineBreak(Document*, Options);
66 static void insertParagraphSeparator(Document*, Options);
67 static void insertParagraphSeparatorInQuotedContent(Document*);
81 static PassRefPtr<TypingCommand> create(Document* document, ETypingCommand command, const String& text = "", Options options = 0, TextGranularity granularity (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLImportsController.h 54 static void provideTo(Document*);
56 explicit HTMLImportsController(Document*);
62 virtual Document* document() const OVERRIDE;
82 Document* m_master;
  /external/chromium_org/third_party/WebKit/Source/core/loader/
PrerendererClient.h 39 class Document;
  /external/chromium_org/third_party/WebKit/Source/core/page/animation/
AnimationController.h 40 class Document;
60 unsigned numberOfActiveAnimations(Document*) const; // To be used only for testing
70 void suspendAnimationsForDocument(Document*);
71 void resumeAnimationsForDocument(Document*);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderReplica.h 38 static RenderReplica* createAnonymous(Document*);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFitToViewBox.h 33 class Document;
46 ASSERT(target->document());
49 bool valueIsValid = !value.isNull() && parseViewBox(target->document(), value, viewBox);
64 static bool parseViewBox(Document*, const LChar*& start, const LChar* end, FloatRect& viewBox, bool validate = true);
65 static bool parseViewBox(Document*, const UChar*& start, const UChar* end, FloatRect& viewBox, bool validate = true);
68 static bool parseViewBox(Document*, const String&, FloatRect&);
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
SVGFEImage.h 32 class Document;
39 static PassRefPtr<FEImage> createWithIRIReference(Filter*, Document*, const String&, const SVGPreserveAspectRatio&);
51 FEImage(Filter*, Document*, const String&, const SVGPreserveAspectRatio&);
59 Document* m_document;
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathResult.h 37 class Document;
56 static PassRefPtr<XPathResult> create(Document* document, const XPath::Value& value) { return adoptRef(new XPathResult(document, value)); }
76 XPathResult(Document*, const XPath::Value&);
82 RefPtr<Document> m_document;
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
importNode16.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
35 * Document should raise NOT_SUPPORTED_ERR DOMException if
38 * Retrieve document staff.xml and get its type.
40 * contains the document type of the staff.xml.
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>
46 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Core-Document-importNode')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NOT_SUPPORTED_ERR'])">http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Core-Document-importNode')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NOT_SUPPORTED_ERR'])</a>
52 * @param factory document factory, may not be nul
    [all...]
importNode17.java 4 and is a derived work from the source document.
5 The source document contained the following notice:
35 * Document should raise NOT_SUPPORTED_ERR DOMException if
36 * the type of node being imported is Document.
38 * Retrieve staff.xml 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>
46 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Core-Document-importNode')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NOT_SUPPORTED_ERR'])">http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Core-Document-importNode')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NOT_SUPPORTED_ERR'])</a>
52 * @param factory document factory, may not be nul
    [all...]

Completed in 2337 milliseconds

1 2 3 4 5 67 8 91011>>