HomeSort by relevance Sort by last modified time
    Searched refs:totalPercent (Results 1 - 9 of 9) 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/WebCore/inspector/front-end/
ProfileDataGridTree.js 67 data["total"] = WebInspector.UIString("%.2f%%", this.totalPercent);
209 get totalPercent()
ProfileView.js 276 if (profileDataGridNode.totalPercent < queryNumber)
283 if (profileDataGridNode.totalPercent > queryNumber)
292 if (profileDataGridNode.totalPercent == queryNumber)
  /external/webkit/JavaScriptCore/profiler/
ProfileNode.cpp 297 m_numberOfCalls, m_actualSelfTime, selfPercent(), m_actualTotalTime, totalPercent(),
ProfileNode.h 90 double totalPercent() const { return (m_visibleTotalTime / (m_head ? m_head->totalTime() : totalTime())) * 100.0; }
  /external/v8/tools/
profile_view.js 180 'totalPercent',

Completed in 1377 milliseconds