Searched defs:document (Results 201 - 225 of 496) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit/chromium/src/
H A DLocalFileSystemChromium.cpp73 Document* document = static_cast<Document*>(context); local
74 WebFrameImpl* webFrame = WebFrameImpl::fromFrame(document->frame());
/external/webkit/Source/WebKit/qt/docs/webkitsnippets/webelement/
H A Dmain.cpp49 QWebElement document = frame->documentElement(); local
50 /* Assume that the document has the following structure:
59 QWebElement button = document.findFirst("input[type=submit]");
68 QWebElement document = frame->documentElement(); local
71 QWebElement firstTextInput = document.findFirst("input[type=text]");
81 QWebElement document = frame->documentElement(); local
85 QWebElement firstTextInput = document.findFirst("input[type=text]");
95 QWebElement document = frame->documentElement(); local
96 /* Assume the document has the following structure:
109 QWebElementCollection allSpans = document
[all...]
/external/chromium/chrome/browser/history/
H A Dsnippet_unittest.cc16 // A sample document to compute snippets of.
23 "(referred to collectively as the \"Services\" in this document and excluding "
27 "Amphitheatre Parkway, Mountain View, CA 94043, United States. This document "
89 // |query| against |document|. Matches are surrounded by "**".
90 string16 BuildSnippet(const std::string& document, argument
92 // This function assumes that |document| does not contain
95 // |document|. We need to add more test cases and change this function
98 const std::string document_folded = StringToLowerASCII(std::string(document));
103 // Manually construct match_positions of the document.
120 snippet.ComputeSnippet(match_positions, document);
[all...]
/external/chromium/chrome/browser/resources/file_manager/js/
H A Dharness.js27 var paramstr = decodeURIComponent(document.location.search.substr(1));
30 var input = document.getElementById('default-path');
34 var iframe = document.getElementById('dialog');
35 iframe.setAttribute('src', 'main.html' + document.location.search);
46 var input = document.getElementById('default-path');
52 document.location.href = '?' + JSON.stringify(this.params);
90 return document.getElementById('dialog').contentWindow.fileManager;
/external/chromium/webkit/glue/
H A Dwebaccessibility.cc367 const WebKit::WebDocument& document = src.document(); local
369 name = document.title();
370 attributes[ATTR_DOC_TITLE] = document.title();
371 attributes[ATTR_DOC_URL] = document.frame()->url().spec().utf16();
372 if (document.isXHTMLDocument())
377 const WebKit::WebDocumentType& doctype = document.doctype();
381 const gfx::Size& scroll_offset = document.frame()->scrollOffset();
/external/collada/include/dae/
H A DdaeDatabase.h44 * Creates a new document, defining its root as the <tt><i>dom</i></tt> object; returns an error if the document name already exists.
45 * @param name Name of the new document, must be a valid URI.
46 * @param dom Existing @c domCOLLADA root element of the document
47 * @param document Pointer to a @c daeDocument pointer that receives the document created
48 * @param zaeRootDocument Indicates if the new document is the root document of a ZAE archive.
50 * @return Returns @c DAE_OK if the document was created successfully, otherwise returns a negative value as defined in daeError.h.
54 virtual daeInt insertDocument(daeString name, daeElement* dom, daeDocument** document
310 removeCollection(daeDocument* document) argument
[all...]
H A DdaeIOPlugin.h61 * @param uri the URI of the COLLADA document to load, not all plugins accept all types of URIs,
63 * @param docBuffer A string containing the text of the document to load. This is an optional attribute
64 * and should only be used if the document has already been loaded into memory.
73 * Writes a specific document to an output.
74 * @param name URI to write the document to, not all IO plugins support all types of URIs
76 * @param document Pointer to the document that we're going to write out.
81 virtual daeInt write(const daeURI& name, daeDocument *document, daeBool replace) = 0;
122 virtual daeInt write(const daeURI& name, daeDocument *document, daeBool replace) { return DAE_ERROR; } argument
/external/collada/src/dae/
H A DdaeIOPluginCommon.cpp57 //check if document already exists
71 "Failed to load XML document from memory\n" :
77 // Insert the document into the database, the Database will keep a ref on the main dom, so it won't get deleted
80 daeDocument *document = NULL; local
82 int res = database->insertDocument(fileURI.getURI(),domObject,&document);
109 "Failed to load XML document from memory\n" :
116 // Insert the document into the database, the Database will keep a ref on the main dom, so it won't get deleted
119 daeDocument *document = NULL;
121 int res = database->insertDocument(fileURI.getURI(),domObject,&document, zaeRoot, extractedURI);
/external/webkit/Source/WebCore/bindings/js/
H A DJSXMLHttpRequestCustom.cpp164 Document* document = impl()->responseXML(ec); local
169 return toJS(exec, globalObject(), document);
207 return throwVMError(exec, createReferenceError(exec, "XMLHttpRequest constructor associated document is unavailable"));
H A DScheduledAction.cpp118 void ScheduledAction::execute(Document* document) argument
120 JSDOMWindow* window = toJSDOMWindow(document->frame(), m_isolatedWorld.get());
131 executeFunctionInContext(window, window->shell(), document);
/external/webkit/Source/WebCore/bindings/objc/
H A DDOMImplementationFront.cpp32 DOMImplementationFront* implementationFront(Document* document) argument
34 return reinterpret_cast<DOMImplementationFront*>(document->implementation());
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8DocumentCustom.cpp71 RefPtr<Document> document = V8Document::toNative(args.Holder()); local
88 RefPtr<XPathResult> result = document->evaluate(expression, contextNode.get(), resolver.get(), type, inResult.get(), ec);
H A DV8XMLHttpRequestCustom.cpp75 Document* document = xmlHttpRequest->responseXML(ec); local
80 return toV8(document);
163 // FIXME: add other document types.
183 Document* document = V8Document::toNative(object); local
184 ASSERT(document);
185 xmlHttpRequest->send(document, ec);
/external/webkit/Source/WebCore/css/
H A DMediaQueryMatcher.cpp52 MediaQueryMatcher::MediaQueryMatcher(Document* document) argument
53 : m_document(document)
/external/webkit/Source/WebCore/dom/
H A DDocumentParser.h45 // insert is used by document.write
63 // document() will return 0 after detach() is called.
64 Document* document() const { ASSERT(m_document); return m_document; } function in class:WebCore::DocumentParser
111 // Every DocumentParser needs a pointer back to the document.
H A DEventQueue.cpp40 static inline bool shouldDispatchScrollEventSynchronously(Document* document) argument
42 ASSERT_ARG(document, document);
43 return applicationIsSafari() && (document->url().protocolIs("feed") || document->url().protocolIs("feeds"));
84 // Per the W3C CSSOM View Module, scroll events fired at the document should bubble, others should not.
88 if (shouldDispatchScrollEventSynchronously(target->document())) {
H A DOptionElement.cpp72 Document* document = element->document(); local
76 if (!document->inQuirksMode())
80 return normalizeText(document, text);
100 String OptionElement::normalizeText(const Document* document, const String& src) argument
102 String text = document->displayStringModifiedByEncoding(src);
H A DTreeScope.cpp39 TreeScope::TreeScope(Document* document, ConstructionType constructionType) argument
45 m_document = document;
46 if (document != this) {
47 // Assume document as parent scope
48 m_parentTreeScope = document;
69 // A document node cannot be re-parented.
71 // Every scope other than document needs a parent scope.
141 if (document()->isHTMLDocument())
155 if (document()->inQuirksMode()) {
/external/webkit/Source/WebCore/editing/
H A DBreakBlockquoteCommand.cpp40 BreakBlockquoteCommand::BreakBlockquoteCommand(Document *document) argument
41 : CompositeEditCommand(document)
73 RefPtr<Element> breakNode = createBreakElement(document());
H A DEditCommand.cpp43 EditCommand::EditCommand(Document* document) argument
44 : m_document(document)
81 // Changes to the document may have been made since the last editing operation that
113 // Changes to the document may have been made since the last editing operation that
136 // Changes to the document may have been made since the last editing operation that
208 document()->updateLayoutIgnorePendingStylesheets();
H A DFormatBlockCommand.cpp47 FormatBlockCommand::FormatBlockCommand(Document* document, const QualifiedName& tagName) argument
48 : ApplyBlockElementCommand(document, tagName)
67 RefPtr<Range> range = Range::create(document(), start, endOfSelection);
H A DInsertTextCommand.cpp41 InsertTextCommand::InsertTextCommand(Document *document) argument
42 : CompositeEditCommand(document)
54 RefPtr<Node> textNode = document()->createEditingTextNode("");
62 RefPtr<Node> textNode = document()->createEditingTextNode("");
161 // Make sure the document is set up to receive text
195 if (RefPtr<EditingStyle> typingStyle = document()->frame()->selection()->typingStyle()) {
219 RefPtr<Element> spanNode = createTabSpanElement(document());
H A DReplaceSelectionCommand.h49 static PassRefPtr<ReplaceSelectionCommand> create(Document* document, PassRefPtr<DocumentFragment> fragment, CommandOptions options, EditAction action = EditActionPaste) argument
51 return adoptRef(new ReplaceSelectionCommand(document, fragment, options, action));
/external/webkit/Source/WebCore/history/
H A DCachedFrame.h49 Document* document() const { return m_document.get(); } function in class:WebCore::CachedFrameBase
82 using CachedFrameBase::document;
/external/webkit/Source/WebCore/html/
H A DHTMLAppletElement.cpp39 inline HTMLAppletElement::HTMLAppletElement(const QualifiedName& tagName, Document* document) argument
40 : HTMLPlugInElement(tagName, document)
45 PassRefPtr<HTMLAppletElement> HTMLAppletElement::create(const QualifiedName& tagName, Document* document) argument
47 return adoptRef(new HTMLAppletElement(tagName, document));
61 if (inDocument() && document()->isHTMLDocument()) {
62 HTMLDocument* document = static_cast<HTMLDocument*>(this->document()); local
63 document->removeNamedItem(m_name);
64 document->addNamedItem(newName);
69 if (inDocument() && document()
70 HTMLDocument* document = static_cast<HTMLDocument*>(this->document()); local
84 HTMLDocument* document = static_cast<HTMLDocument*>(this->document()); local
95 HTMLDocument* document = static_cast<HTMLDocument*>(this->document()); local
[all...]

Completed in 1279 milliseconds

1234567891011>>