Home
last modified time | relevance | path

Searched refs:ModuleLoader (Results 1 – 25 of 39) sorted by relevance

12

/external/skia/src/sksl/
DSkSLModuleLoader.cpp144 struct ModuleLoader::Impl {
171 ModuleLoader ModuleLoader::Get() { in Get()
172 static ModuleLoader::Impl* sModuleLoaderImpl = new ModuleLoader::Impl; in Get()
173 return ModuleLoader(*sModuleLoaderImpl); in Get()
176 ModuleLoader::ModuleLoader(ModuleLoader::Impl& m) : fModuleLoader(m) { in ModuleLoader() function in SkSL::ModuleLoader
180 ModuleLoader::~ModuleLoader() { in ~ModuleLoader()
184 void ModuleLoader::unloadModules() { in unloadModules()
196 ModuleLoader::Impl::Impl() { in Impl()
251 const BuiltinTypes& ModuleLoader::builtinTypes() { in builtinTypes()
255 ModifiersPool& ModuleLoader::coreModifiers() { in coreModifiers()
[all …]
DSkSLModuleLoader.h23 class ModuleLoader {
29 ModuleLoader(ModuleLoader::Impl&);
30 ~ModuleLoader();
34 static ModuleLoader Get();
DSkSLCompiler.cpp140 auto moduleLoader = ModuleLoader::Get(); in Compiler()
148 auto m = ModuleLoader::Get(); in moduleForProgramKind()
293 auto m = SkSL::ModuleLoader::Get(); in optimizeModuleBeforeMinifying()
/external/llvm/include/llvm/Transforms/IPO/
DFunctionImport.h48 std::function<std::unique_ptr<Module>(StringRef Identifier)> ModuleLoader) in FunctionImporter() argument
49 : Index(Index), ModuleLoader(std::move(ModuleLoader)) {} in FunctionImporter()
63 std::function<std::unique_ptr<Module>(StringRef Identifier)> ModuleLoader; variable
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/IPO/
DFunctionImport.h108 FunctionImporter(const ModuleSummaryIndex &Index, ModuleLoaderTy ModuleLoader) in FunctionImporter() argument
109 : Index(Index), ModuleLoader(std::move(ModuleLoader)) {} in FunctionImporter()
119 ModuleLoaderTy ModuleLoader; variable
/external/clang/include/clang/Lex/
DModuleLoader.h56 class ModuleLoader {
60 explicit ModuleLoader(bool BuildingModule = false) :
64 virtual ~ModuleLoader();
DPreprocessor.h59 class ModuleLoader; variable
107 ModuleLoader &TheModuleLoader;
656 ModuleLoader &TheModuleLoader,
716 ModuleLoader &getModuleLoader() const { return TheModuleLoader; } in getModuleLoader()
/external/llvm/include/llvm/LTO/
DLTO.h34 class ModuleLoader {
43 ModuleLoader(LLVMContext &Context, StringMap<MemoryBufferRef> &ModuleMap) in ModuleLoader() function
/external/python/jinja/tests/
Dtest_loader.py193 self.mod_env = Environment(loader=loaders.ModuleLoader(self.archive))
240 key = loaders.ModuleLoader.get_template_key("a/test.html")
288 mod_loader = loaders.ModuleLoader(pathlib.Path(mod_path))
300 mod_loader = loaders.ModuleLoader([pathlib.Path(mod_path), "/tmp/templates"])
/external/skia/tools/sksl-minify/
DSkSLMinify.cpp103 SkSL::ModuleLoader::Get().addPublicTypeAliases(modules.front().get()); in compile_module_list()
118 const SkSL::Module* parent = modules.empty() ? SkSL::ModuleLoader::Get().rootModule() in compile_module_list()
125 SkSL::ModuleLoader::Get().coreModifiers(), in compile_module_list()
/external/python/cpython2/Lib/
Dihooks.py206 class ModuleLoader(BasicModuleLoader): class
286 class FancyModuleLoader(ModuleLoader):
321 return ModuleLoader.load_module(self, name, stuff)
347 self.loader = loader or ModuleLoader(None, verbose)
/external/libchrome/third_party/jinja2/
D__init__.py38 ModuleLoader
Dloaders.py421 class ModuleLoader(BaseLoader): class
463 return ModuleLoader.get_template_key(name) + '.py'
/external/python/jinja/src/jinja2/
D__init__.py28 from .loaders import ModuleLoader
Dloaders.py504 class ModuleLoader(BaseLoader): class
547 return ModuleLoader.get_template_key(name) + ".py"
/external/libchrome/mojo/public/tools/bindings/pylib/mojom/generate/
Dtemplate_expander.py19 loader = jinja2.ModuleLoader(os.path.join(
/external/llvm/tools/llvm-link/
Dllvm-link.cpp215 auto ModuleLoader = [&Context](const char *argv0, in importFunctions() local
219 ModuleLazyLoaderCache ModuleLoaderCache(ModuleLoader); in importFunctions()
/external/llvm/lib/Transforms/IPO/
DFunctionImport.cpp582 std::unique_ptr<Module> SrcModule = ModuleLoader(Name); in importFunctions()
774 auto ModuleLoader = [&M](StringRef Identifier) { in runOnModule() local
777 FunctionImporter Importer(*Index, ModuleLoader); in runOnModule()
/external/clang/include/clang/Frontend/
DCompilerInstance.h71 class CompilerInstance : public ModuleLoader {
773 return ModuleLoader::HadFatalFailure; in hadModuleLoaderFatalFailure()
/external/clang/lib/Lex/
DPreprocessor.cpp65 ModuleLoader &TheModuleLoader, in Preprocessor()
904 ModuleLoader::~ModuleLoader() { } in ~ModuleLoader()
/external/clang/unittests/Lex/
DPPConditionalDirectiveRecordTest.cpp53 class VoidModuleLoader : public ModuleLoader {
DPPCallbacksTest.cpp35 class VoidModuleLoader : public ModuleLoader {
/external/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/
DLTOBackend.cpp545 auto ModuleLoader = [&](StringRef Identifier) { in thinBackend() local
555 FunctionImporter Importer(CombinedIndex, ModuleLoader); in thinBackend()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DFunctionImport.cpp1131 Expected<std::unique_ptr<Module>> SrcModuleOrErr = ModuleLoader(Name); in importFunctions()
1293 auto ModuleLoader = [&M](StringRef Identifier) { in doImportingForModule() local
1296 FunctionImporter Importer(*Index, ModuleLoader); in doImportingForModule()
/external/skia/bench/
DSkSLBench.cpp590 SkSL::ModuleLoader::Get().unloadModules(); in onPreDraw()

12