Searched refs:NewCtx (Results 1 – 2 of 2) sorted by relevance
532 Context NewCtx = ContextFactory.add(Ctx, D, newID); in addDefinition() local534 return NewCtx; in addDefinition()540 Context NewCtx = ContextFactory.add(Ctx, D, newID); in addReference() local542 return NewCtx; in addReference()550 Context NewCtx = ContextFactory.remove(Ctx, D); in updateDefinition() local551 NewCtx = ContextFactory.add(NewCtx, D, newID); in updateDefinition()553 return NewCtx; in updateDefinition()561 Context NewCtx = Ctx; in clearDefinition() local562 if (NewCtx.contains(D)) { in clearDefinition()563 NewCtx = ContextFactory.remove(NewCtx, D); in clearDefinition()[all …]
53 ThreadSafeContext(std::unique_ptr<LLVMContext> NewCtx) in ThreadSafeContext() argument54 : S(std::make_shared<State>(std::move(NewCtx))) { in ThreadSafeContext()