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

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableRowElement.cpp 119 int numCells = children ? children->length() : 0;
120 if (index < -1 || index > numCells) {
121 exceptionState.throwDOMException(IndexSizeError, "The value provided (" + String::number(index) + ") is outside the range [-1, " + String::number(numCells) + "].");
126 if (numCells == index || index == -1)
136 int numCells = children ? children->length() : 0;
138 index = numCells-1;
139 if (index >= 0 && index < numCells) {
143 exceptionState.throwDOMException(IndexSizeError, "The value provided (" + String::number(index) + ") is outside the range [0, " + String::number(numCells) + ").");
  /external/deqp/modules/gles31/functional/
es31fVertexAttributeBindingTests.cpp     [all...]
  /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 108 milliseconds