Searched refs:totalWidth (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/ui/webui/resources/js/cr/ui/table/
H A Dtable_list.js57 row.style.width = cm.totalWidth + 'px';
59 this.afterFiller_.style.width = cm.totalWidth + 'px';
106 if (cm.totalWidth > offsetWidth) {
115 if (cm.totalWidth <= offsetWidth && style.overflowX != 'hidden') {
121 var x = cm.totalWidth <= this.clientWidth ? 'hidden' : 'scroll';
183 listItem.style.width = cm.totalWidth + 'px';
H A Dtable_column_model.js146 get totalWidth() {
161 c.width = Math.max(10, c.width - this.totalWidth + contentWidth);
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
H A DFontComplexTextMac.cpp65 float totalWidth = controller.totalWidth(); local
66 return FloatRect(floorf(point.x() + totalWidth - afterWidth), point.y(), roundf(point.x() + totalWidth - beforeWidth) - floorf(point.x() + totalWidth - afterWidth), h);
87 initialAdvance = controller.totalWidth() + controller.finalRoundingWidth() - afterWidth;
136 return shaper.totalWidth();
143 glyphOverflow->right = max<int>(0, ceilf(controller.maxGlyphBoundingBoxX() - controller.totalWidth()));
145 return controller.totalWidth();
H A DComplexTextController.h65 float totalWidth() const { return m_totalWidth; } function in class:WebCore::ComplexTextController
H A DComplexTextController.cpp688 CGFloat totalWidth = widthSinceLastCommit + advance.width; variable
689 widthSinceLastCommit = ceilCGFloat(totalWidth);
690 CGFloat extraWidth = widthSinceLastCommit - totalWidth;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DFixedTableLayout.cpp247 int totalWidth = totalFixedWidth + totalPercentWidth; local
248 if (!numAuto || totalWidth > tableLogicalWidth) {
251 if (totalWidth != tableLogicalWidth) {
253 if (totalFixedWidth && totalWidth < tableLogicalWidth) {
257 calcWidth[i] = calcWidth[i] * tableLogicalWidth / totalWidth;
271 totalWidth = totalFixedWidth + totalPercentWidth;
295 totalWidth = tableLogicalWidth;
298 if (totalWidth < tableLogicalWidth) {
300 int remainingWidth = tableLogicalWidth - totalWidth;
H A DAutoTableLayout.cpp348 int totalWidth = 0; local
351 totalWidth += m_layoutStruct[pos].effectiveMaxLogicalWidth;
354 for (unsigned pos = effCol; pos < lastCol && totalWidth > 0; ++pos) {
356 float percent = percentMissing * static_cast<float>(m_layoutStruct[pos].effectiveMaxLogicalWidth) / totalWidth;
357 totalWidth -= m_layoutStruct[pos].effectiveMaxLogicalWidth;
H A DRenderDeprecatedFlexibleBox.cpp967 LayoutUnit totalWidth; local
970 totalWidth = anchorBox->logicalWidth() + font.width(constructTextRun(this, font, ellipsisAndSpace, 2, style()));
973 totalWidth = font.width(constructTextRun(this, font, &horizontalEllipsis, 1, style()));
989 if (!lastVisibleLine->lineCanAccommodateEllipsis(leftToRight, blockRightEdge, lastVisibleLine->x() + lastVisibleLine->logicalWidth(), totalWidth))
995 lastVisibleLine->placeEllipsis(anchorBox ? ellipsisAndSpaceStr : ellipsisStr, leftToRight, blockLeftEdge, blockRightEdge, totalWidth, anchorBox);
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DLetters.java19 private float totalWidth; field in class:Letters
251 totalWidth = -1;
270 return totalWidth;
279 if (totalWidth < 0) {
282 totalWidth = Math.max(totalWidth, l.getX1());
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DPopover.js156 const totalWidth = window.innerWidth;
194 if (anchorBox.x + newElementPosition.width < totalWidth) {
197 } else if (newElementPosition.width + borderRadius * 2 < totalWidth) {
198 newElementPosition.x = totalWidth - newElementPosition.width - borderRadius;
201 var arrowRightPosition = Math.max(0, totalWidth - anchorBox.x - anchorBox.width - borderRadius - arrowOffset);
207 newElementPosition.width = totalWidth - borderRadius * 2;
H A DTabbedPane.js505 * @param {number} totalWidth
507 _calculateMaxWidth: function(measuredWidths, totalWidth)
518 if (totalWidth >= totalMeasuredWidth)
526 if (totalWidth + totalExtraWidth >= totalMeasuredWidth)
527 return measuredWidths[i - 1] + (totalWidth + totalExtraWidth - totalMeasuredWidth) / (measuredWidths.length - i);
530 return totalWidth / measuredWidths.length;
536 * @param {number} totalWidth
540 _tabsToShowIndexes: function(tabsOrdered, tabsHistory, totalWidth, measuredDropDownButtonWidth)
552 if (!this._verticalTabLayout && minimalRequiredWidth > totalWidth)
H A DDataGrid.js484 var totalWidth = 0; variable
486 totalWidth += widths[i];
489 var width = Math.round(100 * widths[i] / totalWidth);
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/harfbuzz/
H A DHarfBuzzShaper.h63 float totalWidth() { return m_totalWidth; } function in class:WebCore::HarfBuzzShaper
H A DFontHarfBuzz.cpp201 return shaper.totalWidth();
/external/chromium/chrome/browser/resources/shared/js/cr/ui/table/
H A Dtable_column_model.js138 get totalWidth() {
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DWidthIterator.cpp286 float totalWidth = widthSinceLastRounding + width; local
287 widthSinceLastRounding = ceilf(totalWidth);
288 width += widthSinceLastRounding - totalWidth;
H A DFontFastPath.cpp562 float totalWidth = it.m_runWidthSoFar; local
563 return FloatRect(floorf(point.x() + totalWidth - afterWidth), point.y(), roundf(point.x() + totalWidth - beforeWidth) - floorf(point.x() + totalWidth - afterWidth), h);
/external/chromium_org/third_party/WebKit/Source/core/platform/mac/
H A DScrollbarThemeMacNonOverlayAPI.mm325 int totalWidth = startWidth + endWidth;
327 return IntRect(scrollbar->x() + startWidth, scrollbar->y(), scrollbar->width() - totalWidth, thickness);
328 return IntRect(scrollbar->x(), scrollbar->y() + startWidth, thickness, scrollbar->height() - totalWidth);
/external/chromium/chrome/browser/resources/keyboard/
H A Dmain.js640 var totalWidth = Math.floor(height * allRows[0].aspect);
641 var leftPadding = Math.floor((newX - totalWidth) / 2);
/external/chromium_org/chrome/browser/resources/file_manager/js/
H A Dfile_table.js79 var totalWidth = 0;
84 totalWidth += this.columns_[i].width;
95 positions[i + 1] = ~~(newTotalWidth * sum / totalWidth);
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Ddisplay_options.js712 var totalWidth = width + numDisplays * MIRRORING_OFFSET_PIXELS;
721 $('display-options-displays-view').offsetWidth / 2 - totalWidth / 2;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1580 milliseconds