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.cpp66 collection::const_iterator rhs_pos; in operator ==() local
71 for (pos = begin, rhs_pos = rhs_begin; pos != end; ++pos, ++rhs_pos) { in operator ==()
72 if (pos->tag != rhs_pos->tag) { in operator ==()
76 rhs_pos->tag == DW_TAG_class_type) in operator ==()
79 rhs_pos->tag == DW_TAG_structure_type) in operator ==()
85 for (pos = begin, rhs_pos = rhs_begin; pos != end; ++pos, ++rhs_pos) { in operator ==()
86 if (!pos->NameMatches(*rhs_pos)) in operator ==()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadList.cpp754 collection::iterator rhs_pos, rhs_end = rhs.m_threads.end(); in Update() local
755 for (rhs_pos = rhs.m_threads.begin(); rhs_pos != rhs_end; ++rhs_pos) { in Update()
758 if (!(*rhs_pos)->IsValid()) in Update()
761 const lldb::tid_t tid = (*rhs_pos)->GetID(); in Update()
773 (*rhs_pos)->DestroyThread(); in Update()