/external/webkit/Source/WebCore/page/ |
PrintContext.cpp | 63 if (!m_frame->document() || !m_frame->view() || !m_frame->document()->renderer()) 71 RenderView* view = toRenderView(m_frame->document()->renderer()); 106 if (!m_frame->document() || !m_frame->view() || !m_frame->document()->renderer()) 109 RenderView* view = toRenderView(m_frame->document()->renderer()); 191 if (m_frame->document() && m_frame->document()->renderView()) 192 useViewWidth = m_frame->document()->renderView()->style()->isHorizontalWritingMode(); 248 element->document()->updateLayout() 275 Document* document = frame->document(); local [all...] |
DOMWindow.cpp | 52 #include "Document.h" 304 window->dispatchEvent(PageTransitionEvent::create(eventNames().pagehideEvent, false), window->document()); 305 window->dispatchEvent(Event::create(eventNames().unloadEvent, false, false), window->document()); 413 return document(); 418 return document() ? document()->mediaQueryMatcher()->matchMedia(media) : 0; 634 Document* document = this->document(); 635 if (!document) 749 Document* document = this->document(); local 769 Document* document = this->document(); local 1284 Document* DOMWindow::document() const function in class:WebCore::DOMWindow [all...] |
/external/webkit/Source/WebKit/chromium/src/ |
WebPageSerializerImpl.cpp | 49 // "document.write('<base href="http://www.yahoo.com/"...');" to setup base URL 64 // always uses the latest "href" attribute of base tag to set document's base 69 // the base target value from document object when appending new base tag. 70 // If there are multiple base tags in original document, we will comment all old 81 #include "Document.h" 111 Document* document, 115 , document(document) 117 , isHTMLDocument(document->isHTMLDocument() 503 Document* document = webFrame->frame()->document(); local [all...] |
/build/tools/droiddoc/templates-pdk/assets/ |
carousel.js | 60 var appList = document.getElementById("app-list"); 65 var a = document.createElement("a"); 66 var img = document.createElement("img"); 67 var br = document.createElement("br"); 68 var span = document.createElement("span"); 69 var text = document.createTextNode(droid.name); 87 var div = document.createElement("div"); 88 var imgDiv = document.createElement("div"); 89 var descDiv = document.createElement("div"); 139 var thumblist = document.getElementById(slideList);// the div containing the slide [all...] |
/build/tools/droiddoc/templates-sdk/assets/ |
carousel.js | 60 var appList = document.getElementById("app-list"); 65 var a = document.createElement("a"); 66 var img = document.createElement("img"); 67 var br = document.createElement("br"); 68 var span = document.createElement("span"); 69 var text = document.createTextNode(droid.name); 87 var div = document.createElement("div"); 88 var imgDiv = document.createElement("div"); 89 var descDiv = document.createElement("div"); 139 var thumblist = document.getElementById(slideList);// the div containing the slide [all...] |
/external/libvpx/examples/includes/ASCIIMathPHP-2.0/ |
htmlMathML.js | 14 document.createElementNS("http://www.w3.org/1998/Math/MathML", 32 if (document.createElementNS) { 33 var mmlnode = document.getElementsByTagName("span"); 50 var mmlnode = document.getElementsByTagName("math"); 80 newnode = document.createElement("span");
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8AudioContextCustom.cpp | 50 Document* document = frame->document(); 51 if (!document) 52 return throwError("AudioContext constructor associated document is unavailable", V8Proxy::ReferenceError); 58 audioContext = AudioContext::create(document); 77 audioContext = AudioContext::createOfflineContext(document, numberOfChannels, numberOfFrames, sampleRate);
|
/external/webkit/Source/WebCore/html/ |
HTMLTableSectionElement.cpp | 40 inline HTMLTableSectionElement::HTMLTableSectionElement(const QualifiedName& tagName, Document* document) 41 : HTMLTablePartElement(tagName, document) 45 PassRefPtr<HTMLTableSectionElement> HTMLTableSectionElement::create(const QualifiedName& tagName, Document* document) 47 return adoptRef(new HTMLTableSectionElement(tagName, document)); 71 row = HTMLTableRowElement::create(trTag, document());
|
HTMLTableCellElement.cpp | 35 #include "Document.h" 50 inline HTMLTableCellElement::HTMLTableCellElement(const QualifiedName& tagName, Document* document) 51 : HTMLTablePartElement(tagName, document) 57 PassRefPtr<HTMLTableCellElement> HTMLTableCellElement::create(const QualifiedName& tagName, Document* document) 59 return adoptRef(new HTMLTableCellElement(tagName, document)); 101 if (!(document()->frame()) || document()->frame()->settings()->layoutAlgorithm() != Settings::kLayoutSSR) 171 addSubresourceURL(urls, document()->completeURL(getAttribute(backgroundAttr))) [all...] |
HTMLTableRowElement.cpp | 41 HTMLTableRowElement::HTMLTableRowElement(const QualifiedName& tagName, Document* document) 42 : HTMLTablePartElement(tagName, document) 47 PassRefPtr<HTMLTableRowElement> HTMLTableRowElement::create(Document* document) 49 return adoptRef(new HTMLTableRowElement(trTag, document)); 52 PassRefPtr<HTMLTableRowElement> HTMLTableRowElement::create(const QualifiedName& tagName, Document* document) 54 return adoptRef(new HTMLTableRowElement(tagName, document)); 130 RefPtr<HTMLTableCellElement> cell = HTMLTableCellElement::create(tdTag, document()); [all...] |
/external/webkit/Source/WebCore/wml/ |
WMLTimerElement.cpp | 39 WMLTimerElement::WMLTimerElement(const QualifiedName& tagName, Document* doc) 45 PassRefPtr<WMLTimerElement> WMLTimerElement::create(const QualifiedName& tagName, Document* document) 47 return adoptRef(new WMLTimerElement(tagName, document)); 92 WMLPageState* pageState = wmlPageStateForDocument(document()); 126 if (WMLPageState* pageState = wmlPageStateForDocument(document())) 150 if (WMLPageState* pageState = wmlPageStateForDocument(document()))
|
/external/webkit/Source/WebKit/chromium/src/js/ |
DevTools.js | 63 document.addEventListener("DOMContentLoaded", devtools.domContentLoaded, false); 110 var glassPane = document.createElement("div"); 124 var glassPane = document.getElementById("glass-pane-for-drag"); 139 WebInspector._themeStyleElement = document.createElement("style"); 140 document.head.appendChild(WebInspector._themeStyleElement);
|
/libcore/luni/src/test/java/libcore/xml/ |
SimpleBuilderTest.java | 23 import org.w3c.dom.Document; 58 Document document = builder.parse(getClass().getResourceAsStream( local 61 Element root = document.getDocumentElement(); 90 list = document.getChildNodes(); 111 Document document = builder.parse(getClass().getResourceAsStream( local 114 Element root = document.getDocumentElement();
|
/libcore/luni/src/test/java/tests/api/javax/xml/parsers/ |
DocumentBuilderFactoryTest.java | 20 import org.w3c.dom.Document; 384 Document document = parser.parse(getClass().getResourceAsStream( local 389 goThroughDocument((Node) document, ""); 412 Document document = parser.parse(getClass().getResourceAsStream( local 417 goThroughDocument((Node) document, ""); 447 Document document = parser.parse(getClass().getResourceAsStream( local 452 assertNotNull(document); 470 Document document = parser.parse(getClass().getResourceAsStream( local 545 Document document = parser.parse(getClass().getResourceAsStream( local 568 Document document = parser.parse(getClass().getResourceAsStream( local 594 Document document = parser.parse(getClass().getResourceAsStream( local 613 Document document = parser.parse(getClass().getResourceAsStream( local 637 Document document = parser.parse(getClass().getResourceAsStream( local 656 Document document = parser.parse(getClass().getResourceAsStream( local [all...] |
/external/webkit/Source/WebCore/xml/ |
XSLStyleSheetLibxslt.cpp | 30 #include "Document.h" 107 xmlDocPtr XSLStyleSheet::document() function in class:WebCore::XSLStyleSheet 130 Document* document = ownerDocument(); local 131 if (!document) 133 return document->cachedResourceLoader(); 159 // The XSL transform may leave the newly-transformed document 161 // and any of its children. XML document disposal can corrupt memory 162 // if a document uses more than one symbol dictionary, so we 183 if (!document()) [all...] |
/external/webkit/Source/WebKit/gtk/tests/ |
testdomnode.c | 66 WebKitDOMDocument* document; local 73 document = webkit_web_view_get_dom_document(WEBKIT_WEB_VIEW(fixture->webView)); 74 g_assert(document); 75 g_assert(WEBKIT_DOM_IS_DOCUMENT(document)); 76 head = webkit_dom_document_get_head(document); 127 WebKitDOMDocument* document; local 133 document = webkit_web_view_get_dom_document(WEBKIT_WEB_VIEW(fixture->webView)); 134 g_assert(document); 135 body = webkit_dom_document_get_body(document); 143 p = webkit_dom_document_create_element(document, "P", NULL) [all...] |
/external/collada/include/modules/ |
daeSTLDatabase.h | 46 virtual daeInt insertDocument(daeString name, daeElement* dom, daeDocument** document = NULL, bool zaeRootDocument = false, const std::string& extractedFileURI = ""); 47 virtual daeInt insertDocument(daeString name, daeDocument** document = NULL); 48 virtual daeInt createDocument(daeString name, daeElement* dom, daeDocument** document = NULL, bool zaeRootDocument = false, const std::string& extractedFileURI = ""); 49 virtual daeInt createDocument(daeString name, daeDocument** document = NULL); 52 virtual daeInt removeDocument(daeDocument* document); 60 virtual daeInt insertElement(daeDocument* document, daeElement* element); 61 virtual daeInt removeElement(daeDocument* document, daeElement* element);
|
/external/webkit/Source/WebCore/dom/ |
Attr.cpp | 37 inline Attr::Attr(Element* element, Document* document, PassRefPtr<Attribute> attribute) 38 : ContainerNode(document) 48 PassRefPtr<Attr> Attr::create(Element* element, Document* document, PassRefPtr<Attribute> attribute) 50 RefPtr<Attr> attr = adoptRef(new Attr(element, document, attribute)); 65 RefPtr<Text> textNode = document()->createTextNode(m_attribute->value().string()); 149 RefPtr<Attr> clone = adoptRef(new Attr(0, document(), m_attribute->clone())); 191 return qualifiedName().matches(document()->idAttributeName());
|
NodeIterator.cpp | 28 #include "Document.h" 79 // Document type nodes may have a null document. But since they can't have children, there is no need to listen for modifications to these. 80 ASSERT(root()->document() || root()->nodeType() == Node::DOCUMENT_TYPE_NODE); 81 if (Document* ownerDocument = root()->document()) 87 if (Document* ownerDocument = root()->document()) 151 if (Document* ownerDocument = root()->document()) [all...] |
/external/webkit/Source/WebCore/svg/ |
SVGFEImageElement.cpp | 31 #include "Document.h" 46 inline SVGFEImageElement::SVGFEImageElement(const QualifiedName& tagName, Document* document) 47 : SVGFilterPrimitiveStandardAttributes(tagName, document) 51 PassRefPtr<SVGFEImageElement> SVGFEImageElement::create(const QualifiedName& tagName, Document* document) 53 return adoptRef(new SVGFEImageElement(tagName, document)); 69 Element* hrefElement = document()->getElementById(SVGURIReference::getTarget(href())); 157 Element* hrefElement = document()->getElementById(SVGURIReference::getTarget(href())); 179 addSubresourceURL(urls, document()->completeURL(href())) [all...] |
/external/webkit/Source/WebCore/inspector/ |
InspectorDOMAgent.cpp | 52 #include "Document.h" 108 MatchJob(Document* document, const String& query) 109 : m_document(document) 118 RefPtr<Document> m_document; 139 MatchExactIdJob(Document* document, const String& query) : WebCore::MatchJob(document, query) { } 156 MatchExactClassNamesJob(Document* document, const String& query) : WebCore::MatchJob(document, query) { 317 Document* document = frame->document(); local 677 RefPtr<Document> document = m_document; local 813 Document* document = *it; local 909 Document* document = node->ownerDocument(); local 1055 Document* document = static_cast<Document*>(node); local 1385 Document* document = node->ownerDocument(); local [all...] |
/external/webkit/LayoutTests/dom/html/level1/core/ |
hc_nodedocumentfragmentnodename.js | 31 // document loading is started. Otherwise, the status 39 // creates test document builder, may throw exception 66 // When every synchronous loaded document has completed, 79 DocumentFragment Node is "#document-frament". 81 Retrieve the DOM document and invoke the 84 equal to "#document-fragment". 105 assertEquals("nodeDocumentFragmentNodeNameAssert1","#document-fragment",documentFragmentName);
|
hc_nodedocumentnodename.js | 31 // document loading is started. Otherwise, the status 39 // creates test document builder, may throw exception 66 // When every synchronous loaded document has completed, 79 Document Node is "#document". 81 Retrieve the DOM document and check the string returned 83 "#document". 86 * @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#i-Document 102 assertEquals("documentNodeName","#document",documentName);
|
/external/webkit/LayoutTests/dom/html/level2/html/ |
HTMLDocument07.js | 31 // document loading is started. Otherwise, the status 39 // creates test document builder, may throw exception 49 docsLoaded += preload(docRef, "doc", "document"); 66 // When every synchronous loaded document has completed, 78 The images attribute returns a collection of all IMG elements in a document. 80 Retrieve the images attribute from the document and examine its value. 99 doc = load(docRef, "doc", "document");
|
HTMLDocument08.js | 31 // document loading is started. Otherwise, the status 39 // creates test document builder, may throw exception 49 docsLoaded += preload(docRef, "doc", "document"); 66 // When every synchronous loaded document has completed, 79 include applets abd APPLET elements in a document. 81 Retrieve the applets attribute from the document and examine its value. 100 doc = load(docRef, "doc", "document");
|