Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DInMemoryModuleCache.cpp16 auto I = PCMs.find(Filename); in getPCMState()
17 if (I == PCMs.end()) in getPCMState()
27 auto Insertion = PCMs.insert(std::make_pair(Filename, std::move(Buffer))); in addPCM()
35 auto &PCM = PCMs[Filename]; in addBuiltPCM()
45 auto I = PCMs.find(Filename); in lookupPCM()
46 if (I == PCMs.end()) in lookupPCM()
60 auto I = PCMs.find(Filename); in tryToDropPCM()
61 assert(I != PCMs.end() && "PCM to remove is unknown..."); in tryToDropPCM()
74 auto I = PCMs.find(Filename); in finalizePCM()
75 assert(I != PCMs.end() && "PCM to finalize is unknown..."); in finalizePCM()
/openbsd-src/gnu/llvm/clang/include/clang/Serialization/
H A DInMemoryModuleCache.h44 llvm::StringMap<PCM> PCMs; variable
/openbsd-src/gnu/llvm/clang/docs/
H A DStandardCPlusPlusModules.rst762 …le-file or by the use of a module-mapper that understands how to map the header name to their PCMs.