Searched refs:textZoomFactor (Results 1 - 18 of 18) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqwkpage.h110 qreal textZoomFactor() const;
114 void setPageAndTextZoomFactors(qreal pageZoomFactor, qreal textZoomFactor);
H A Dqwkpage.cpp660 qreal QWKPage::textZoomFactor() const function in class:QWKPage
680 void QWKPage::setPageAndTextZoomFactors(qreal pageZoomFactor, qreal textZoomFactor) argument
682 WKPageSetPageAndTextZoomFactors(pageRef(), pageZoomFactor, textZoomFactor); local
/external/webkit/Source/WebCore/page/
H A DFrame.h163 float textZoomFactor() const { return m_textZoomFactor; } function in class:WebCore::Frame
164 void setPageAndTextZoomFactors(float pageZoomFactor, float textZoomFactor);
H A DFrame.cpp146 return parent->textZoomFactor();
967 void Frame::setPageAndTextZoomFactors(float pageZoomFactor, float textZoomFactor) argument
969 if (m_pageZoomFactor == pageZoomFactor && m_textZoomFactor == textZoomFactor)
1003 m_textZoomFactor = textZoomFactor;
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKPage.cpp243 return toImpl(pageRef)->textZoomFactor();
266 void WKPageSetPageAndTextZoomFactors(WKPageRef pageRef, double pageZoomFactor, double textZoomFactor) argument
268 toImpl(pageRef)->setPageAndTextZoomFactors(pageZoomFactor, textZoomFactor);
H A DWKPage.h326 WK_EXPORT void WKPageSetPageAndTextZoomFactors(WKPageRef page, double pageZoomFactor, double textZoomFactor);
/external/webkit/Tools/MiniBrowser/qt/
H A DBrowserWindow.cpp264 m_currentZoom = page()->textZoomFactor();
279 m_currentZoom = page()->textZoomFactor();
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePage.cpp182 return toImpl(pageRef)->textZoomFactor();
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebPage.h227 double textZoomFactor() const;
231 void setPageAndTextZoomFactors(double pageZoomFactor, double textZoomFactor);
H A DWebPage.cpp660 double WebPage::textZoomFactor() const function in class:WebKit::WebPage
665 return frame->textZoomFactor();
692 void WebPage::setPageAndTextZoomFactors(double pageZoomFactor, double textZoomFactor) argument
697 return frame->setPageAndTextZoomFactors(static_cast<float>(pageZoomFactor), static_cast<float>(textZoomFactor));
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DFrameLoaderClientAndroid.cpp954 const float oldZoomFactor = oldFrameView->frame()->textZoomFactor();
957 if (oldZoomFactor != 1.0f && oldZoomFactor != m_frame->textZoomFactor()) {
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPageProxy.h326 double textZoomFactor() const { return m_mainFrameHasCustomRepresentation ? 1 : m_textZoomFactor; } function in class:WebKit::WebPageProxy
330 void setPageAndTextZoomFactors(double pageZoomFactor, double textZoomFactor);
H A DWebPageProxy.cpp1084 void WebPageProxy::setPageAndTextZoomFactors(double pageZoomFactor, double textZoomFactor) argument
1094 if (m_pageZoomFactor == pageZoomFactor && m_textZoomFactor == textZoomFactor)
1098 m_textZoomFactor = textZoomFactor;
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebframe.cpp1277 return page()->settings()->testAttribute(QWebSettings::ZoomTextOnly) ? d->frame->textZoomFactor() : d->frame->pageZoomFactor();
1296 return page()->settings()->testAttribute(QWebSettings::ZoomTextOnly) ? d->frame->textZoomFactor() : d->frame->pageZoomFactor();
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_frame.cpp1030 return sd->frame->textZoomFactor();
1083 float zoom_level = sd->textZoom ? sd->frame->textZoomFactor() : sd->frame->pageZoomFactor();
/external/webkit/Source/WebKit/android/jni/
H A DWebSettings.cpp360 if (pFrame->textZoomFactor() != zoomFactor)
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebview.cpp4482 return priv->zoomFullContent ? frame->pageZoomFactor() : frame->textZoomFactor();
4602 gfloat zoomLevel = priv->zoomFullContent ? frame->pageZoomFactor() : frame->textZoomFactor();
/external/webkit/Source/WebCore/css/
H A DCSSStyleSelector.cpp4417 multiplier *= frame->textZoomFactor();
6817 zoomFactor *= frame->textZoomFactor();

Completed in 349 milliseconds