Home
last modified time | relevance | path

Searched refs:NewCtx (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DThreadSafety.cpp534 return NewCtx; in addDefinition()
542 return NewCtx; in addReference()
551 NewCtx = ContextFactory.add(NewCtx, D, newID); in updateDefinition()
553 return NewCtx; in updateDefinition()
561 Context NewCtx = Ctx; in clearDefinition() local
563 NewCtx = ContextFactory.remove(NewCtx, D); in clearDefinition()
564 NewCtx = ContextFactory.add(NewCtx, D, 0); in clearDefinition()
566 return NewCtx; in clearDefinition()
571 Context NewCtx = Ctx; in removeDefinition() local
573 NewCtx = ContextFactory.remove(NewCtx, D); in removeDefinition()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/Orc/
H A DThreadSafeModule.h59 ThreadSafeContext(std::unique_ptr<LLVMContext> NewCtx) in ThreadSafeContext() argument
60 : S(std::make_shared<State>(std::move(NewCtx))) { in ThreadSafeContext()