Searched defs:document (Results 151 - 175 of 496) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/svg/
H A DSVGSwitchElement.cpp34 inline SVGSwitchElement::SVGSwitchElement(const QualifiedName& tagName, Document* document) argument
35 : SVGStyledTransformableElement(tagName, document)
39 PassRefPtr<SVGSwitchElement> SVGSwitchElement::create(const QualifiedName& tagName, Document* document) argument
41 return adoptRef(new SVGSwitchElement(tagName, document));
H A DSVGSymbolElement.cpp36 inline SVGSymbolElement::SVGSymbolElement(const QualifiedName& tagName, Document* document) argument
37 : SVGStyledElement(tagName, document)
41 PassRefPtr<SVGSymbolElement> SVGSymbolElement::create(const QualifiedName& tagName, Document* document) argument
43 return adoptRef(new SVGSymbolElement(tagName, document));
52 if (SVGFitToViewBox::parseMappedAttribute(document(), attr))
H A DSVGTSpanElement.cpp32 inline SVGTSpanElement::SVGTSpanElement(const QualifiedName& tagName, Document* document) argument
33 : SVGTextPositioningElement(tagName, document)
37 PassRefPtr<SVGTSpanElement> SVGTSpanElement::create(const QualifiedName& tagName, Document* document) argument
39 return adoptRef(new SVGTSpanElement(tagName, document));
H A DSVGTitleElement.cpp29 inline SVGTitleElement::SVGTitleElement(const QualifiedName& tagName, Document* document) argument
30 : SVGStyledElement(tagName, document)
34 PassRefPtr<SVGTitleElement> SVGTitleElement::create(const QualifiedName& tagName, Document* document) argument
36 return adoptRef(new SVGTitleElement(tagName, document));
44 document()->setTitleElement(StringWithDirection(textContent(), LTR), this);
50 document()->removeTitle(this);
58 document()->setTitleElement(StringWithDirection(textContent(), LTR), this);
H A DSVGVKernElement.cpp36 inline SVGVKernElement::SVGVKernElement(const QualifiedName& tagName, Document* document) argument
37 : SVGElement(tagName, document)
41 PassRefPtr<SVGVKernElement> SVGVKernElement::create(const QualifiedName& tagName, Document* document) argument
43 return adoptRef(new SVGVKernElement(tagName, document));
H A DSVGViewElement.cpp39 inline SVGViewElement::SVGViewElement(const QualifiedName& tagName, Document* document) argument
40 : SVGStyledElement(tagName, document)
45 PassRefPtr<SVGViewElement> SVGViewElement::create(const QualifiedName& tagName, Document* document) argument
47 return adoptRef(new SVGViewElement(tagName, document));
56 || SVGFitToViewBox::parseMappedAttribute(document(), attr)
/external/webkit/Source/WebCore/wml/
H A DWMLAccessElement.cpp40 PassRefPtr<WMLAccessElement> WMLAccessElement::create(const QualifiedName& tagName, Document* document) argument
42 return adoptRef(new WMLAccessElement(tagName, document));
67 WMLPageState* pageState = wmlPageStateForDocument(document());
72 reportWMLError(document(), WMLErrorMultipleAccessElements);
H A DWMLAnchorElement.cpp43 PassRefPtr<WMLAnchorElement> WMLAnchorElement::create(const QualifiedName& tagName, Document* document) argument
45 return adoptRef(new WMLAnchorElement(tagName, document));
H A DWMLBRElement.cpp43 PassRefPtr<WMLBRElement> WMLBRElement::create(const QualifiedName& tagName, Document* document) argument
45 return adoptRef(new WMLBRElement(tagName, document));
H A DWMLEventHandlingElement.cpp52 void WMLEventHandlingElement::registerDoElement(WMLDoElement* doElement, Document* document) argument
59 reportWMLError(document, WMLErrorDuplicatedDoElement);
H A DWMLFieldSetElement.cpp42 PassRefPtr<WMLFieldSetElement> WMLFieldSetElement::create(const QualifiedName& tagName, Document* document) argument
44 return adoptRef(new WMLFieldSetElement(tagName, document));
59 m_insertedLegendElement = WMLElementFactory::createWMLElement(insertedLegendTag, document());
68 m_insertedLegendElement->appendChild(document()->createTextNode(title), ec);
H A DWMLFormControlElement.cpp32 WMLFormControlElement::WMLFormControlElement(const QualifiedName& tagName, Document* document) argument
33 : WMLElement(tagName, document)
38 PassRefPtr<WMLFormControlElement> WMLFormControlElement::create(const QualifiedName& tagName, Document* document) argument
40 return adoptRef(new WMLFormControlElement(tagName, document));
H A DWMLMetaElement.cpp37 PassRefPtr<WMLMetaElement> WMLMetaElement::create(const QualifiedName& tagName, Document* document) argument
39 return adoptRef(new WMLMetaElement(tagName, document));
65 document()->processHttpEquiv(m_equiv, m_content);
H A DWMLNoopElement.cpp39 PassRefPtr<WMLNoopElement> WMLNoopElement::create(const QualifiedName& tagName, Document* document) argument
41 return adoptRef(new WMLNoopElement(tagName, document));
66 reportWMLError(document(), WMLErrorForbiddenTaskInAnchorElement);
H A DWMLPElement.cpp46 PassRefPtr<WMLPElement> WMLPElement::create(const QualifiedName& tagName, Document* document) argument
48 return adoptRef(new WMLPElement(tagName, document));
93 RefPtr<NodeList> nodeList = document()->getElementsByTagName("p");
H A DWMLPostfieldElement.cpp42 PassRefPtr<WMLPostfieldElement> WMLPostfieldElement::create(const QualifiedName& tagName, Document* document) argument
44 return adoptRef(new WMLPostfieldElement(tagName, document));
/external/webkit/Source/WebKit/chromium/src/
H A DDatabaseObserver.cpp57 Document* document = static_cast<Document*>(scriptExecutionContext); local
58 WebFrameImpl* webFrame = WebFrameImpl::fromFrame(document->frame());
H A DStorageInfoChromium.cpp70 Document* document = static_cast<Document*>(context); local
71 WebFrameImpl* webFrame = WebFrameImpl::fromFrame(document->frame());
88 Document* document = static_cast<Document*>(context); local
89 WebFrameImpl* webFrame = WebFrameImpl::fromFrame(document->frame());
/external/webkit/Source/WebCore/inspector/front-end/
H A DPopover.js33 this.element = document.createElement("div");
36 this._popupArrowElement = document.createElement("div");
41 this._contentDiv = document.createElement("div");
51 document.body.removeChild(WebInspector.Popover._popoverElement);
56 document.body.appendChild(this.contentElement);
62 document.body.appendChild(this.element);
71 document.body.removeChild(this.element);
95 while (anchorElement !== document.body) {
/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMGlobalObject.cpp89 JSDOMGlobalObject* toJSDOMGlobalObject(Document* document, JSC::ExecState* exec) argument
91 return toJSDOMWindow(document->frame(), currentWorld(exec));
108 JSDOMGlobalObject* toJSDOMGlobalObject(Document* document, DOMWrapperWorld* world) argument
110 return toJSDOMWindow(document->frame(), world);
H A DJSDocumentCustom.cpp55 Document* document = impl(); local
58 markActiveObjectsForContext(markStack, globalData, document);
59 markDOMObjectWrapper(markStack, globalData, document->implementation());
60 markDOMObjectWrapper(markStack, globalData, document->styleSheets());
91 str = activeFrame->document()->completeURL(str).string();
93 frame->navigationScheduler()->scheduleLocationChange(lexicalFrame->document()->securityOrigin(),
97 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, Document* document) argument
99 if (!document)
102 JSDOMWrapper* wrapper = getCachedWrapper(currentWorld(exec), document);
106 if (document
[all...]
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptEventListener.cpp56 if (Frame* frame = node->document()->frame()) {
62 sourceURL = node->document()->url().string();
82 String sourceURL = frame->document()->url().string();
83 return V8LazyEventListener::create(attr->localName().string(), frame->document()->isSVGDocument(), attr->value(), sourceURL, position, WorldContextHandle(UseMainWorld));
86 String eventListenerHandlerBody(Document* document, EventListener* listener) argument
93 v8::Handle<v8::Context> context = toV8Context(document, v8Listener->worldContext());
95 v8::Handle<v8::Object> function = v8Listener->getListenerObject(document);
102 bool eventListenerHandlerLocation(Document* document, EventListener* listener, String& sourceName, int& lineNumber) argument
109 v8::Handle<v8::Context> context = toV8Context(document, v8Listener->worldContext());
111 v8::Handle<v8::Object> object = v8Listener->getListenerObject(document);
[all...]
/external/webkit/Source/WebCore/css/
H A DCSSCanvasValue.cpp70 if (HTMLCanvasElement* elt = element(renderer->document()))
75 HTMLCanvasElement* CSSCanvasValue::element(Document* document) argument
78 m_element = document->getCSSCanvasElement(m_name);
89 HTMLCanvasElement* elt = element(renderer->document());
H A DCSSCursorImageValue.cpp46 static inline SVGCursorElement* resourceReferencedByCursorElement(const String& fragmentId, Document* document) argument
48 Element* element = document->getElementById(SVGURIReference::getTarget(fragmentId));
75 if (SVGCursorElement* cursorElement = resourceReferencedByCursorElement(url, referencedElement->document()))
93 if (SVGCursorElement* cursorElement = resourceReferencedByCursorElement(url, element->document())) {
101 if (cachedImageURL() != element->document()->completeURL(cursorElement->href()))
120 if (isSVGCursorIdentifier(url) && loader && loader->document()) {
121 if (SVGCursorElement* cursorElement = resourceReferencedByCursorElement(url, loader->document()))
/external/webkit/Source/WebCore/dom/
H A DContainerNode.h138 inline ContainerNode::ContainerNode(Document* document, ConstructionType type) argument
139 : Node(document, type)

Completed in 253 milliseconds

1234567891011>>