Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDeclContext.cpp64 collection::const_iterator rhs_pos; in operator ==() local
69 for (pos = begin, rhs_pos = rhs_begin; pos != end; ++pos, ++rhs_pos) { in operator ==()
70 if (pos->tag != rhs_pos->tag) { in operator ==()
74 rhs_pos->tag == DW_TAG_class_type) in operator ==()
77 rhs_pos->tag == DW_TAG_structure_type) in operator ==()
83 for (pos = begin, rhs_pos = rhs_begin; pos != end; ++pos, ++rhs_pos) { in operator ==()
84 if (!pos->NameMatches(*rhs_pos)) in operator ==()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadList.cpp755 collection::iterator rhs_pos, rhs_end = rhs.m_threads.end(); in Update() local
756 for (rhs_pos = rhs.m_threads.begin(); rhs_pos != rhs_end; ++rhs_pos) { in Update()
759 if (!(*rhs_pos)->IsValid()) in Update()
762 const lldb::tid_t tid = (*rhs_pos)->GetID(); in Update()
774 (*rhs_pos)->DestroyThread(); in Update()