Home
last modified time | relevance | path

Searched refs:itemsSize (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/
H A Dbluetooth_ble_central_manager_stub.cpp149 int32_t itemsSize = 0; in StartScanInner() local
150 if (!data.ReadInt32(itemsSize) || itemsSize > BLE_CENTRAL_MANAGER_STUB_READ_DATA_SIZE_MAX_LEN) { in StartScanInner()
154 for (int i = 0; i < itemsSize; i++) { in StartScanInner()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/src/
H A Dbluetooth_avrcp_ct_observer_stub.cpp614 int32_t itemsSize = data.ReadInt32(); in OnGetMediaPlayersInner() local
615 if (static_cast<uint32_t>(itemsSize) > AVRCP_MEDIA_PLAYER_NUM_MAX) { in OnGetMediaPlayersInner()
618 for (int i = 0; i < itemsSize; i++) { in OnGetMediaPlayersInner()
638 int32_t itemsSize = data.ReadInt32(); in OnGetFolderItemsInner() local
639 if (static_cast<uint32_t>(itemsSize) > AVRCP_FOLDER_ITEMS_NUM_MAX) { in OnGetFolderItemsInner()
642 for (int i = 0; i < itemsSize; i++) { in OnGetFolderItemsInner()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/
H A Dlist_height_offset_calculator.h39 …float itemsSize = itemPosition.rbegin()->second.endPos - itemPosition.begin()->second.startPos + s… in ListHeightOffsetCalculator() local
40 estimateItemHeight_ = itemsSize / itemPosition.size() - space; in ListHeightOffsetCalculator()
H A Dlist_pattern.cpp1984 …float itemsSize = itemPosition_.rbegin()->second.endPos - itemPosition_.begin()->second.startPos +… in GetTotalHeight() local
1985 float remainOffset = itemsSize / itemPosition_.size() * remainCount - spaceWidth_; in GetTotalHeight()