Searched defs:document (Results 76 - 100 of 216) sorted by relevance

123456789

/external/webkit/WebCore/bindings/objc/
H A DDOMImplementationFront.cpp32 DOMImplementationFront* implementationFront(Document* document) argument
34 return reinterpret_cast<DOMImplementationFront*>(document->implementation());
/external/webkit/WebCore/bindings/v8/custom/
H A DV8DocumentCustom.cpp63 RefPtr<Document> document = V8Document::toNative(args.Holder()); local
80 RefPtr<XPathResult> result = document->evaluate(expression, contextNode.get(), resolver.get(), type, inResult.get(), ec);
118 // wrapper per document and store it in an internal field of the
119 // document. Since the DOMImplementation object is a singleton, we do
132 Document* document = V8Document::toNative(info.Holder());
133 v8::Handle<v8::Value> wrapper = toV8(document->implementation());
H A DV8XMLHttpRequestCustom.cpp132 // FIXME: add other document types.
148 Document* document = V8Document::toNative(object); local
149 ASSERT(document);
150 xmlHttpRequest->send(document, ec);
/external/webkit/WebCore/dom/
H A DOptionElement.cpp72 Document* document = element->document(); local
76 if (!document->inCompatMode())
80 return normalizeText(document, text);
100 String OptionElement::normalizeText(const Document* document, const String& src) argument
102 String text = document->displayStringModifiedByEncoding(src);
H A DAttr.cpp36 inline Attr::Attr(Element* element, Document* document, PassRefPtr<Attribute> attribute) argument
37 : ContainerNode(document)
47 PassRefPtr<Attr> Attr::create(Element* element, Document* document, PassRefPtr<Attribute> attribute) argument
49 RefPtr<Attr> attr = adoptRef(new Attr(element, document, attribute));
64 RefPtr<Text> textNode = document()->createTextNode(m_attribute->value().string());
147 RefPtr<Attr> clone = adoptRef(new Attr(0, document(), m_attribute->clone()));
/external/webkit/WebCore/editing/
H A DApplyStyleCommand.h41 static PassRefPtr<ApplyStyleCommand> create(Document* document, CSSStyleDeclaration* style, EditAction action = EditActionChangeAttributes, EPropertyLevel level = PropertyDefault) argument
43 return adoptRef(new ApplyStyleCommand(document, style, action, level));
45 static PassRefPtr<ApplyStyleCommand> create(Document* document, CSSStyleDeclaration* style, const Position& start, const Position& end, EditAction action = EditActionChangeAttributes, EPropertyLevel level = PropertyDefault) argument
47 return adoptRef(new ApplyStyleCommand(document, style, start, end, action, level));
H A DBreakBlockquoteCommand.cpp40 BreakBlockquoteCommand::BreakBlockquoteCommand(Document *document) argument
41 : CompositeEditCommand(document)
77 RefPtr<Element> breakNode = createBreakElement(document());
H A DEditCommand.cpp44 EditCommand::EditCommand(Document* document) argument
45 : m_document(document)
82 // Changes to the document may have been made since the last editing operation that
110 // Changes to the document may have been made since the last editing operation that
135 // Changes to the document may have been made since the last editing operation that
201 document()->updateLayoutIgnorePendingStylesheets();
H A DInsertTextCommand.cpp47 InsertTextCommand::InsertTextCommand(Document *document) argument
48 : CompositeEditCommand(document), m_charactersAdded(0)
62 RefPtr<Node> textNode = document()->createEditingTextNode("");
68 RefPtr<Node> textNode = document()->createEditingTextNode("");
166 // Make sure the document is set up to receive text
193 CSSMutableStyleDeclaration* typingStyle = document()->frame()->typingStyle();
232 RefPtr<Element> spanNode = createTabSpanElement(document());
/external/webkit/WebCore/history/
H A DCachedFrame.h48 Document* document() const { return m_document.get(); } function in class:WebCore::CachedFrameBase
81 using CachedFrameBase::document;
/external/webkit/WebCore/html/
H A DHTMLAppletElement.cpp38 inline HTMLAppletElement::HTMLAppletElement(const QualifiedName& tagName, Document* document) argument
39 : HTMLPlugInElement(tagName, document)
44 PassRefPtr<HTMLAppletElement> HTMLAppletElement::create(const QualifiedName& tagName, Document* document) argument
46 return adoptRef(new HTMLAppletElement(tagName, document));
60 if (inDocument() && document()->isHTMLDocument()) {
61 HTMLDocument* document = static_cast<HTMLDocument*>(this->document()); local
62 document->removeNamedItem(m_name);
63 document->addNamedItem(newName);
68 if (inDocument() && document()
69 HTMLDocument* document = static_cast<HTMLDocument*>(this->document()); local
83 HTMLDocument* document = static_cast<HTMLDocument*>(this->document()); local
94 HTMLDocument* document = static_cast<HTMLDocument*>(this->document()); local
[all...]
H A DHTMLFontElement.cpp37 HTMLFontElement::HTMLFontElement(const QualifiedName& tagName, Document* document) argument
38 : HTMLElement(tagName, document)
H A DHTMLIFrameElement.cpp39 inline HTMLIFrameElement::HTMLIFrameElement(const QualifiedName& tagName, Document* document) argument
40 : HTMLFrameElementBase(tagName, document)
45 PassRefPtr<HTMLIFrameElement> HTMLIFrameElement::create(const QualifiedName& tagName, Document* document) argument
47 return adoptRef(new HTMLIFrameElement(tagName, document));
114 if (inDocument() && document()->isHTMLDocument()) {
115 HTMLDocument* document = static_cast<HTMLDocument*>(this->document()); local
116 document->removeExtraNamedItem(m_name);
117 document->addExtraNamedItem(newName);
144 if (document()
[all...]
/external/webkit/WebCore/page/
H A DContextMenuController.cpp118 if (Frame* frame = event->target()->toNode()->document()->frame())
162 Frame* frame = result.innerNonSharedNode()->document()->frame();
231 Document* document = frame->document(); local
232 RefPtr<ReplaceSelectionCommand> command = ReplaceSelectionCommand::create(document, createFragmentFromMarkup(document, item->title(), ""), true, false, true);
273 Document* document = result.innerNonSharedNode()->document(); local
274 selectedRange = document->createRange();
275 selectedRange->selectNode(document
[all...]
/external/webkit/WebCore/platform/qt/
H A DCookieJarQt.cpp44 static QNetworkCookieJar *cookieJar(const Document *document) argument
46 if (!document)
48 Frame *frame = document->frame();
61 void setCookies(Document* document, const KURL& url, const String& value) argument
64 QUrl p(document->firstPartyForCookies());
65 QNetworkCookieJar* jar = cookieJar(document);
82 String cookies(const Document* document, const KURL& url) argument
85 QNetworkCookieJar* jar = cookieJar(document);
106 String cookieRequestHeaderFieldValue(const Document* document, const KURL &url) argument
109 QNetworkCookieJar* jar = cookieJar(document);
126 cookiesEnabled(const Document* document) argument
[all...]
/external/webkit/WebCore/svg/
H A DSVGFitToViewBox.cpp86 bool SVGFitToViewBox::parseMappedAttribute(Document* document, MappedAttribute* attr) argument
92 if (parseViewBox(document, c, end, x, y, w, h))
/external/webkit/WebCore/svg/graphics/
H A DSVGResource.cpp116 SVGResource* getResourceById(Document* document, const AtomicString& id, const RenderObject* object) argument
121 Element* element = document->getElementById(id);
/external/webkit/WebCore/wml/
H A DWMLDoElement.cpp75 ASSERT(document()->isWMLDocument());
76 WMLDocument* document = static_cast<WMLDocument*>(this->document()); local
78 WMLPageState* pageState = wmlPageStateForDocument(document);
83 if (WMLCardElement* card = document->activeCard()) {
90 WMLPageState* pageState = wmlPageStateForDocument(document());
123 eventHandlingElement->registerDoElement(this, document());
H A DWMLElement.cpp41 WMLElement::WMLElement(const QualifiedName& tagName, Document* document) argument
42 : StyledElement(tagName, document, CreateElementZeroRefCount)
46 PassRefPtr<WMLElement> WMLElement::create(const QualifiedName& tagName, Document* document) argument
48 return new WMLElement(tagName, document);
92 return document()->documentElement() == this || style->display() != NONE;
107 reportWMLError(document(), defaultErrorCode);
111 return substituteVariableReferences(value, document());
118 reportWMLError(document(), WMLErrorInvalidVariableReferenceLocation);
/external/webkit/WebCore/xml/
H A DXPathResult.cpp42 XPathResult::XPathResult(Document* document, const Value& value) argument
59 m_document = document;
60 m_domTreeVersion = document->domTreeVersion();
H A DXPathResult.h58 static PassRefPtr<XPathResult> create(Document* document, const XPath::Value& value) { return adoptRef(new XPathResult(document, value)); } argument
H A DXSLTProcessorQt.cpp49 XSLTMessageHandler(Document* document = 0);
57 XSLTMessageHandler::XSLTMessageHandler(Document* document) argument
59 , m_document(document)
94 XSLTUriResolver(Document* document);
101 XSLTUriResolver::XSLTUriResolver(Document* document) argument
103 , m_document(document)
124 node->document()->url().string(),
125 node->document()->url()); // FIXME: Should we use baseURL here?
132 RefPtr<Document> ownerDocument = sourceNode->document();
/external/webkit/WebKit/chromium/src/
H A DWebDocument.cpp120 // First check if the document's response included a header indicating the
122 const Document* document = constUnwrap<Document>(); local
123 Frame* frame = document->frame();
138 const_cast<Document*>(document)->getElementsByTagName("meta");
/external/bluetooth/glib/tests/
H A Dmarkup-collect.c82 const char *document; member in struct:test
165 tests[i].document,
172 i, tests[i].document,
187 tests[i].document, tests[i].error_code);
194 tests[i].document, g_quark_to_string (error->domain));
199 tests[i].document, error->code, tests[i].error_code);
204 tests[i].document, tests[i].error_info);
209 "but came out as '%s'", i, tests[i].document,
/external/webkit/WebCore/bindings/js/
H A DJSHTMLDocumentCustom.cpp52 bool JSHTMLDocument::canGetItemsForName(ExecState*, HTMLDocument* document, const Identifier& propertyName) argument
55 return atomicPropertyName && (document->hasNamedItem(atomicPropertyName) || document->hasExtraNamedItem(atomicPropertyName));
61 HTMLDocument* document = static_cast<HTMLDocument*>(thisObj->impl()); local
64 RefPtr<HTMLCollection> collection = document->documentNamedItems(name);
122 // document.open clobbers the security context of the document and
124 Document* activeDocument = asJSDOMWindow(exec->lexicalGlobalObject())->impl()->document();
126 // In the case of two parameters or fewer, do a normal document open.
133 static inline void documentWrite(ExecState* exec, const ArgList& args, HTMLDocument* document, NewlineRequiremen argument
[all...]

Completed in 267 milliseconds

123456789