Home
last modified time | relevance | path

Searched refs:rIt (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/dfx/src/
H A Drdb_fault_hiview_reporter.cpp207 auto rIt = infos.begin(); in Update() local
208 for (; lIt != local.end() && rIt != infos.end();) { in Update()
209 if (lIt->first == rIt->first) { in Update()
210 if (lIt->second.inode_ != rIt->second.inode_) { in Update()
211 lIt->second.oldInode_ = rIt->second.inode_; in Update()
214 ++rIt; in Update()
217 if (lIt->first < rIt->first) { in Update()
220 ++rIt; in Update()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/
H A Dgrid_layout_info.cpp750 for (auto rIt = std::make_reverse_iterator(++it); rIt != gridMatrix_.rend(); ++rIt) { in FindEndIdx() local
751 const auto& row = rIt->second; in FindEndIdx()
755 return { .itemIdx = cell->second, .y = rIt->first, .x = cell->first }; in FindEndIdx()