Lines Matching refs:Module
25 auto M = std::make_unique<Module>("M", *TSCtx.getContext()); in TEST()
34 auto M1 = std::make_unique<Module>("M1", *TSCtx.getContext()); in TEST()
37 auto M2 = std::make_unique<Module>("M2", *TSCtx.getContext()); in TEST()
48 auto M1 = std::make_unique<Module>("M1", *TSCtx.getContext()); in TEST()
53 auto M2 = std::make_unique<Module>("M2", *TSCtx.getContext()); in TEST()
62 auto M = std::make_unique<Module>("M", *TSCtx.getContext()); in TEST()
70 auto M = std::make_unique<Module>("M", *TSCtx.getContext()); in TEST()
90 auto M = std::make_unique<Module>("M", Ctx); in TEST()
97 ThreadSafeModule TSM(std::make_unique<Module>("M", *TSCtx.getContext()), in TEST()
99 TSM.withModuleDo([](Module &M) {}); in TEST()
105 const ThreadSafeModule TSM(std::make_unique<Module>("M", *TSCtx.getContext()), in TEST()
107 TSM.withModuleDo([](const Module &M) {}); in TEST()
113 ThreadSafeModule TSM(std::make_unique<Module>("M", *TSCtx.getContext()), in TEST()
115 TSM.consumingModuleDo([](std::unique_ptr<Module> M) {}); in TEST()