HomeSort by relevance Sort by last modified time
    Searched refs:CurEntry (Results 1 - 4 of 4) sorted by null

  /external/clang/lib/Frontend/
InitHeaderSearch.cpp 504 const DirectoryLookup &CurEntry = SearchList[i];
506 if (CurEntry.isNormalDir()) {
508 if (SeenDirs.insert(CurEntry.getDir()).second)
510 } else if (CurEntry.isFramework()) {
512 if (SeenFrameworkDirs.insert(CurEntry.getFrameworkDir()).second)
515 assert(CurEntry.isHeaderMap() && "Not a headermap or normal dir?");
517 if (SeenHeaderMaps.insert(CurEntry.getHeaderMap()).second)
528 if (CurEntry.getDirCharacteristic() != SrcMgr::C_User) {
537 if (SearchEntry.getLookupType() != CurEntry.getLookupType())
541 if (CurEntry.isNormalDir()
    [all...]
  /external/llvm/tools/llvm-dwp/
llvm-dwp.cpp 265 UnitIndexEntry &CurEntry = IndexEntries.back();
290 CurEntry.Contributions[Index].Offset = ContributionOffsets[Index];
292 (CurEntry.Contributions[Index].Length = Contents.size());
322 CurEntry.Signature = getCUSignature(AbbrevSection, InfoSection);
323 addAllTypes(Out, TypeIndexEntries, TypesSection, CurTypesSection, CurEntry,
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 564 std::pair<void*, uint64_t> CurEntry = Worklist.front();
570 if (NextSectionAddr + CurEntry.second + TargetSectionSep <= Alloc.first)
575 AlreadyAllocated[NextSectionAddr] = CurEntry.second;
576 Checker.getRTDyld().mapSectionAddress(CurEntry.first, NextSectionAddr);
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 882 auto CurEntry = DebugLoc.rbegin();
884 dbgs() << CurEntry->getValues().size() << " Values:\n";
885 for (auto &Value : CurEntry->getValues())
890 auto PrevEntry = std::next(CurEntry);
891 if (PrevEntry != DebugLoc.rend() && PrevEntry->MergeRanges(*CurEntry))
    [all...]

Completed in 500 milliseconds