Home
last modified time | relevance | path

Searched refs:textWrapScale (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/history/android/
DAndroidWebHistoryBridge.h48 float textWrapScale() const { return m_textWrapScale; } in textWrapScale() function
/external/webkit/Source/WebKit/android/jni/
DWebHistory.cpp422 const float textWrapScale = bridge->textWrapScale(); in write_item() local
423 LOGV("Writing text wrap scale %f", textWrapScale); in write_item()
424 v.append((char*)&textWrapScale, sizeof(float)); in write_item()
DWebViewCore.h203 void restoreScale(float scale, float textWrapScale);
535 float textWrapScale() const { return m_screenWidth * m_scale / m_textWrapWidth; } in textWrapScale() function
DWebViewCore.cpp1174 void WebViewCore::restoreScale(float scale, float textWrapScale) in restoreScale() argument
1183 env->CallVoidMethod(javaObject.get(), m_javaGlue->m_restoreScale, scale, textWrapScale); in restoreScale()
/external/webkit/Source/WebKit/android/WebCoreSupport/
DFrameLoaderClientAndroid.cpp848 bridge->setTextWrapScale(webViewCore->textWrapScale()); in saveViewStateToItem()
860 webViewCore->restoreScale(bridge->scale(), bridge->textWrapScale()); in restoreViewState()