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

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFrameSetElement.h 40 size_t totalRows() const { return std::max<size_t>(1, m_rowLengths.size()); }
  /frameworks/base/core/jni/
android_database_SQLiteConnection.cpp 693 int totalRows = 0;
700 LOG_WINDOW("Stepped statement %p to row %d", statement, totalRows);
702 totalRows += 1;
705 if (startPos >= totalRows || windowFull) {
752 statement, totalRows, addedRows, window->size() - window->freeSpace());
756 if (startPos > totalRows) {
757 ALOGE("startPos %d > actual rows %d", startPos, totalRows);
759 jlong result = jlong(startPos) << 32 | jlong(totalRows);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableSection.cpp 776 unsigned totalRows = m_grid.size();
777 int totalHeight = m_rowPos[totalRows] + extraLogicalHeight;
781 for (unsigned r = 0; r < totalRows; ++r) {
791 ASSERT(totalRows >= 1);
792 if (r < totalRows - 1)
    [all...]

Completed in 482 milliseconds