Home
last modified time | relevance | path

Searched refs:rhs_pos (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDeclContext.cpp62 collection::const_iterator rhs_pos; in operator ==() local
67 for (pos = begin, rhs_pos = rhs_begin; pos != end; ++pos, ++rhs_pos) { in operator ==()
68 if (pos->tag != rhs_pos->tag) { in operator ==()
72 rhs_pos->tag == DW_TAG_class_type) in operator ==()
75 rhs_pos->tag == DW_TAG_structure_type) in operator ==()
81 for (pos = begin, rhs_pos = rhs_begin; pos != end; ++pos, ++rhs_pos) { in operator ==()
82 if (!pos->NameMatches(*rhs_pos)) in operator ==()
/external/llvm-project/lldb/source/Target/
DThreadList.cpp716 collection::iterator rhs_pos, rhs_end = rhs.m_threads.end(); in Update() local
717 for (rhs_pos = rhs.m_threads.begin(); rhs_pos != rhs_end; ++rhs_pos) { in Update()
720 if (!(*rhs_pos)->IsValid()) in Update()
723 const lldb::tid_t tid = (*rhs_pos)->GetID(); in Update()
735 (*rhs_pos)->DestroyThread(); in Update()
/external/icu/icu4c/source/i18n/
Dmsgfmt.cpp420 int32_t idx = 0, rhs_idx = 0, pos = UHASH_FIRST, rhs_pos = UHASH_FIRST; in operator ==() local
423 const UHashElement* rhs_cur = uhash_nextElement(that.customFormatArgStarts, &rhs_pos); in operator ==()