Lines Matching refs:Iter

90   LVSymbolNames::iterator Iter = SymbolNames.find(std::string(Name));  in getEntry()  local
91 return Iter != SymbolNames.end() ? Iter->second : Empty; in getEntry()
94 LVSymbolNames::iterator Iter = SymbolNames.find(std::string(Name)); in getAddress() local
95 return Iter != SymbolNames.end() ? Iter->second.Address : 0; in getAddress()
98 LVSymbolNames::iterator Iter = SymbolNames.find(std::string(Name)); in getIndex() local
99 return Iter != SymbolNames.end() ? Iter->second.SectionIndex in getIndex()
103 LVSymbolNames::iterator Iter = SymbolNames.find(std::string(Name)); in getIsComdat() local
104 return Iter != SymbolNames.end() ? Iter->second.IsComdat : false; in getIsComdat()
316 LVSections::iterator Iter = Sections.find(SectionIndex); in getSection() local
317 if (Iter == Sections.end()) { in getSection()
322 const object::SectionRef Section = Iter->second; in getSection()
327 LVSectionAddresses::const_iterator Iter = in getSection() local
329 if (Iter == SectionAddresses.begin()) in getSection()
335 Iter = SectionAddresses.lower_bound(Address); in getSection()
336 if (Iter != SectionAddresses.begin()) in getSection()
337 --Iter; in getSection()
338 return std::make_pair(Iter->first, Iter->second); in getSection()
584 LVLines::iterator Iter = DebugLines->begin(); in processLines() local
585 while (TraverseLines && Iter != DebugLines->end()) { in processLines()
586 uint64_t DebugAddress = (*Iter)->getAddress(); in processLines()
595 ++Iter; in processLines()
620 ++Iter; in processLines()
631 while (Iter != DebugLines->end()) { in processLines()
632 DebugAddress = (*Iter)->getAddress(); in processLines()
634 bool IsDebug = (*Iter)->getIsLineDebug(); in processLines()
638 dbgs() << format(" %d", (*Iter)->getLineNumber()); in processLines()
646 << format("%d", (*Iter)->getLineNumber()) << " [" in processLines()
649 Iter = DebugLines->insert(Iter, InstructionLine); in processLines()
652 ++Iter; in processLines()
655 ++Iter; in processLines()
657 if (Iter == DebugLines->end()) { in processLines()
852 for (LVLines::iterator Iter = IterStart; Iter < IterEnd; ++Iter) in processLines() local
853 Group.push_back(*Iter); in processLines()
871 LVInlineeLine::iterator Iter = CUInlineeLines.find(Scope); in includeInlineeLines() local
872 if (Iter != CUInlineeLines.end()) in includeInlineeLines()
873 InlineeIters.push_back(Iter); in includeInlineeLines()
904 LVLines::iterator Iter = std::find_if( in includeInlineeLines() local
908 if (Iter != CULines.end()) { in includeInlineeLines()
911 Scope->setCallLineNumber((*Iter)->getLineNumber()); in includeInlineeLines()
915 (*Iter)->setLineNumber((*InlineeLines->begin())->getLineNumber()); in includeInlineeLines()
916 ++Iter; in includeInlineeLines()
917 CULines.insert(Iter, InlineeLines->begin() + 1, InlineeLines->end()); in includeInlineeLines()