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

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableRowElement.cpp 118 int numCells = children ? children->length() : 0;
119 if (index < -1 || index > numCells) {
120 exceptionState.throwDOMException(IndexSizeError, "The value provided (" + String::number(index) + ") is outside the range [-1, " + String::number(numCells) + "].");
125 if (index < 0 || index >= numCells)
141 int numCells = children ? children->length() : 0;
143 index = numCells-1;
144 if (index >= 0 && index < numCells) {
148 exceptionState.throwDOMException(IndexSizeError, "The value provided (" + String::number(index) + ") is outside the range [0, " + String::number(numCells) + ").");
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java     [all...]
CellLayout.java 292 static int widthInPortrait(Resources r, int numCells) {
300 return minGap * (numCells - 1) + cellWidth * numCells;
303 static int heightInLandscape(Resources r, int numCells) {
311 return minGap * (numCells - 1) + cellHeight * numCells;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
AppsCustomizePagedView.java     [all...]

Completed in 137 milliseconds