HomeSort by relevance Sort by last modified time
    Searched refs:totalWidth (Results 1 - 24 of 24) sorted by null

  /external/webkit/WebCore/platform/graphics/mac/
FontComplexTextMac.cpp 49 float totalWidth = controller.totalWidth();
50 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
75 startX += controller.totalWidth() + controller.finalRoundingWidth() - afterWidth;
89 return controller.totalWidth();
ComplexTextController.h 60 float totalWidth() const { return m_totalWidth; }
ComplexTextController.cpp 521 CGFloat totalWidth = m_totalWidth + advance.width;
522 CGFloat extraWidth = ceilCGFloat(totalWidth) - totalWidth;
  /external/webkit/WebCore/platform/graphics/win/
FontWin.cpp 56 float totalWidth = it.runWidthSoFar();
57 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
UniscribeController.cpp 363 float totalWidth = m_runWidthSoFar + advance;
364 advance += ceilf(totalWidth) - totalWidth;
FontCGWin.cpp 153 int totalWidth = 0;
156 totalWidth += gdiAdvances[i];
169 textRect = IntRect(point.x() - (font->ascent() + font->descent()) / 2, point.y() - font->ascent() - lineGap, totalWidth + font->ascent() + font->descent(), font->lineSpacing());
  /external/webkit/WebCore/platform/graphics/wx/
FontWx.cpp 80 float totalWidth = it.runWidthSoFar();
81 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
  /external/webkit/WebCore/rendering/
FixedTableLayout.cpp 263 int totalWidth = totalFixedWidth + totalPercentWidth;
264 if (!numAuto || totalWidth > tableWidth) {
267 if (totalWidth != tableWidth) {
269 if (totalFixedWidth && totalWidth < tableWidth) {
273 calcWidth[i] = calcWidth[i] * tableWidth / totalWidth;
287 totalWidth = totalFixedWidth + totalPercentWidth;
309 totalWidth = tableWidth;
312 if (totalWidth < tableWidth) {
314 int remainingWidth = tableWidth - totalWidth;
InlineFlowBox.cpp 709 int totalWidth = xOffsetOnLine;
711 totalWidth += curr->width();
714 boxModelObject()->paintFillLayerExtended(paintInfo, c, fillLayer, startX, ty, totalWidth, h, this, op);
    [all...]
AutoTableLayout.cpp 387 float totalWidth = 0;
390 totalWidth += m_layoutStruct[pos].effMaxWidth;
393 for (unsigned int pos = col; pos < lastCol && totalWidth > 0; pos++) {
395 int percent = static_cast<int>(percentMissing * static_cast<float>(m_layoutStruct[pos].effMaxWidth) / totalWidth);
396 totalWidth -= m_layoutStruct[pos].effMaxWidth;
RenderFlexibleBox.cpp 731 int totalWidth;
734 totalWidth = anchorBox->width() + font.width(TextRun(ellipsisAndSpace, 2));
737 totalWidth = font.width(TextRun(&horizontalEllipsis, 1));
757 totalWidth))
761 lastVisibleLine->placeEllipsis(anchorBox ? ellipsisAndSpaceStr : ellipsisStr, ltr, blockLeftEdge, blockRightEdge, totalWidth, anchorBox);
    [all...]
RenderBox.cpp     [all...]
  /frameworks/base/core/java/android/widget/
TableLayout.java 445 int widthMeasureSpec, int totalWidth,
454 widthMeasureSpec, totalWidth, heightMeasureSpec, totalHeight);
551 int totalWidth = 0;
553 totalWidth += width;
558 if ((totalWidth > size) && (mShrinkAllColumns || mShrinkableColumns.size() > 0)) {
561 mutateColumnsWidth(mShrinkableColumns, mShrinkAllColumns, size, totalWidth);
562 } else if ((totalWidth < size) && (mStretchAllColumns || mStretchableColumns.size() > 0)) {
565 mutateColumnsWidth(mStretchableColumns, mStretchAllColumns, size, totalWidth);
570 boolean allColumns, int size, int totalWidth) {
575 final int totalExtraSpace = size - totalWidth;
    [all...]
TableRow.java 190 int widthMeasureSpec, int totalWidth,
244 totalWidth, heightMeasureSpec, totalHeight);
LinearLayout.java     [all...]
  /external/webkit/WebCore/platform/graphics/
FontFastPath.cpp 335 float totalWidth = it.m_runWidthSoFar;
336 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
WidthIterator.cpp 198 float totalWidth = runWidthSoFar + width;
199 width += ceilf(totalWidth) - totalWidth;
  /cts/tests/tests/text/src/android/text/method/cts/
TouchTest.java 199 float totalWidth = 0f;
203 totalWidth += f;
205 return (int) totalWidth;
  /external/webkit/WebCore/platform/graphics/chromium/
FontChromiumWin.cpp 244 int totalWidth = 0;
246 totalWidth += lroundf(m_glyphBuffer.advanceAt(m_from + i));
250 totalWidth + m_font->ascent() + m_font->descent(),
  /external/webkit/WebCore/platform/chromium/
ScrollbarThemeChromiumMac.mm 331 int totalWidth = startWidth + endWidth;
333 return IntRect(scrollbar->x() + startWidth, scrollbar->y(), scrollbar->width() - totalWidth, thickness);
334 return IntRect(scrollbar->x(), scrollbar->y() + startWidth, thickness, scrollbar->height() - totalWidth);
  /external/webkit/WebCore/platform/mac/
ScrollbarThemeMac.mm 318 int totalWidth = startWidth + endWidth;
320 return IntRect(scrollbar->x() + startWidth, scrollbar->y(), scrollbar->width() - totalWidth, thickness);
321 return IntRect(scrollbar->x(), scrollbar->y() + startWidth, thickness, scrollbar->height() - totalWidth);
  /prebuilt/common/jfreechart/
jcommon-1.0.12.jar 
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java     [all...]
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 

Completed in 302 milliseconds