Searched refs:curRow (Results 1 - 10 of 10) sorted by relevance
/foundation/distributeddatamgr/relational_store/test/ndk/unittest/ |
H A D | rdb_cursor_test.cpp | 122 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 D | grid_layout_algorithm.cpp | 153 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 D | grid_layout_algorithm.h | 44 void GetNextGrid(int32_t& curRow, int32_t& curCol) const;
|
/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/include/ |
H A D | jpeg_encoder.h | 41 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 D | render_grid_layout.cpp | 754 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 D | render_grid_layout.h | 239 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 D | grid_scroll_layout_test_ng.cpp | 435 * @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 D | jpeg_encoder.cpp | 309 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 D | mesh_util.cpp | 179 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 D | plugin_libjpeg_test.cpp | 2219 uint32_t curRow = 0;
in HWTEST_F() local 2222 Jpegencoder->Deinterweave(uvPlane, uPlane, vPlane, curRow, width, height);
in HWTEST_F()
|
Completed in 12 milliseconds