• Home
  • Raw
  • Download

Lines Matching refs:coreFrame

836         if (Frame* coreFrame = core(m_mainFrame))  in updateBackingStore()  local
837 if (FrameView* view = coreFrame->view()) in updateBackingStore()
875 Frame* coreFrame = core(m_mainFrame); in paint() local
876 if (!coreFrame) in paint()
878 FrameView* frameView = coreFrame->view(); in paint()
1351 Frame* coreFrame = core(m_mainFrame); in mouseWheel() local
1352 if (!coreFrame) in mouseWheel()
1355 return coreFrame->eventHandler()->handleWheelEvent(wheelEvent); in mouseWheel()
1729 if (Frame* coreFrame = core(mainFrameImpl)) in WebViewWndProc() local
1730 if (coreFrame->view()->didFirstLayout()) in WebViewWndProc()
1735 if (Frame* coreFrame = core(mainFrameImpl)) in WebViewWndProc() local
1736 if (coreFrame->view()->didFirstLayout()) in WebViewWndProc()
1765 if (Frame* coreFrame = core(mainFrameImpl)) in WebViewWndProc() local
1766 coreFrame->view()->resize(LOWORD(lParam), HIWORD(lParam)); in WebViewWndProc()
1851 if (Frame* coreFrame = core(mainFrameImpl)) { in WebViewWndProc() local
2195 RefPtr<Frame> coreFrame = webFrame->init(this, m_page, 0); in initWithFrame() local
2199 coreFrame->tree()->setName(String(frameName, SysStringLen(frameName))); in initWithFrame()
2200 coreFrame->init(); in initWithFrame()
2523 if (Frame* coreFrame = core(m_mainFrame)) in setZoomMultiplier() local
2524 coreFrame->setZoomFactor(multiplier, isTextOnly); in setZoomMultiplier()
2616 if (Frame* coreFrame = core(m_mainFrame)) in setCustomTextEncodingName() local
2617coreFrame->loader()->reloadWithOverrideEncoding(String(encodingName, SysStringLen(encodingName))); in setCustomTextEncodingName()
2682 Frame* coreFrame = core(m_mainFrame); in stringByEvaluatingJavaScriptFromString() local
2683 if (!coreFrame) in stringByEvaluatingJavaScriptFromString()
2686 …JSC::JSValuePtr scriptExecutionResult = coreFrame->loader()->executeScript(WebCore::String(script)… in stringByEvaluatingJavaScriptFromString()
3128 Frame* coreFrame = core(m_mainFrame); in centerSelectionInVisibleArea() local
3129 if (!coreFrame) in centerSelectionInVisibleArea()
3132 coreFrame->revealSelection(RenderLayer::gAlignCenterAlways); in centerSelectionInVisibleArea()