/external/webkit/WebCore/page/ |
D | DOMWindow.cpp | 146 : m_frame(frame) in DOMWindow() 152 if (m_frame) in ~DOMWindow() 153 m_frame->clearFormerDOMWindow(this); in ~DOMWindow() 158 m_frame = 0; in disconnectFrame() 232 m_screen = Screen::create(m_frame); in screen() 239 m_history = History::create(m_frame); in history() 246 m_locationbar = BarInfo::create(m_frame, BarInfo::Locationbar); in locationbar() 253 m_menubar = BarInfo::create(m_frame, BarInfo::Menubar); in menubar() 260 m_personalbar = BarInfo::create(m_frame, BarInfo::Personalbar); in personalbar() 267 m_scrollbars = BarInfo::create(m_frame, BarInfo::Scrollbars); in scrollbars() [all …]
|
D | DOMSelection.cpp | 45 : m_frame(frame) in DOMSelection() 51 return m_frame; in frame() 56 m_frame = 0; in disconnectFrame() 61 if (!m_frame) in anchorNode() 64 const Selection& selection = m_frame->selection()->selection(); in anchorNode() 72 if (!m_frame) in baseNode() 74 return rangeCompliantEquivalent(m_frame->selection()->selection().base()).node(); in baseNode() 79 if (!m_frame) in anchorOffset() 82 const Selection& selection = m_frame->selection()->selection(); in anchorOffset() 90 if (!m_frame) in baseOffset() [all …]
|
D | Screen.cpp | 42 : m_frame(frame) in Screen() 48 m_frame = 0; in disconnectFrame() 53 if (!m_frame) in height() 55 return static_cast<unsigned>(screenRect(m_frame->view()).height()); in height() 60 if (!m_frame) in width() 62 return static_cast<unsigned>(screenRect(m_frame->view()).width()); in width() 67 if (!m_frame) in colorDepth() 69 return static_cast<unsigned>(screenDepth(m_frame->view())); in colorDepth() 74 if (!m_frame) in pixelDepth() 76 return static_cast<unsigned>(screenDepth(m_frame->view())); in pixelDepth() [all …]
|
D | EventHandler.cpp | 127 : m_frame(frame) in EventHandler() 205 m_frame->setSelectionGranularity(WordGranularity); in selectClosestWordFromMouseEvent() 207 … if (result.event().clickCount() == 2 && m_frame->editor()->isSelectTrailingWhitespaceEnabled()) in selectClosestWordFromMouseEvent() 211 if (m_frame->shouldChangeSelection(newSelection)) in selectClosestWordFromMouseEvent() 212 m_frame->selection()->setSelection(newSelection); in selectClosestWordFromMouseEvent() 231 m_frame->setSelectionGranularity(WordGranularity); in selectClosestWordOrLinkFromMouseEvent() 235 if (m_frame->shouldChangeSelection(newSelection)) in selectClosestWordOrLinkFromMouseEvent() 236 m_frame->selection()->setSelection(newSelection); in selectClosestWordOrLinkFromMouseEvent() 245 if (m_frame->selection()->isRange()) in handleMousePressEventDoubleClick() 274 m_frame->setSelectionGranularity(ParagraphGranularity); in handleMousePressEventTripleClick() [all …]
|
D | Navigator.cpp | 43 : m_frame(frame) in Navigator() 66 m_frame = 0; in disconnectFrame() 88 if (!m_frame) in appVersion() 91 if (shouldHideFourDot(m_frame)) in appVersion() 103 if (!m_frame) in userAgent() 105 return m_frame->loader()->userAgent(m_frame->document() ? m_frame->document()->url() : KURL()); in userAgent() 111 m_plugins = PluginArray::create(m_frame); in plugins() 118 m_mimeTypes = MimeTypeArray::create(m_frame); in mimeTypes() 124 if (m_frame->page() && !m_frame->page()->cookieEnabled()) in cookieEnabled() 127 return cookiesEnabled(m_frame->document()); in cookieEnabled() [all …]
|
D | FrameView.cpp | 71 , m_frame(frame) in FrameView() 95 , m_frame(frame) in FrameView() 134 if (m_frame) { in ~FrameView() 135 ASSERT(m_frame->view() != this || !m_frame->document() || !m_frame->contentRenderer()); in ~FrameView() 136 RenderPart* renderer = m_frame->ownerRenderer(); in ~FrameView() 178 m_frame = 0; in clearFrame() 198 … Element* ownerElement = m_frame && m_frame->document() ? m_frame->document()->ownerElement() : 0; in init() 218 if (m_frame) { in clear() 219 if (RenderPart* renderer = m_frame->ownerRenderer()) in clear() 254 if (!m_frame) in invalidateRect() [all …]
|
D | History.cpp | 35 : m_frame(frame) in History() 41 return m_frame; in frame() 46 m_frame = 0; in disconnectFrame() 51 if (!m_frame) in length() 53 return m_frame->loader()->getHistoryLength(); in length() 58 if (!m_frame) in back() 60 m_frame->loader()->scheduleHistoryNavigation(-1); in back() 65 if (!m_frame) in forward() 67 m_frame->loader()->scheduleHistoryNavigation(1); in forward() 72 if (!m_frame) in go() [all …]
|
D | Location.cpp | 40 : m_frame(frame) in Location() 46 m_frame = 0; in disconnectFrame() 51 ASSERT(m_frame); in url() 52 return m_frame->loader()->url(); in url() 57 if (!m_frame) in href() 66 if (!m_frame) in protocol() 74 if (!m_frame) in host() 85 if (!m_frame) in hostname() 93 if (!m_frame) in port() 102 if (!m_frame) in pathname() [all …]
|
D | BarInfo.cpp | 39 : m_frame(frame) in BarInfo() 46 m_frame = 0; in disconnectFrame() 51 if (!m_frame) in visible() 56 return m_frame->page()->chrome()->toolbarsVisible(); in visible() 58 return m_frame->page()->chrome()->toolbarsVisible(); in visible() 60 return m_frame->page()->chrome()->toolbarsVisible(); in visible() 62 return m_frame->page()->chrome()->menubarVisible(); in visible() 64 return m_frame->page()->chrome()->scrollbarsVisible(); in visible() 66 return m_frame->page()->chrome()->statusbarVisible(); in visible()
|
D | PrintContext.cpp | 34 : m_frame(frame) in PrintContext() 53 if (!m_frame->document() || !m_frame->view() || !m_frame->document()->renderer()) in computePageRects() 56 RenderView* root = static_cast<RenderView*>(m_frame->document()->renderer()); in computePageRects() 88 …m_frame->adjustPageHeight(&proposedBottom, printedPagesHeight, proposedBottom, printedPagesHeight); in computePageRects() 116 m_frame->setPrinting(true, minLayoutWidth, maxLayoutWidth, true); in begin() 128 m_frame->view()->paintContents(&ctx, pageRect); in spoolPage() 134 m_frame->setPrinting(false, 0, 0, true); in end()
|
/external/webkit/WebKit/android/WebCoreSupport/ |
D | FrameLoaderClientAndroid.cpp | 82 : m_frame(NULL) in FrameLoaderClientAndroid() 94 m_frame = 0; in frameLoaderDestroyed() 112 ASSERT(m_frame); in forceLayout() 113 m_frame->forceLayout(); in forceLayout() 115 m_frame->view()->adjustViewSize(); in forceLayout() 197 ASSERT(m_frame); in dispatchDidReceiveServerRedirectForProvisionalLoad() 199 m_webFrame->loadStarted(m_frame); in dispatchDidReceiveServerRedirectForProvisionalLoad() 220 ASSERT(m_frame); in dispatchDidReceiveIcon() 221 if (m_frame->tree() && m_frame->tree()->parent()) in dispatchDidReceiveIcon() 223 WebCore::String url(m_frame->loader()->url().string()); in dispatchDidReceiveIcon() [all …]
|
/external/webkit/WebCore/svg/graphics/ |
D | SVGImage.cpp | 82 , m_frame(0) in SVGImage() 89 if (m_frame) in ~SVGImage() 90 … m_frame->loader()->frameDetached(); // Break both the loader and view references to the frame in ~SVGImage() 94 m_frame.clear(); in ~SVGImage() 106 if (!m_frame || !m_frame->document()) in setContainerSize() 108 SVGSVGElement* rootElement = static_cast<SVGDocument*>(m_frame->document())->rootElement(); in setContainerSize() 117 if (!m_frame || !m_frame->document()) in usesContainerSize() 119 SVGSVGElement* rootElement = static_cast<SVGDocument*>(m_frame->document())->rootElement(); in usesContainerSize() 128 if (!m_frame || !m_frame->document()) in size() 131 SVGSVGElement* rootElement = static_cast<SVGDocument*>(m_frame->document())->rootElement(); in size() [all …]
|
/external/webkit/WebCore/loader/ |
D | FrameLoader.cpp | 239 : m_frame(frame) in FrameLoader() 309 m_frame->document()->cancelParsing(); in init() 345 Page* oldPage = m_frame->page(); in createWindow() 349 Page* page = oldPage->chrome()->createWindow(m_frame, requestWithReferrer, features); in createWindow() 398 RefPtr<Frame> protect(m_frame); in changeLocation() 427 if (target.isEmpty() && m_frame->document()) in urlSelected() 428 target = m_frame->document()->baseTarget(); in urlSelected() 485 FrameLoader::reportLocalLoadFailed(m_frame, url.string()); in loadSubframe() 536 if (!m_frame->page()) in submitForm() 559 formData->generateFiles(m_frame->page()->chrome()->client()); in submitForm() [all …]
|
D | DocumentLoader.cpp | 145 , m_frame(0) in DocumentLoader() 168 if (!m_frame) in frameLoader() 170 return m_frame->loader(); in frameLoader() 175 … ASSERT(!m_frame || frameLoader()->activeDocumentLoader() != this || !frameLoader()->isLoading()); in ~DocumentLoader() 297 Document* doc = m_frame->document(); in stopLoading() 300 m_frame->loader()->stopLoading(false); in stopLoading() 309 RefPtr<Frame> protectFrame(m_frame); in stopLoading() 396 m_frame->loader()->end(); in setupForReplaceByMIMEType() 421 if (m_frame == frame) in setFrame() 423 ASSERT(frame && !m_frame); in setFrame() [all …]
|
/external/webkit/WebCore/editing/ |
D | Editor.cpp | 79 Selection selection = m_frame->selection()->selection(); in selectionForCommand() 97 if (Page* page = m_frame->page()) in client() 116 return m_frame->selection()->isContentEditable(); in canEdit() 121 return m_frame->selection()->isContentRichlyEditable(); in canEditRichly() 131 …return !m_frame->selection()->isInPasswordField() && !dispatchCPPEvent(eventNames().beforecutEvent… in canDHTMLCut() 136 …return !m_frame->selection()->isInPasswordField() && !dispatchCPPEvent(eventNames().beforecopyEven… in canDHTMLCopy() 170 if (imageElementFromImageDocument(m_frame->document())) in canCopy() 172 SelectionController* selection = m_frame->selection(); in canCopy() 183 SelectionController* selection = m_frame->selection(); in canDelete() 215 …return client() && client()->smartInsertDeleteEnabled() && m_frame->selectionGranularity() == Word… in canSmartCopyOrDelete() [all …]
|
D | SelectionController.cpp | 66 : m_frame(frame) in SelectionController() 111 if (!m_frame) { in setSelection() 123 if (document && document->frame() != m_frame && document != m_frame->document()) { in setSelection() 129 TypingCommand::closeTyping(m_frame->editor()->lastEditCommand()); in setSelection() 132 m_frame->clearTypingStyle(); in setSelection() 144 m_frame->setFocusedNodeIfNeeded(); in setSelection() 146 m_frame->selectionLayoutChanged(); in setSelection() 151 m_frame->notifyRendererOfSelectionChange(userTriggered); in setSelection() 152 m_frame->respondToChangedSelection(oldSelection, closeTyping); in setSelection() 154 m_frame->revealCaret(RenderLayer::gAlignToEdgeIfNeeded); in setSelection() [all …]
|
/external/webkit/WebKit/gtk/WebCoreSupport/ |
D | FrameLoaderClientGtk.cpp | 66 : m_frame(frame) in FrameLoaderClient() 72 ASSERT(m_frame); in FrameLoaderClient() 174 (core(m_frame)->loader()->*policyFunction)(PolicyUse); in dispatchWillSubmitForm() 233 WebKitWebView* webView = getViewFromFrame(m_frame); in postProgressStartedNotification() 234 g_signal_emit_by_name(webView, "load-started", m_frame); in postProgressStartedNotification() 239 WebKitWebView* webView = getViewFromFrame(m_frame); in postProgressEstimateChangedNotification() 247 WebKitWebView* webView = getViewFromFrame(m_frame); in postProgressFinishedNotification() 249 g_signal_emit_by_name(webView, "load-finished", m_frame); in postProgressFinishedNotification() 254 webkit_web_frame_core_frame_gone(m_frame); in frameLoaderDestroyed() 255 g_object_unref(m_frame); in frameLoaderDestroyed() [all …]
|
/external/webkit/WebCore/storage/ |
D | Storage.cpp | 41 : m_frame(frame) in Storage() 44 ASSERT(m_frame); in Storage() 50 if (!m_frame) in length() 59 if (!m_frame) in key() 67 if (!m_frame) in getItem() 76 if (!m_frame) in setItem() 79 m_storageArea->setItem(key, value, ec, m_frame); in setItem() 84 if (!m_frame) in removeItem() 87 m_storageArea->removeItem(key, m_frame); in removeItem() 92 if (!m_frame) in clear() [all …]
|
/external/webkit/WebKit/wx/WebKitSupport/ |
D | FrameLoaderClientWx.cpp | 74 , m_frame(0) in FrameLoaderClientWx() 85 m_frame = frame; in setFrame() 95 m_frame = 0; in detachFrameLoader() 235 wkEvent.SetURL(m_frame->loader()->documentLoader()->request().url().string()); in dispatchDidHandleOnloadEvents() 278 wkEvent.SetURL(m_frame->loader()->provisionalDocumentLoader()->request().url().string()); in dispatchDidStartProvisionalLoad() 300 wkEvent.SetURL(m_frame->loader()->documentLoader()->request().url().string()); in dispatchDidCommitLoad() 310 wkEvent.SetURL(m_frame->loader()->url().string()); in dispatchDidFinishDocumentLoad() 347 if (!m_frame) in dispatchWillSubmitForm() 349 (m_frame->loader()->*function)(PolicyUse); in dispatchWillSubmitForm() 379 wkEvent.SetURL(m_frame->loader()->url().string()); in postProgressFinishedNotification() [all …]
|
/external/webkit/WebKit/win/ |
D | WebHTMLRepresentation.cpp | 45 , m_frame(0) in WebHTMLRepresentation() 54 if (m_frame) { in ~WebHTMLRepresentation() 55 m_frame->Release(); in ~WebHTMLRepresentation() 56 m_frame = 0; in ~WebHTMLRepresentation() 67 instance->m_frame = frame; in createInstance() 147 if (!m_frame) in elementWithName() 150 return m_frame->elementWithName(name, form, element); in elementWithName() 158 HRESULT hr = m_frame->elementDoesAutoComplete(element, &doesAutoComplete); in elementDoesAutoComplete() 168 HRESULT hr = m_frame->elementIsPassword(element, &isPassword); in elementIsPassword() 177 if (!m_frame) in formForElement() [all …]
|
/external/webkit/WebKit/qt/WebCoreSupport/ |
D | FrameLoaderClientQt.cpp | 137 : m_frame(0) in FrameLoaderClientQt() 156 m_frame = frame; in setFrame() 188 if (!m_frame || !m_policyFunction) in slotCallPolicyFunction() 192 (m_frame->loader()->*function)(WebCore::PolicyAction(action)); in slotCallPolicyFunction() 212 ASSERT(m_frame); in transitionToCommittedForNewPage() 217 …WebCore::FrameLoaderClient::transitionToCommittedForNewPage(m_frame, m_webFrame->page()->viewportS… in transitionToCommittedForNewPage() 234 m_frame->forceLayout(true); in forceLayout() 262 …("%s - didHandleOnloadEventsForFrame\n", qPrintable(drtDescriptionSuitableForTestResult(m_frame))); in dispatchDidHandleOnloadEvents() 270 …erRedirectForProvisionalLoadForFrame\n", qPrintable(drtDescriptionSuitableForTestResult(m_frame))); in dispatchDidReceiveServerRedirectForProvisionalLoad() 279 …%s - didCancelClientRedirectForFrame\n", qPrintable(drtDescriptionSuitableForTestResult(m_frame))); in dispatchDidCancelClientRedirect() [all …]
|
/external/webkit/WebCore/platform/network/chromium/ |
D | ResourceRequest.h | 50 , m_frame(0) in ResourceRequest() 58 , m_frame(0) in ResourceRequest() 67 , m_frame(0) in ResourceRequest() 75 , m_frame(0) in ResourceRequestBase() 84 , m_frame(0) in ResourceRequest() 91 Frame* frame() const { return m_frame; } in frame() 92 void setFrame(Frame* frame) { m_frame = frame; } in setFrame() 120 Frame* m_frame; variable
|
/external/webkit/WebCore/loader/appcache/ |
D | DOMApplicationCache.cpp | 46 : m_frame(frame) in DOMApplicationCache() 52 m_frame = 0; in disconnectFrame() 57 if (!m_frame) in associatedCache() 60 return m_frame->loader()->documentLoader()->applicationCache(); in associatedCache() 95 cache->group()->update(m_frame, ApplicationCacheUpdateWithoutBrowsingContext); in update() 100 if (!m_frame) in swapCache() 103 ApplicationCache* cache = m_frame->loader()->documentLoader()->applicationCache(); in swapCache() 109 cache->group()->disassociateDocumentLoader(m_frame->loader()->documentLoader()); in swapCache() 119 m_frame->loader()->documentLoader()->setApplicationCache(newestCache); in swapCache() 191 return m_frame->document(); in scriptExecutionContext() [all …]
|
/external/webkit/WebCore/loader/icon/ |
D | IconLoader.cpp | 46 : m_frame(frame) in IconLoader() 68 if (!m_frame->document()) { in startLoading() 77 …RefPtr<SubresourceLoader> loader = SubresourceLoader::create(m_frame, this, m_frame->loader()->ico… in startLoading() 79 …LOG_ERROR("Failed to start load for icon at url %s", m_frame->loader()->iconURL().string().ascii()… in startLoading() 162 m_frame->loader()->commitIconURLToIconDatabase(iconURL); in finishLoading() 167 m_frame->loader()->client()->dispatchDidReceiveIcon(); in finishLoading()
|
/external/webkit/WebCore/page/chromium/ |
D | EventHandlerChromium.cpp | 61 IntPoint p = m_frame->view()->windowToContents(mev.event().pos()); in passMousePressEventToSubframe() 62 if (m_frame->selection()->contains(p)) { in passMousePressEventToSubframe() 66 if (m_frame->shouldChangeSelection(newSelection)) in passMousePressEventToSubframe() 67 m_frame->selection()->setSelection(newSelection); in passMousePressEventToSubframe() 138 Page* page = m_frame->page(); in focusDocumentView() 141 page->focusController()->setFocusedFrame(m_frame); in focusDocumentView()
|