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

  /external/webkit/Source/WebCore/platform/graphics/mac/
FontComplexTextMac.cpp 52 float totalWidth = controller.totalWidth();
53 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
74 initialAdvance = controller.totalWidth() - afterWidth;
117 glyphOverflow->right = max<int>(0, ceilf(controller.maxGlyphBoundingBoxX() - controller.totalWidth()));
119 return controller.totalWidth();
ComplexTextController.h 61 float totalWidth() const { return m_totalWidth; }
  /external/webkit/Source/WebCore/platform/graphics/win/
FontWin.cpp 65 float totalWidth = it.runWidthSoFar();
66 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
FontCGWin.cpp 155 int totalWidth = 0;
158 totalWidth += gdiAdvances[i];
174 totalWidth + fontMetrics.ascent() + fontMetrics.descent(),
  /external/webkit/Source/WebCore/platform/graphics/wx/
FontWx.cpp 96 float totalWidth = it.runWidthSoFar();
97 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
99 float totalWidth = it.totalWidth();
100 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
142 startX += controller.totalWidth() - afterWidth
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
TouchTest.java 215 float totalWidth = 0f;
219 totalWidth += f;
221 return (int) totalWidth;
  /external/webkit/Source/WebCore/rendering/
FixedTableLayout.cpp 260 int totalWidth = totalFixedWidth + totalPercentWidth;
261 if (!numAuto || totalWidth > tableLogicalWidth) {
264 if (totalWidth != tableLogicalWidth) {
266 if (totalFixedWidth && totalWidth < tableLogicalWidth) {
270 calcWidth[i] = calcWidth[i] * tableLogicalWidth / totalWidth;
284 totalWidth = totalFixedWidth + totalPercentWidth;
306 totalWidth = tableLogicalWidth;
309 if (totalWidth < tableLogicalWidth) {
311 int remainingWidth = tableLogicalWidth - totalWidth;
AutoTableLayout.cpp 368 float totalWidth = 0;
371 totalWidth += m_layoutStruct[pos].effectiveMaxLogicalWidth;
374 for (unsigned pos = effCol; pos < lastCol && totalWidth > 0; ++pos) {
376 float percent = percentMissing * static_cast<float>(m_layoutStruct[pos].effectiveMaxLogicalWidth) / totalWidth;
377 totalWidth -= m_layoutStruct[pos].effectiveMaxLogicalWidth;
    [all...]
RenderFlexibleBox.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/
FontFastPath.cpp 475 float totalWidth = it.m_runWidthSoFar;
476 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontChromiumWin.cpp 245 int totalWidth = 0;
247 totalWidth += lroundf(m_glyphBuffer.advanceAt(m_from + i));
252 totalWidth + fontMetrics.ascent() + fontMetrics.descent(),
  /cts/tests/tests/graphics/src/android/graphics/cts/
PaintTest.java 90 float totalWidth = 0.0f;
92 totalWidth += widths[i];
97 assertBreakText(text, textChars, textSpan, i, i + 1, true, totalWidth, 1, widths[i]);
101 assertBreakText(text, textChars, textSpan, 0, 0, true, totalWidth, 0, 0);
104 assertBreakText(text, textChars, textSpan, 0, 3, true, totalWidth,
108 assertBreakText(text, textChars, textSpan, 0, 3, false, totalWidth,
112 assertBreakText(text, textChars, textSpan, 5, 7, true, totalWidth,
116 assertBreakText(text, textChars, textSpan, 5, 7, false, totalWidth,
120 assertBreakText(text, textChars, textSpan, 2, 5, true, totalWidth,
124 assertBreakText(text, textChars, textSpan, 2, 5, false, totalWidth,
    [all...]
  /external/webkit/Source/WebCore/platform/gtk/
RenderThemeGtk.cpp 545 int totalWidth = trackRect.width();
555 int width = ((end - start) * totalWidth) / mediaDuration;
561 rangeRect.setLocation(IntPoint(trackRect.x() + start / mediaDuration* totalWidth, trackRect.y()));
  /frameworks/base/core/java/android/widget/
TableLayout.java 448 int widthMeasureSpec, int totalWidth,
457 widthMeasureSpec, totalWidth, heightMeasureSpec, totalHeight);
554 int totalWidth = 0;
556 totalWidth += width;
561 if ((totalWidth > size) && (mShrinkAllColumns || mShrinkableColumns.size() > 0)) {
564 mutateColumnsWidth(mShrinkableColumns, mShrinkAllColumns, size, totalWidth);
565 } else if ((totalWidth < size) && (mStretchAllColumns || mStretchableColumns.size() > 0)) {
568 mutateColumnsWidth(mStretchableColumns, mStretchAllColumns, size, totalWidth);
573 boolean allColumns, int size, int totalWidth) {
578 final int totalExtraSpace = size - totalWidth;
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
ThreePaneLayout.java 356 final int totalWidth = getMeasuredWidth();
365 setViewWidth(mRightPane, totalWidth - mMessageListWidth);
372 expectedMessageListWidth = totalWidth - mMailboxListWidth;
386 setViewWidth(mRightPane, totalWidth);
393 expectedMessageListWidth = totalWidth - mMailboxListWidth;
  /frameworks/base/core/java/android/inputmethodservice/
Keyboard.java 619 int totalWidth = 0;
625 totalWidth += key.width;
627 if (totalGap + totalWidth > newWidth) {
629 float scaleFactor = (float)(newWidth - totalGap) / totalWidth;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListItemView.java 374 final int totalWidth = effectiveWidth - mGapBetweenLabelAndData;
375 dataWidth = ((totalWidth * mDataViewWidthWeight)
377 labelWidth = ((totalWidth * mLabelViewWidthWeight) /
    [all...]
  /prebuilt/common/jfreechart/
jcommon-1.0.12.jar 
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 

Completed in 487 milliseconds