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

  /external/webkit/Source/WebCore/html/
HTMLTableRowElement.cpp 124 int numCells = children ? children->length() : 0;
125 if (index < -1 || index > numCells) {
131 if (index < 0 || index >= numCells)
147 int numCells = children ? children->length() : 0;
149 index = numCells-1;
150 if (index >= 0 && index < numCells) {
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java 699 int numCells = mCellCountX * mCellCountY;
700 int startIndex = page * numCells;
701 int endIndex = Math.min(startIndex + numCells, mApps.size());
    [all...]

Completed in 99 milliseconds