| /external/skia/src/sksl/ |
| D | SkSLModuleLoader.cpp | 90 struct ModuleLoader::Impl { 118 ModuleLoader ModuleLoader::Get() { in Get() 119 static SkNoDestructor<ModuleLoader::Impl> sModuleLoaderImpl; in Get() 120 return ModuleLoader(*sModuleLoaderImpl); in Get() 123 ModuleLoader::ModuleLoader(ModuleLoader::Impl& m) : fModuleLoader(m) { in ModuleLoader() function in SkSL::ModuleLoader 127 ModuleLoader::~ModuleLoader() { in ~ModuleLoader() 131 void ModuleLoader::unloadModules() { in unloadModules() 143 ModuleLoader::Impl::Impl() { in Impl() 191 const BuiltinTypes& ModuleLoader::builtinTypes() { in builtinTypes() 195 const Module* ModuleLoader::rootModule() { in rootModule() [all …]
|
| D | SkSLModuleLoader.h | 22 class ModuleLoader { 28 ModuleLoader(ModuleLoader::Impl&); 29 ~ModuleLoader(); 33 static ModuleLoader Get();
|
| D | SkSLCompiler.cpp | 57 auto moduleLoader = ModuleLoader::Get(); in Compiler() 64 auto m = ModuleLoader::Get(); in moduleForProgramKind() 250 auto m = SkSL::ModuleLoader::Get(); in optimizeModuleBeforeMinifying()
|
| /external/llvm/include/llvm/Transforms/IPO/ |
| D | FunctionImport.h | 48 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/clang/include/clang/Lex/ |
| D | ModuleLoader.h | 56 class ModuleLoader { 60 explicit ModuleLoader(bool BuildingModule = false) : 64 virtual ~ModuleLoader();
|
| D | Preprocessor.h | 59 class ModuleLoader; variable 107 ModuleLoader &TheModuleLoader; 656 ModuleLoader &TheModuleLoader, 716 ModuleLoader &getModuleLoader() const { return TheModuleLoader; } in getModuleLoader()
|
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/IPO/ |
| D | FunctionImport.h | 108 FunctionImporter(const ModuleSummaryIndex &Index, ModuleLoaderTy ModuleLoader) in FunctionImporter() argument 109 : Index(Index), ModuleLoader(std::move(ModuleLoader)) {} in FunctionImporter() 119 ModuleLoaderTy ModuleLoader; variable
|
| /external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Transforms/IPO/ |
| D | FunctionImport.h | 108 FunctionImporter(const ModuleSummaryIndex &Index, ModuleLoaderTy ModuleLoader, in FunctionImporter() argument 110 : Index(Index), ModuleLoader(std::move(ModuleLoader)), in FunctionImporter() 121 ModuleLoaderTy ModuleLoader; variable
|
| /external/llvm/include/llvm/LTO/ |
| D | LTO.h | 34 class ModuleLoader { 43 ModuleLoader(LLVMContext &Context, StringMap<MemoryBufferRef> &ModuleMap) in ModuleLoader() function
|
| /external/python/jinja/tests/ |
| D | test_loader.py | 193 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/libchrome/third_party/jinja2/ |
| D | __init__.py | 38 ModuleLoader
|
| D | loaders.py | 421 class ModuleLoader(BaseLoader): class 463 return ModuleLoader.get_template_key(name) + '.py'
|
| /external/python/cpython2/Lib/ |
| D | ihooks.py | 206 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/python/jinja/src/jinja2/ |
| D | __init__.py | 28 from .loaders import ModuleLoader
|
| D | loaders.py | 504 class ModuleLoader(BaseLoader): class 547 return ModuleLoader.get_template_key(name) + ".py"
|
| /external/libchrome/mojo/public/tools/bindings/pylib/mojom/generate/ |
| D | template_expander.py | 19 loader = jinja2.ModuleLoader(os.path.join(
|
| /external/llvm/tools/llvm-link/ |
| D | llvm-link.cpp | 215 auto ModuleLoader = [&Context](const char *argv0, in importFunctions() local 219 ModuleLazyLoaderCache ModuleLoaderCache(ModuleLoader); in importFunctions()
|
| /external/skia/tools/sksl-minify/ |
| D | SkSLMinify.cpp | 100 SkSL::ModuleLoader::Get().addPublicTypeAliases(modules.front().get()); in compile_module_list() 115 const SkSL::Module* parent = modules.empty() ? SkSL::ModuleLoader::Get().rootModule() in compile_module_list()
|
| /external/llvm/lib/Transforms/IPO/ |
| D | FunctionImport.cpp | 582 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/ |
| D | CompilerInstance.h | 71 class CompilerInstance : public ModuleLoader { 773 return ModuleLoader::HadFatalFailure; in hadModuleLoaderFatalFailure()
|
| /external/clang/unittests/Lex/ |
| D | PPConditionalDirectiveRecordTest.cpp | 53 class VoidModuleLoader : public ModuleLoader {
|
| D | PPCallbacksTest.cpp | 35 class VoidModuleLoader : public ModuleLoader {
|
| /external/clang/lib/Lex/ |
| D | Preprocessor.cpp | 65 ModuleLoader &TheModuleLoader, in Preprocessor() 904 ModuleLoader::~ModuleLoader() { } in ~ModuleLoader()
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/ |
| D | LTOBackend.cpp | 545 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/ |
| D | FunctionImport.cpp | 1131 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()
|