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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
FixedTableLayout.cpp 226 float totalPercent = 0;
239 totalPercent += m_width[i].percent();
262 if (totalPercent) {
266 calcWidth[i] = m_width[i].percent() * (tableLogicalWidth - totalFixedWidth) / totalPercent;
AutoTableLayout.cpp 286 float totalPercent = 0;
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;
511 totalPercent += logicalWidth.percent();
542 if (totalPercent > 100)
    [all...]
RenderFrameSet.cpp 187 int totalPercent = 0;
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;
RenderTableSection.cpp 301 void RenderTableSection::distributeExtraRowSpanHeightToPercentRows(RenderTableCell* cell, int totalPercent, int& extraRowSpanningHeight, Vector<int>& rowsHeight)
303 if (!extraRowSpanningHeight || !totalPercent)
308 int percent = min(totalPercent, 100);
553 int totalPercent = 0;
563 totalPercent += m_grid[row].logicalHeight.percent();
572 distributeExtraRowSpanHeightToPercentRows(cell, totalPercent, extraRowSpanningHeight, spanningRowsHeight.rowHeight);
775 void RenderTableSection::distributeExtraLogicalHeightToPercentRows(int& extraLogicalHeight, int totalPercent)
777 if (!totalPercent)
783 totalPercent = min(totalPercent, 100)
    [all...]
RenderTableSection.h 257 void distributeExtraLogicalHeightToPercentRows(int& extraLogicalHeight, int totalPercent);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ProfileDataGridTree.js 79 data["total"] = WebInspector.UIString("%.2f%", this.totalPercent);
219 get totalPercent()
CPUProfileView.js 266 if (profileDataGridNode.totalPercent < queryNumber)
271 if (profileDataGridNode.totalPercent > queryNumber)
278 if (profileDataGridNode.totalPercent == queryNumber)
    [all...]
  /external/chromium_org/v8/tools/
profile_view.js 175 'totalPercent',
  /external/v8/tools/
profile_view.js 175 'totalPercent',

Completed in 199 milliseconds