Home
last modified time | relevance | path

Searched refs:textWrapWidth (Results 1 – 10 of 10) sorted by relevance

/external/webkit/Source/WebCore/platform/android/
DWidgetAndroid.cpp106 int Widget::textWrapWidth() const in textWrapWidth() function in WebCore::Widget
120 return core->textWrapWidth(); in textWrapWidth()
/external/webkit/Source/WebCore/platform/
DWidget.h306 int textWrapWidth() const;
/external/webkit/Source/WebCore/rendering/
DRenderBlockLineLayout.cpp888 int textWrapWidth = view()->frameView()->textWrapWidth(); in layoutInlineChildren() local
890 if (textWrapWidth > 0 && width() > (textWrapWidth + padding)) { in layoutInlineChildren()
893 int maxWidth = textWrapWidth - 2 * ANDROID_FCTS_MARGIN_PADDING + padding; in layoutInlineChildren()
DRenderView.cpp91 setVisibleWidth(m_frameView->textWrapWidth()); in computeLogicalWidth()
DRenderTable.cpp222 setVisibleWidth(view()->frameView()->textWrapWidth()); in computeLogicalWidth()
DRenderTableCell.cpp156 setVisibleWidth(view()->frameView()->textWrapWidth()); in computeLogicalWidth()
DRenderTableSection.cpp277 visibleWidth = view()->frameView()->textWrapWidth(); in setCellLogicalWidths()
DRenderBox.cpp1550 setVisibleWidth(view()->frameView()->textWrapWidth()); in computeLogicalWidth()
/external/webkit/Source/WebKit/android/jni/
DWebViewCore.cpp1126 int textWrapWidth, float scale, int screenWidth, int screenHeight, in setSizeScreenWidthAndScale() argument
1142 m_textWrapWidth = textWrapWidth; in setSizeScreenWidthAndScale()
1148 const bool reflow = otw && textWrapWidth && in setSizeScreenWidthAndScale()
1149 ((float) abs(otw - textWrapWidth) / textWrapWidth) >= 0.01f; in setSizeScreenWidthAndScale()
1165 if (otw && textWrapWidth && otw != textWrapWidth && in setSizeScreenWidthAndScale()
1217 const bool leftAlign = (otw != textWrapWidth) in setSizeScreenWidthAndScale()
4502 jint height, jint textWrapWidth, jfloat scale, jint screenWidth, in SetSize() argument
4508 viewImpl->setSizeScreenWidthAndScale(width, height, textWrapWidth, scale, in SetSize()
DWebViewCore.h518 int textWrapWidth() const { return m_textWrapWidth; } in textWrapWidth() function