Searched defs:numCells (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTableRowElement.cpp119 int numCells = children ? children->length() : 0; local
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; local
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/
H A Des31fVertexAttributeBindingTests.cpp1005 const int numCells = GRID_SIZE*GRID_SIZE; local
1006 const int numPositionCells = (instanced) ? (1) : (numCells);
1009 const int numColorOffsetElements = numInstanceElementsPerCell * numCells;

Completed in 161 milliseconds