Home
last modified time | relevance | path

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

/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDeclContext.cpp77 collection::const_iterator rhs_pos; in operator ==() local
82 for (pos = begin, rhs_pos = rhs_begin; pos != end; ++pos, ++rhs_pos) in operator ==()
84 if (pos->tag != rhs_pos->tag) in operator ==()
88 if (pos->tag == DW_TAG_structure_type && rhs_pos->tag == DW_TAG_class_type) in operator ==()
90 if (pos->tag == DW_TAG_class_type && rhs_pos->tag == DW_TAG_structure_type) in operator ==()
96 for (pos = begin, rhs_pos = rhs_begin; pos != end; ++pos, ++rhs_pos) in operator ==()
98 if (!pos->NameMatches (*rhs_pos)) in operator ==()
/external/lldb/source/Target/
DThreadList.cpp751 collection::iterator rhs_pos, rhs_end = rhs.m_threads.end(); in Update() local
752 for (rhs_pos = rhs.m_threads.begin(); rhs_pos != rhs_end; ++rhs_pos) in Update()
754 const lldb::tid_t tid = (*rhs_pos)->GetID(); in Update()
766 (*rhs_pos)->DestroyThread(); in Update()
/external/icu/icu4c/source/i18n/
Dmsgfmt.cpp416 int32_t idx = 0, rhs_idx = 0, pos = UHASH_FIRST, rhs_pos = UHASH_FIRST; in operator ==() local
419 const UHashElement* rhs_cur = uhash_nextElement(that.customFormatArgStarts, &rhs_pos); in operator ==()