Searched refs:NewCtx (Results 1 – 2 of 2) sorted by relevance
536 Context NewCtx = ContextFactory.add(Ctx, D, newID); in addDefinition() local538 return NewCtx; in addDefinition()544 Context NewCtx = ContextFactory.add(Ctx, D, newID); in addReference() local546 return NewCtx; in addReference()554 Context NewCtx = ContextFactory.remove(Ctx, D); in updateDefinition() local555 NewCtx = ContextFactory.add(NewCtx, D, newID); in updateDefinition()557 return NewCtx; in updateDefinition()565 Context NewCtx = Ctx; in clearDefinition() local566 if (NewCtx.contains(D)) { in clearDefinition()567 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()