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

  /external/webkit/WebCore/rendering/
AutoTableLayout.h 46 int totalPercent() const
AutoTableLayout.cpp 324 int totalPercent = 0;
335 totalPercent += m_layoutStruct[lastCol].width.rawValue();
363 totalPercent += m_layoutStruct[lastCol].effWidth.rawValue();
378 if (totalPercent > w.rawValue() || allColsArePercent) {
386 int percentMissing = w.rawValue() - totalPercent;
522 int totalPercent = 0;
535 totalPercent += width.rawValue();
571 if (totalPercent > 100 * percentScaleFactor) {
573 int excess = tableWidth*(totalPercent - 100 * percentScaleFactor) / (100 * percentScaleFactor);
641 if (available > 0 && m_hasPercent && totalPercent < 100 * percentScaleFactor)
    [all...]
RenderFrameSet.cpp 209 int totalPercent = 0;
225 // Count the total percentage of all of the percentage columns/rows -> totalPercent
229 totalPercent += gridLayout[i];
261 if (totalPercent > remainingLen) {
266 gridLayout[i] = (gridLayout[i] * remainingPercent) / totalPercent;
271 remainingLen -= totalPercent;
304 if (countPercent && totalPercent) {
310 changePercent = (remainingPercent * gridLayout[i]) / totalPercent;
RenderTableSection.cpp 517 int totalPercent = 0;
523 totalPercent += m_grid[r].height.rawValue();
525 if (totalPercent) {
528 totalPercent = min(totalPercent, 100 * percentScaleFactor);
531 if (totalPercent > 0 && m_grid[r].height.isPercent()) {
538 totalPercent -= m_grid[r].height.rawValue();
    [all...]
  /external/webkit/JavaScriptCore/profiler/
ProfileNode.h 90 double totalPercent() const { return (m_visibleTotalTime / (m_head ? m_head->totalTime() : totalTime())) * 100.0; }

Completed in 103 milliseconds