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 39 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 650 unsigned totalRows = m_grid.size();
651 int totalHeight = m_rowPos[totalRows] + extraLogicalHeight;
655 for (unsigned r = 0; r < totalRows; ++r) {
665 ASSERT(totalRows >= 1);
666 if (r < totalRows - 1)
692 unsigned totalRows = m_grid.size();
694 if (extraLogicalHeight <= 0 || !m_rowPos[totalRows])
697 // FIXME: m_rowPos[totalRows] - m_rowPos[0] is the total rows' size.
698 int totalRowSize = m_rowPos[totalRows];
701 for (unsigned r = 0; r < totalRows; r++)
    [all...]

Completed in 53 milliseconds