Home
last modified time | relevance | path

Searched refs:curRow (Results 1 - 10 of 10) sorted by relevance

/foundation/distributeddatamgr/relational_store/test/ndk/unittest/
H A Drdb_cursor_test.cpp122 int curRow = 1; in CreateAssetTable() local
129 valueBucket->putInt64(valueBucket, "id", curRow); in CreateAssetTable()
136 EXPECT_EQ(rowID, curRow); in CreateAssetTable()
137 curRow++; in CreateAssetTable()
140 valueBucket->putInt64(valueBucket, "id", curRow); in CreateAssetTable()
147 EXPECT_EQ(rowID, curRow); in CreateAssetTable()
632 int curRow = 3; in HWTEST_F() local
639 valueBucket->putInt64(valueBucket, "id", curRow); in HWTEST_F()
665 EXPECT_EQ(rowID, curRow); in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/grid_layout/
H A Dgrid_layout_algorithm.cpp153 void GridLayoutAlgorithm::GetNextGrid(int32_t& curRow, int32_t& curCol) const in GetNextGrid() argument
159 ++curRow; in GetNextGrid()
162 ++curRow; in GetNextGrid()
163 if (curRow >= mainCount_) { in GetNextGrid()
164 curRow = 0; in GetNextGrid()
H A Dgrid_layout_algorithm.h44 void GetNextGrid(int32_t& curRow, int32_t& curCol) const;
/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/include/
H A Djpeg_encoder.h41 void Deinterweave(uint8_t *uvPlane, uint8_t *uPlane, uint8_t *vPlane, uint32_t curRow, uint32_t width,
/foundation/arkui/ace_engine/frameworks/core/components/grid_layout/
H A Drender_grid_layout.cpp754 void RenderGridLayout::GetNextGrid(int32_t& curRow, int32_t& curCol) const
760 ++curRow;
763 ++curRow;
764 if (curRow >= rowCount_) {
765 curRow = 0;
771 void RenderGridLayout::GetPreviousGird(int32_t& curRow, int32_t& curCol) const
777 --curRow;
780 --curRow;
781 if (curRow < 0) {
782 curRow
[all...]
H A Drender_grid_layout.h239 virtual void GetNextGrid(int32_t& curRow, int32_t& curCol) const;
241 virtual void GetPreviousGird(int32_t& curRow, int32_t& curCol) const;
/foundation/arkui/ace_engine/test/unittest/core/pattern/grid/
H A Dgrid_scroll_layout_test_ng.cpp435 * @tc.expected: The curRow and curCol is correct in HWTEST_F()
437 int32_t curRow = 0; in HWTEST_F() local
443 algorithm->GetNextGrid(curRow, curCol); in HWTEST_F()
444 EXPECT_EQ(curRow, 0); in HWTEST_F()
447 algorithm->GetNextGrid(curRow, curCol); in HWTEST_F()
448 EXPECT_EQ(curRow, 1); in HWTEST_F()
450 curRow = 1; in HWTEST_F()
455 * @tc.expected: The curRow and curCol is correct in HWTEST_F()
458 algorithm->GetNextGrid(curRow, curCol); in HWTEST_F()
459 EXPECT_EQ(curRow, in HWTEST_F()
[all...]
/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/src/
H A Djpeg_encoder.cpp309 void JpegEncoder::Deinterweave(uint8_t *uvPlane, uint8_t *uPlane, uint8_t *vPlane, uint32_t curRow, uint32_t width, in Deinterweave() argument
313 uint32_t rowNum = (height - curRow) >> SHIFT_MASK; in Deinterweave()
324 uint32_t offset = ((curRow >> SHIFT_MASK) + row) * width; in Deinterweave()
/foundation/graphic/graphic_3d/lume/Lume_3D/src/util/
H A Dmesh_util.cpp179 const uint32_t curRow = ring * sectors; in GenerateSphereGeometry() local
183 indices.push_back(curRow + sector); in GenerateSphereGeometry()
187 indices.push_back(curRow + sector); in GenerateSphereGeometry()
189 indices.push_back(curRow + nextS); in GenerateSphereGeometry()
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/plugin_test/
H A Dplugin_libjpeg_test.cpp2219 uint32_t curRow = 0; in HWTEST_F() local
2222 Jpegencoder->Deinterweave(uvPlane, uPlane, vPlane, curRow, width, height); in HWTEST_F()

Completed in 12 milliseconds