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

<<11121314151617181920>>

  /external/webkit/Source/WebCore/workers/
DefaultSharedWorkerRepository.h 48 class Document;
65 // Notification that a document has been detached.
66 void documentDetached(Document*);
71 bool hasSharedWorkers(Document*);
  /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);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
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);
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/webkit/Source/WebCore/platform/network/soup/
CookieJarSoup.cpp 25 #include "Document.h"
60 void setCookies(Document* document, const KURL& url, const String& value)
68 GOwnPtr<SoupURI> firstParty(soup_uri_new(document->firstPartyForCookies().string().utf8().data()));
76 String cookies(const Document* /*document*/, const KURL& url)
92 String cookieRequestHeaderFieldValue(const Document* /*document*/, const KURL& url)
108 bool cookiesEnabled(const Document* /*document*/)
    [all...]
  /external/webkit/Source/WebCore/platform/win/
ClipboardUtilitiesWin.h 35 class Document;
62 PassRefPtr<DocumentFragment> fragmentFromFilenames(Document*, const IDataObject*);
63 PassRefPtr<DocumentFragment> fragmentFromFilenames(Document*, const DragDataMap*);
64 PassRefPtr<DocumentFragment> fragmentFromHTML(Document*, IDataObject*);
65 PassRefPtr<DocumentFragment> fragmentFromHTML(Document*, const DragDataMap*);
66 PassRefPtr<DocumentFragment> fragmentFromCFHTML(Document*, const String& cfhtml);

Completed in 206 milliseconds

<<11121314151617181920>>