/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/ |
H A D | step_result_set.cpp | 53 std::tie(lastErr_, rowCount_) = statement->Count(); in StepResultSet() 54 if (lastErr_ == E_NOT_SUPPORT && rowCount_ == Statement::INVALID_COUNT) { in StepResultSet() 66 totalCost, acquireCost, prepareCost, countCost, rowCount_, SqliteUtils::Anonymous(sql_).c_str()); in StepResultSet() 154 if (rowPos_ == INIT_POS || ((isSupportCountRow_ || rowCount_ != Statement::INVALID_COUNT) && IsEnded().second)) { in GetColumnType() 182 if (isSupportCountRow_ && position >= rowCount_) { in GoToRow() 183 rowPos_ = (position >= rowCount_ && rowCount_ != 0) ? rowCount_ : rowPos_; in GoToRow() 184 LOG_ERROR("position[%{public}d] rowCount[%{public}d] rowPos_[%{public}d]!", position, rowCount_, rowPos_); in GoToRow() 247 if (isSupportCountRow_ || rowCount_ ! in GoToNextRow() [all...] |
H A D | sqlite_shared_result_set.cpp | 58 rowCount_ = InitRowCount();
in SqliteSharedResultSet() 67 totalCost, acquireCost, prepareCost, countCost, rowCount_, qrySql_.c_str(),
in SqliteSharedResultSet() 173 rowCount_ = NO_COUNT;
in Close() 190 || oldPosition == rowCount_) {
in OnGo() 218 if ((block->GetStartPos() == block->GetLastPos() && (uint32_t)rowCount_ != block->GetStartPos())
in FillBlock() 223 rowCount_, requiredPos, block->GetStartPos(), block->GetLastPos(), block->GetBlockPos());
in FillBlock()
|
H A D | abs_result_set.cpp | 92 count = rowCount_;
in GetRowCount() 97 if (rowCount_ != NO_COUNT) {
in GetRowCount() 448 rowCount_ = NO_COUNT;
in Close()
|
/foundation/arkui/ui_lite/frameworks/layout/ |
H A D | flex_layout.cpp | 132 rowCount_ = 1; in CalRowCount() 141 rowCount_++; in CalRowCount() 160 if ((maxRosHegiht == nullptr) || (size > rowCount_)) { in GetRowMaxHeight() 195 if ((rowsWidth == nullptr) || (rowsChildNum == nullptr) || (rowNum > rowCount_)) { in GetRowsWidth() 239 for (i = rowCount_ - 1; i > count; i--) { in GetCrossAxisPosY() 244 for (i = 0; i < rowCount_; i++) { in GetCrossAxisPosY() 272 if (rowCount_ > MAX_COUNT_DEFAULT) { in LayoutHorizontal() 273 rowsWidth = new uint16_t[rowCount_](); in LayoutHorizontal() 274 rowsMaxHeight = new uint16_t[rowCount_](); in LayoutHorizontal() 275 rowsChildNum = new uint16_t[rowCount_](); in LayoutHorizontal() [all...] |
/foundation/distributeddatamgr/relational_store/frameworks/native/dataability/src/ |
H A D | ishared_result_set_proxy.cpp | 54 if (rowCount_ >= 0) { in GetRowCount() 55 count = rowCount_; in GetRowCount() 75 rowCount_ = count; in GetRowCount()
|
H A D | ishared_result_set_proxy.h | 39 int32_t rowCount_ = -1; member in OHOS::NativeRdb::ISharedResultSetProxy
|
/foundation/arkui/ace_engine/frameworks/core/components/calendar/ |
H A D | focusable_grid.cpp | 83 if (nextRow == rowCount_ - 1) { in FocusMove() 91 if ((nextRow < 0) || (nextCol < 0) || (nextRow >= rowCount_) || (nextCol >= colCount_)) { in FocusMove()
|
H A D | focusable_grid.h | 39 int32_t rowCount_ = 0; member in OHOS::Ace::FocusableGrid
|
H A D | render_calendar.cpp | 147 rowCount_ = colCount_ ? static_cast<int32_t>(daysOfMonth.days.size()) / colCount_ : 0; in OnDataChanged() 168 rowCount_ = colCount_ ? static_cast<int32_t>(daysOfMonth.days.size()) / colCount_ : 0; in OnDataChanged() 366 auto rowSpace = rowCount_ == rowsOfData ? dailyFiveRowSpace_ : dailySixRowSpace_; in JudgeArea() 369 auto maxHeight = browHeight + rowCount_ * dayHeight_ + (rowCount_ - 1) * rowSpace + in JudgeArea()
|
H A D | rosen_render_calendar.cpp | 203 auto dayHeight = rowCount_ ? (maxHeight_ - NormalizeToPx(CARD_CALENDAR_TITLE_HEIGHT)) / rowCount_ : 0.0; in PerformLayout() 207 focusedAreaRadius_ = (maxHeight_ - NormalizeToPx(CARD_CALENDAR_TITLE_HEIGHT)) / (rowCount_ * 2); in PerformLayout() 216 uint32_t daysCount = static_cast<uint32_t>(rowCount_) * totalWeek; in DrawWeekAndDates() 230 if (rowCount_ == 5) { // five line calendar in DrawWeekAndDates() 232 } else if (rowCount_ == 6) { // six line calendar in DrawWeekAndDates() 235 for (int32_t row = 0; row < rowCount_; row++) { in DrawWeekAndDates() 518 double dailyRowSpace = rowCount_ == 5 ? dailyFiveRowSpace_ : dailySixRowSpace_; in DrawTouchedArea()
|
/foundation/arkui/ui_lite/interfaces/kits/layout/ |
H A D | flex_layout.h | 60 : majorAlign_(ALIGN_START), secondaryAlign_(ALIGN_CENTER), wrap_(NOWRAP), rowCount_(1), columnCount_(1) {} in FlexLayout() 138 uint16_t rowCount_; member in OHOS::FlexLayout
|
/foundation/distributeddatamgr/data_share/frameworks/native/common/src/ |
H A D | ishared_result_set_proxy.cpp | 84 if (rowCount_ >= 0) { in GetRowCount() 85 count = rowCount_; in GetRowCount() 109 rowCount_ = count; in GetRowCount()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/grid_adaptive/ |
H A D | grid_adaptive_layout_algorithm.h | 52 int32_t rowCount_ = 0; member in OHOS::Ace::NG::GridAdaptiveLayoutAlgorithm
|
H A D | grid_adaptive_layout_algorithm.cpp | 80 rowCount_ = rowCount; in Measure() 155 gridLayoutInfo_.endMainLineIndex_ = rowCount_ - 1; in Layout()
|
/foundation/distributeddatamgr/data_share/frameworks/native/common/include/ |
H A D | ishared_result_set_proxy.h | 38 int32_t rowCount_ = -1; member in OHOS::DataShare::ISharedResultSetProxy
|
/foundation/arkui/ace_engine/frameworks/core/components/grid_layout/ |
H A D | render_grid_layout.cpp | 187 if (nextRow < 0 || nextCol < 0 || nextRow >= rowCount_ || nextCol >= colCount_) { in focusMove() 374 rowCount_ = rows.size() == 0 ? 1 : static_cast<int32_t>(rows.size()); 385 if (itemRow >= 0 && itemRow < rowCount_ && itemCol >= 0 && itemCol < colCount_ && 394 if (rowIndex >= rowCount_ || colIndex >= colCount_) { 516 rowCount_ = static_cast<int32_t>(rows.size()); 517 itemCountMax_ = colCount_ * rowCount_; 539 collectionInfo.rows = rowCount_; 764 if (curRow >= rowCount_) { 782 curRow = rowCount_ - 1; 797 rowSpan = std::min(rowCount_ [all...] |
H A D | grid_layout_component.h | 110 return rowCount_; in GetRowCount() 310 int32_t rowCount_ = 1; member in OHOS::Ace::GridLayoutComponent
|
H A D | grid_layout_component.cpp | 82 rowCount_ = count; in SetRowCount()
|
/foundation/barrierfree/accessibility/frameworks/common/src/ |
H A D | accessibility_element_info.cpp | 650 rowCount_ = rowCount; in GridInfo() 657 rowCount_ = rowCount; in SetGrid() 664 rowCount_ = other.rowCount_; in SetGrid() 671 return rowCount_; in GetRowCount()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_default_app_test/mock/ |
H A D | mock_rdb_data_manager.h | 28 rowCount_ = 0; in MockAbsSharedResultSet()
|
/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/ |
H A D | abs_result_set.h | 351 int rowCount_ = NO_COUNT;
member in OHOS::NativeRdb::AbsResultSet
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/calendar/ |
H A D | calendar_paint_method.h | 77 int32_t rowCount_ = 5; member in OHOS::Ace::NG::CalendarPaintMethod
|
H A D | calendar_paint_method.cpp | 157 rowCount_ = static_cast<int32_t>(calendarDays_.size() / totalWeek); in DrawDates() 163 switch (rowCount_) { in DrawDates() 178 for (int32_t row = 0; row < rowCount_; row++) { in DrawDates()
|
/foundation/arkui/ace_engine/frameworks/core/components_v2/grid/ |
H A D | render_grid_scroll.h | 253 int32_t* mainCount_ = &rowCount_;
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/calendar/ |
H A D | calendar_paint_method_test.cpp | 124 EXPECT_EQ(paintMethod->rowCount_, 0); in HWTEST_F() 164 EXPECT_EQ(paintMethod->rowCount_, 4); in HWTEST_F() 200 EXPECT_EQ(paintMethod->rowCount_, 12); in HWTEST_F()
|