reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/DebugInfo/CodeView/DebugCrossExSubsection.h
   40   Iterator end() const { return References.end(); }
include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h
   32   FixedStreamArray<FrameData>::Iterator end() const { return Frames.end(); }
include/llvm/DebugInfo/CodeView/DebugSymbolRVASubsection.h
   37   ArrayType::Iterator end() const { return RVAs.end(); }
include/llvm/DebugInfo/PDB/Native/GlobalsStream.h
   67   GSIHashIterator end() const { return GSIHashIterator(HashRecords.end()); }
include/llvm/Support/BinaryStreamArray.h
  307     FixedStreamArrayIterator<T> I = end();
lib/DebugInfo/CodeView/LazyRandomTypeCollection.cpp
  175   auto Next = std::upper_bound(PartialOffsets.begin(), PartialOffsets.end(), TI,
  194   if (Next == PartialOffsets.end()) {
lib/DebugInfo/CodeView/TypeIndexDiscovery.cpp
  476     Indices.append(Run.begin(), Run.end());
lib/DebugInfo/PDB/Native/DbiModuleList.cpp
  209   for (auto Count : ModFileCountArray)
lib/DebugInfo/PDB/Native/DbiStream.cpp
  227     for (auto &SC : SectionContribs)
  231     for (auto &SC : SectionContribs2)
lib/DebugInfo/PDB/Native/GlobalsStream.cpp
  159   for (uint32_t B : HashBitmap)
lib/ObjectYAML/CodeViewYAMLDebugSections.cpp
  596       for (const auto &C : L.Columns) {
  603     for (const auto &LN : L.LineNumbers) {
  634       for (const auto EF : IL.ExtraFiles) {
  665     YCMI.ImportIds.assign(CMI.Imports.begin(), CMI.Imports.end());
tools/lld/COFF/PDB.cpp
 1097       for (uint32_t extraFileId : line.ExtraFiles) {
 1210       for (const object::FpoData &fd : fpoRecords)
 1809     for (const LineNumberEntry &ln : entry.LineNumbers) {
tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp
  413       addr_map.begin(), addr_map.end(), addr,
  423   if (iter == addr_map.end())
tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
 1119       for (const LineNumberEntry &entry : group.LineNumbers) {
tools/llvm-pdbutil/DumpOutputStyle.cpp
 1000           for (const auto &ExtraFileID : Entry.ExtraFiles) {
 1041           for (const auto I : Xmi.Imports)
 1104   for (const object::FpoData &FD : Records) {
 1182           std::max_element(IS->name_ids().begin(), IS->name_ids().end());
 1189                                       IS->name_ids().end());
 1503     for (const auto &IO : IndexOffsets) {
 1762     for (uint32_t Addr : Publics.getAddressMap())
 1770     for (uint32_t Addr : Publics.getThunkMap())
 1779     for (const SectionOffset &SO : Publics.getSectionOffsets())
 1829       for (const PSHashRecord &HR : Table.HashRecords)
 1837       for (uint32_t Hash : Table.HashBuckets)
 1982   for (auto &M : Dbi.getSectionMap()) {
tools/llvm-pdbutil/YAMLOutputStyle.cpp
  116   for (auto ID : ST.name_ids()) {
tools/llvm-readobj/COFFDumper.cpp
 1131       for (const auto &Line : Entry.LineNumbers) {
 1219       for (const auto &FID : Line.ExtraFiles) {
unittests/Support/BinaryStreamTest.cpp
  431     ASSERT_EQ(Array.end(), Iter);
  455     ASSERT_EQ(Array.end(), Iter);
  584     ASSERT_EQ(Ints, std::vector<int>(FixedIntsRef.begin(), FixedIntsRef.end()));
usr/include/c++/7.4.0/bits/range_access.h
   68     end(_Container& __cont) -> decltype(__cont.end())
   69     { return __cont.end(); }
   78     end(const _Container& __cont) -> decltype(__cont.end())