Lines Matching defs:Iter
90 LVSymbolNames::iterator Iter = SymbolNames.find(std::string(Name));
91 return Iter != SymbolNames.end() ? Iter->second : Empty;
94 LVSymbolNames::iterator Iter = SymbolNames.find(std::string(Name));
95 return Iter != SymbolNames.end() ? Iter->second.Address : 0;
98 LVSymbolNames::iterator Iter = SymbolNames.find(std::string(Name));
99 return Iter != SymbolNames.end() ? Iter->second.SectionIndex
103 LVSymbolNames::iterator Iter = SymbolNames.find(std::string(Name));
104 return Iter != SymbolNames.end() ? Iter->second.IsComdat : false;
345 LVSections::iterator Iter = Sections.find(SectionIndex);
346 if (Iter == Sections.end()) {
351 const object::SectionRef Section = Iter->second;
356 LVSectionAddresses::const_iterator Iter =
358 if (Iter == SectionAddresses.begin())
364 Iter = SectionAddresses.lower_bound(Address);
365 if (Iter != SectionAddresses.begin())
366 --Iter;
367 return std::make_pair(Iter->first, Iter->second);
613 LVLines::iterator Iter = DebugLines->begin();
614 while (TraverseLines && Iter != DebugLines->end()) {
615 uint64_t DebugAddress = (*Iter)->getAddress();
624 ++Iter;
649 ++Iter;
660 while (Iter != DebugLines->end()) {
661 DebugAddress = (*Iter)->getAddress();
663 bool IsDebug = (*Iter)->getIsLineDebug();
667 dbgs() << format(" %d", (*Iter)->getLineNumber());
675 << format("%d", (*Iter)->getLineNumber()) << " ["
678 Iter = DebugLines->insert(Iter, InstructionLine);
681 ++Iter;
684 ++Iter;
686 if (Iter == DebugLines->end()) {
881 for (LVLines::iterator Iter = IterStart; Iter < IterEnd; ++Iter)
882 Group.push_back(*Iter);
900 LVInlineeLine::iterator Iter = CUInlineeLines.find(Scope);
901 if (Iter != CUInlineeLines.end())
902 InlineeIters.push_back(Iter);
933 LVLines::iterator Iter = std::find_if(
937 if (Iter != CULines.end()) {
938 // 'Iter' points to the line where the inlined function is called.
940 Scope->setCallLineNumber((*Iter)->getLineNumber());
944 (*Iter)->setLineNumber((*InlineeLines->begin())->getLineNumber());
945 ++Iter;
946 CULines.insert(Iter, InlineeLines->begin() + 1, InlineeLines->end());