Searched refs:CurEntry (Results 1 – 4 of 4) sorted by relevance
/external/clang/lib/Frontend/ |
D | InitHeaderSearch.cpp | 503 const DirectoryLookup &CurEntry = SearchList[i]; in RemoveDuplicates() local 505 if (CurEntry.isNormalDir()) { in RemoveDuplicates() 507 if (SeenDirs.insert(CurEntry.getDir()).second) in RemoveDuplicates() 509 } else if (CurEntry.isFramework()) { in RemoveDuplicates() 511 if (SeenFrameworkDirs.insert(CurEntry.getFrameworkDir()).second) in RemoveDuplicates() 514 assert(CurEntry.isHeaderMap() && "Not a headermap or normal dir?"); in RemoveDuplicates() 516 if (SeenHeaderMaps.insert(CurEntry.getHeaderMap()).second) in RemoveDuplicates() 527 if (CurEntry.getDirCharacteristic() != SrcMgr::C_User) { in RemoveDuplicates() 536 if (SearchEntry.getLookupType() != CurEntry.getLookupType()) in RemoveDuplicates() 540 if (CurEntry.isNormalDir()) in RemoveDuplicates() [all …]
|
/external/llvm/tools/llvm-dwp/ |
D | llvm-dwp.cpp | 389 uint32_t (&ContributionOffsets)[8], UnitIndexEntry &CurEntry, in handleSection() argument 420 CurEntry.Contributions[Index].Offset = ContributionOffsets[Index]; in handleSection() 422 (CurEntry.Contributions[Index].Length = Contents.size()); in handleSection() 503 UnitIndexEntry CurEntry = {}; in write() local 517 UncompressedSections, ContributionOffsets, CurEntry, in write() 534 auto P = IndexEntries.insert(std::make_pair(ID.Signature, CurEntry)); in write() 540 CurEntry, ContributionOffsets[DW_SECT_TYPES - DW_SECT_INFO]); in write() 553 auto P = IndexEntries.insert(std::make_pair(E.getSignature(), CurEntry)); in write() 584 CurTypesSection.front(), CurEntry, in write()
|
/external/llvm/tools/llvm-rtdyld/ |
D | llvm-rtdyld.cpp | 593 std::pair<void*, uint64_t> CurEntry = Worklist.front(); in remapSectionsAndSymbols() local 599 if (NextSectionAddr + CurEntry.second + TargetSectionSep <= Alloc.first) in remapSectionsAndSymbols() 604 AlreadyAllocated[NextSectionAddr] = CurEntry.second; in remapSectionsAndSymbols() 605 Checker.getRTDyld().mapSectionAddress(CurEntry.first, NextSectionAddr); in remapSectionsAndSymbols()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfDebug.cpp | 893 auto CurEntry = DebugLoc.rbegin(); in buildLocationList() local 895 dbgs() << CurEntry->getValues().size() << " Values:\n"; in buildLocationList() 896 for (auto &Value : CurEntry->getValues()) in buildLocationList() 901 auto PrevEntry = std::next(CurEntry); in buildLocationList() 902 if (PrevEntry != DebugLoc.rend() && PrevEntry->MergeRanges(*CurEntry)) in buildLocationList()
|