/external/chromium_org/third_party/WebKit/Source/core/svg/ |
H A D | SVGFESpotLightElement.cpp | 29 inline SVGFESpotLightElement::SVGFESpotLightElement(const QualifiedName& tagName, Document* document) argument 30 : SVGFELightElement(tagName, document) 36 PassRefPtr<SVGFESpotLightElement> SVGFESpotLightElement::create(const QualifiedName& tagName, Document* document) argument 38 return adoptRef(new SVGFESpotLightElement(tagName, document));
|
H A D | SVGFontFaceNameElement.cpp | 30 inline SVGFontFaceNameElement::SVGFontFaceNameElement(const QualifiedName& tagName, Document* document) argument 31 : SVGElement(tagName, document) 37 PassRefPtr<SVGFontFaceNameElement> SVGFontFaceNameElement::create(const QualifiedName& tagName, Document* document) argument 39 return adoptRef(new SVGFontFaceNameElement(tagName, document));
|
H A D | SVGSetElement.cpp | 27 inline SVGSetElement::SVGSetElement(const QualifiedName& tagName, Document* document) argument 28 : SVGAnimateElement(tagName, document) 35 PassRefPtr<SVGSetElement> SVGSetElement::create(const QualifiedName& tagName, Document* document) argument 37 return adoptRef(new SVGSetElement(tagName, document));
|
H A D | SVGUnknownElement.h | 46 static PassRefPtr<SVGUnknownElement> create(const QualifiedName& tagName, Document* document) argument 48 return adoptRef(new SVGUnknownElement(tagName, document));
|
/external/chromium/chrome/browser/resources/ |
H A D | collected_cookies.js | 67 document.oncontextmenu = function(e) { 71 document.onkeydown = function(e) { 79 document.addEventListener('DOMContentLoaded', load);
|
/external/chromium_org/content/common/ |
H A D | pepper_renderer_instance_data.cc | 17 const GURL& document, 21 document_url(document), 14 PepperRendererInstanceData( int render_process, int render_view, const GURL& document, const GURL& plugin) argument
|
/external/chromium_org/content/renderer/ |
H A D | websharedworkerrepository_impl.cc | 18 WebKit::WebSharedWorker* worker, DocumentID document) { 19 shared_worker_parents_.insert(document); 22 void WebSharedWorkerRepositoryImpl::documentDetached(DocumentID document) { argument 23 DocumentSet::iterator iter = shared_worker_parents_.find(document); 25 // Notify the browser process that the document has shut down. 26 ChildThread::current()->Send(new ViewHostMsg_DocumentDetached(document)); 31 bool WebSharedWorkerRepositoryImpl::hasSharedWorkers(DocumentID document) { argument 32 return shared_worker_parents_.find(document) != shared_worker_parents_.end(); 17 addSharedWorker( WebKit::WebSharedWorker* worker, DocumentID document) argument
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
H A D | V8ObjectConstructor.cpp | 61 v8::Local<v8::Object> V8ObjectConstructor::newInstanceInDocument(v8::Handle<v8::Function> function, int argc, v8::Handle<v8::Value> argv[], Document* document) argument 65 return V8ScriptRunner::instantiateObjectInDocument(function, document, argc, argv);
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
H A D | V8DocumentLocationCustom.cpp | 37 Document* document = V8Document::toNative(info.Holder()); local 38 if (!document->frame()) { 43 DOMWindow* window = document->domWindow(); 44 v8SetReturnValue(info, toV8Fast(window->location(), info, document)); 49 Document* document = V8Document::toNative(info.Holder()); local 50 if (!document->frame()) 61 DOMWindow* window = document->domWindow();
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
H A D | PlayerTest.cpp | 48 document = Document::create(); 49 timeline = DocumentTimeline::create(document.get()); 60 RefPtr<Document> document; member in class:__anon10153::PlayerTest
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
H A D | StyleResolverState.cpp | 32 StyleResolverState::StyleResolverState(Document* document, Element* element, RenderStyle* parentStyle, RenderRegion* regionForStyling) argument 41 m_document = m_elementContext.document(); 44 m_document = document; 65 if (Page* page = document->page())
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
H A D | CDATASection.cpp | 29 inline CDATASection::CDATASection(Document* document, const String& data) argument 30 : Text(document, data, CreateText) 35 PassRefPtr<CDATASection> CDATASection::create(Document* document, const String& data) argument 37 return adoptRef(new CDATASection(document, data)); 57 return create(document(), data);
|
H A D | Comment.cpp | 29 inline Comment::Comment(Document* document, const String& text) argument 30 : CharacterData(document, text, CreateOther) 35 PassRefPtr<Comment> Comment::create(Document* document, const String& text) argument 37 return adoptRef(new Comment(document, text)); 52 return create(document(), data());
|
H A D | DOMImplementation.h | 44 static PassOwnPtr<DOMImplementation> create(Document* document) { return adoptPtr(new DOMImplementation(document)); } argument 48 Document* document() { return m_document; } function in class:WebCore::DOMImplementation
|
H A D | DocumentFullscreen.cpp | 33 bool DocumentFullscreen::webkitIsFullScreen(Document* document) argument 35 if (FullscreenElementStack* fullscreen = FullscreenElementStack::fromIfExists(document)) 40 bool DocumentFullscreen::webkitFullScreenKeyboardInputAllowed(Document* document) argument 42 if (FullscreenElementStack* fullscreen = FullscreenElementStack::fromIfExists(document)) 47 Element* DocumentFullscreen::webkitCurrentFullScreenElement(Document* document) argument 49 if (FullscreenElementStack* fullscreen = FullscreenElementStack::fromIfExists(document)) 54 void DocumentFullscreen::webkitCancelFullScreen(Document* document) argument 56 FullscreenElementStack::from(document)->webkitCancelFullScreen(); 59 bool DocumentFullscreen::webkitFullscreenEnabled(Document* document) argument 61 return FullscreenElementStack::webkitFullscreenEnabled(document); 64 webkitFullscreenElement(Document* document) argument 71 webkitExitFullscreen(Document* document) argument [all...] |
H A D | DocumentLifecycleObserver.cpp | 34 DocumentLifecycleObserver::DocumentLifecycleObserver(Document* document) argument 35 : ContextLifecycleObserver(document, DocumentLifecycleObserverType)
|
H A D | RawDataDocumentParser.h | 36 explicit RawDataDocumentParser(Document* document) argument 37 : DocumentParser(document) 44 document()->finishedParsing(); 57 // <https://bugs.webkit.org/show_bug.cgi?id=25397>: JS code can always call document.write, we need to handle it.
|
H A D | TemplateContentDocumentFragment.h | 36 static PassRefPtr<TemplateContentDocumentFragment> create(Document* document, const Element* host) argument 38 return adoptRef(new TemplateContentDocumentFragment(document, host)); 45 TemplateContentDocumentFragment(Document* document, const Element* host) argument 46 : DocumentFragment(document, CreateDocumentFragment)
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
H A D | CreateLinkCommand.h | 35 static PassRefPtr<CreateLinkCommand> create(Document* document, const String& linkURL) argument 37 return adoptRef(new CreateLinkCommand(document, linkURL));
|
H A D | InsertParagraphSeparatorCommand.h | 37 static PassRefPtr<InsertParagraphSeparatorCommand> create(Document* document, bool useDefaultParagraphElement = false, bool pasteBlockqutoeIntoUnquotedArea = false) argument 39 return adoptRef(new InsertParagraphSeparatorCommand(document, useDefaultParagraphElement, pasteBlockqutoeIntoUnquotedArea));
|
H A D | RemoveFormatCommand.cpp | 43 RemoveFormatCommand::RemoveFormatCommand(Document* document) argument 44 : CompositeEditCommand(document) 82 Frame* frame = document()->frame(); 96 applyCommandToComposite(ApplyStyleCommand::create(document(), defaultStyle.get(), isElementForRemoveFormatCommand, editingAction()));
|
H A D | SimplifyMarkupCommand.h | 35 static PassRefPtr<SimplifyMarkupCommand> create(Document* document, Node* firstNode, Node* nodeAfterLast) argument 37 return adoptRef(new SimplifyMarkupCommand(document, firstNode, nodeAfterLast));
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
H A D | HTMLAudioElement.cpp | 35 HTMLAudioElement::HTMLAudioElement(const QualifiedName& tagName, Document* document, bool createdByParser) argument 36 : HTMLMediaElement(tagName, document, createdByParser) 42 PassRefPtr<HTMLAudioElement> HTMLAudioElement::create(const QualifiedName& tagName, Document* document, bool createdByParser) argument 44 RefPtr<HTMLAudioElement> audioElement(adoptRef(new HTMLAudioElement(tagName, document, createdByParser))); 49 PassRefPtr<HTMLAudioElement> HTMLAudioElement::createForJSConstructor(Document* document, const String& src) argument 51 RefPtr<HTMLAudioElement> audio = adoptRef(new HTMLAudioElement(audioTag, document, false));
|
H A D | HTMLHtmlElement.cpp | 39 HTMLHtmlElement::HTMLHtmlElement(const QualifiedName& tagName, Document* document) argument 40 : HTMLElement(tagName, document) 46 PassRefPtr<HTMLHtmlElement> HTMLHtmlElement::create(Document* document) argument 48 return adoptRef(new HTMLHtmlElement(htmlTag, document)); 51 PassRefPtr<HTMLHtmlElement> HTMLHtmlElement::create(const QualifiedName& tagName, Document* document) argument 53 return adoptRef(new HTMLHtmlElement(tagName, document)); 63 // When parsing a fragment, its dummy document has a null parser. 64 if (!document()->parser() || !document()->parser()->documentWasLoadedAsPartOfNavigation()) 67 if (!document() [all...] |
H A D | HTMLKeygenElement.h | 35 static PassRefPtr<HTMLKeygenElement> create(const QualifiedName& tagName, Document* document, HTMLFormElement* form) argument 37 return adoptRef(new HTMLKeygenElement(tagName, document, form));
|