OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
780
unsigned
totalRows
= m_grid.size();
781
int totalHeight = m_rowPos[
totalRows
] + extraLogicalHeight;
785
for (unsigned r = 0; r <
totalRows
; ++r) {
795
ASSERT(
totalRows
>= 1);
796
if (r <
totalRows
- 1)
[
all
...]
Completed in 2111 milliseconds