Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DThreadSafety.cpp536 Context NewCtx = ContextFactory.add(Ctx, D, newID); in addDefinition() local
538 return NewCtx; in addDefinition()
544 Context NewCtx = ContextFactory.add(Ctx, D, newID); in addReference() local
546 return NewCtx; in addReference()
554 Context NewCtx = ContextFactory.remove(Ctx, D); in updateDefinition() local
555 NewCtx = ContextFactory.add(NewCtx, D, newID); in updateDefinition()
557 return NewCtx; in updateDefinition()
565 Context NewCtx = Ctx; in clearDefinition() local
566 if (NewCtx.contains(D)) { in clearDefinition()
567 NewCtx = ContextFactory.remove(NewCtx, D); in clearDefinition()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A DThreadSafeModule.h53 ThreadSafeContext(std::unique_ptr<LLVMContext> NewCtx) in ThreadSafeContext() argument
54 : S(std::make_shared<State>(std::move(NewCtx))) { in ThreadSafeContext()