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

  /packages/apps/Calendar/src/com/android/calendar/
EventGeometry.java 77 int maxCols = event.getMaxColumns();
100 float colWidth = (float) (cellWidth - 2 * mCellMargin) / (float) maxCols;
Event.java 420 int maxCols = 0;
461 ev.setMaxColumns(maxCols);
463 maxCols = 0;
478 if (maxCols < len)
479 maxCols = len;
482 ev.setMaxColumns(maxCols);
  /external/webkit/WebCore/rendering/
RenderTable.cpp 745 int maxCols = 0;
750 if (sectionCols > maxCols)
751 maxCols = sectionCols;
755 m_columns.resize(maxCols);
756 m_columnPos.resize(maxCols + 1);
    [all...]

Completed in 6115 milliseconds