Searched refs:BeginIt (Results 1 - 3 of 3) sorted by relevance

/external/llvm/tools/llvm-readobj/
H A DELFDumper.cpp1058 void printGotEntry(uint64_t GotAddr, GOTIter BeginIt, GOTIter It);
1059 void printGlobalGotEntry(uint64_t GotAddr, GOTIter BeginIt, GOTIter It,
1189 void MipsGOTParser<ELFT>::printGotEntry(uint64_t GotAddr, GOTIter BeginIt, argument
1191 int64_t Offset = std::distance(BeginIt, It) * sizeof(GOTEntry);
1198 void MipsGOTParser<ELFT>::printGlobalGotEntry(uint64_t GotAddr, GOTIter BeginIt, argument
1200 printGotEntry(GotAddr, BeginIt, It);
/external/clang/lib/Frontend/
H A DASTUnit.cpp2651 LocDeclsTy::iterator BeginIt =
2655 if (BeginIt != LocDecls.begin())
2656 --BeginIt;
2661 while (BeginIt != LocDecls.begin() &&
2662 BeginIt->second->isTopLevelDeclInObjCContainer())
2663 --BeginIt;
2671 for (LocDeclsTy::iterator DIt = BeginIt; DIt != EndIt; ++DIt)
/external/clang/lib/Serialization/
H A DASTReader.cpp6313 BeginIt = std::lower_bound(DInfo.Decls.begin(), DInfo.Decls.end(),
6315 if (BeginIt != DInfo.Decls.begin())
6316 --BeginIt;
6321 while (BeginIt != DInfo.Decls.begin() &&
6322 GetDecl(getGlobalDeclID(*DInfo.Mod, *BeginIt))
6324 --BeginIt;
6333 DIt = BeginIt; DIt != EndIt; ++DIt)

Completed in 1723 milliseconds