Searched refs:totalPercent (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DFixedTableLayout.cpp226 float totalPercent = 0; local
239 totalPercent += m_width[i].percent();
262 if (totalPercent) {
266 calcWidth[i] = m_width[i].percent() * (tableLogicalWidth - totalFixedWidth) / totalPercent;
H A DAutoTableLayout.cpp286 float totalPercent = 0; local
298 totalPercent += columnLayout.logicalWidth.percent();
325 totalPercent += columnLayout.effectiveLogicalWidth.percent();
340 if (totalPercent > cellLogicalWidth.percent() || allColsArePercent) {
347 float percentMissing = cellLogicalWidth.percent() - totalPercent;
385 int columnMinLogicalWidth = static_cast<int>(percent * cellMinLogicalWidth / totalPercent);
386 int columnMaxLogicalWidth = static_cast<int>(percent * cellMaxLogicalWidth / totalPercent);
498 float totalPercent = 0; local
511 totalPercent += logicalWidth.percent();
542 if (totalPercent > 10
[all...]
H A DRenderFrameSet.cpp187 int totalPercent = 0; local
203 // Count the total percentage of all of the percentage columns/rows -> totalPercent
207 totalPercent += gridLayout[i];
239 if (totalPercent > remainingLen) {
244 gridLayout[i] = (gridLayout[i] * remainingPercent) / totalPercent;
249 remainingLen -= totalPercent;
282 if (countPercent && totalPercent) {
288 changePercent = (remainingPercent * gridLayout[i]) / totalPercent;
H A DRenderTableSection.cpp301 void RenderTableSection::distributeExtraRowSpanHeightToPercentRows(RenderTableCell* cell, int totalPercent, int& extraRowSpanningHeight, Vector<int>& rowsHeight) argument
303 if (!extraRowSpanningHeight || !totalPercent)
308 int percent = min(totalPercent, 100);
553 int totalPercent = 0; local
563 totalPercent += m_grid[row].logicalHeight.percent();
572 distributeExtraRowSpanHeightToPercentRows(cell, totalPercent, extraRowSpanningHeight, spanningRowsHeight.rowHeight);
775 void RenderTableSection::distributeExtraLogicalHeightToPercentRows(int& extraLogicalHeight, int totalPercent) argument
777 if (!totalPercent)
783 totalPercent = min(totalPercent, 10
854 int totalPercent = 0; local
[all...]
H A DRenderTableSection.h257 void distributeExtraLogicalHeightToPercentRows(int& extraLogicalHeight, int totalPercent);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DProfileDataGridTree.js79 data["total"] = WebInspector.UIString("%.2f%", this.totalPercent);
219 get totalPercent()
H A DCPUProfileView.js266 if (profileDataGridNode.totalPercent < queryNumber)
271 if (profileDataGridNode.totalPercent > queryNumber)
278 if (profileDataGridNode.totalPercent == queryNumber)

Completed in 145 milliseconds