Home
last modified time | relevance | path

Searched refs:CurEntry (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DInitHeaderSearch.cpp500 const DirectoryLookup &CurEntry = SearchList[i]; in RemoveDuplicates() local
502 if (CurEntry.isNormalDir()) { in RemoveDuplicates()
504 if (SeenDirs.insert(CurEntry.getDir()).second) in RemoveDuplicates()
506 } else if (CurEntry.isFramework()) { in RemoveDuplicates()
513 if (SeenHeaderMaps.insert(CurEntry.getHeaderMap()).second) in RemoveDuplicates()
524 if (CurEntry.getDirCharacteristic() != SrcMgr::C_User) { in RemoveDuplicates()
533 if (SearchEntry.getLookupType() != CurEntry.getLookupType()) in RemoveDuplicates()
537 if (CurEntry.isNormalDir()) in RemoveDuplicates()
538 isSame = SearchEntry.getDir() == CurEntry.getDir(); in RemoveDuplicates()
539 else if (CurEntry.isFramework()) in RemoveDuplicates()
[all …]
/freebsd-12.1/contrib/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp607 std::pair<void*, uint64_t> CurEntry = Worklist.front(); in remapSectionsAndSymbols() local
613 if (NextSectionAddr + CurEntry.second + TargetSectionSep <= Alloc.first) in remapSectionsAndSymbols()
618 AlreadyAllocated[NextSectionAddr] = CurEntry.second; in remapSectionsAndSymbols()
619 Checker.getRTDyld().mapSectionAddress(CurEntry.first, NextSectionAddr); in remapSectionsAndSymbols()
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp1220 auto CurEntry = DebugLoc.rbegin(); in buildLocationList() local
1222 dbgs() << CurEntry->getValues().size() << " Values:\n"; in buildLocationList()
1223 for (auto &Value : CurEntry->getValues()) in buildLocationList()
1228 auto PrevEntry = std::next(CurEntry); in buildLocationList()
1229 if (PrevEntry != DebugLoc.rend() && PrevEntry->MergeRanges(*CurEntry)) in buildLocationList()