/external/llvm/unittests/ExecutionEngine/MCJIT/ |
D | MCJITMultipleModuleTest.cpp | 98 TheJIT->addModule(std::move(B)); in TEST_F() 118 TheJIT->addModule(std::move(B)); in TEST_F() 139 TheJIT->addModule(std::move(B)); in TEST_F() 160 TheJIT->addModule(std::move(B)); in TEST_F() 181 TheJIT->addModule(std::move(B)); in TEST_F() 221 TheJIT->addModule(std::move(B)); in TEST_F() 254 TheJIT->addModule(std::move(B)); in TEST_F() 255 TheJIT->addModule(std::move(C)); in TEST_F() 279 TheJIT->addModule(std::move(B)); in TEST_F() 280 TheJIT->addModule(std::move(C)); in TEST_F() [all …]
|
/external/llvm/test/LTO/X86/ |
D | diagnostic-handler-noexit.ll | 2 ; This test verifies that after addModule() encounters an error, the diagnostic 3 ; handler does not call exit(1) and instead returns to the caller of addModule.
|
/external/chromium-trace/catapult/tracing/third_party/components/webcomponentsjs/ |
D | HTMLImports.js | 183 var addModule = function(module) { function 191 scope.addModule = addModule; 195 HTMLImports.addModule(function(scope) { 222 HTMLImports.addModule(function(scope) { 254 HTMLImports.addModule(function(scope) { 347 HTMLImports.addModule(function(scope) { 380 HTMLImports.addModule(function(scope) { 609 HTMLImports.addModule(function(scope) { 708 HTMLImports.addModule(function(scope) {
|
D | CustomElements.js | 54 var addModule = function(module) { function 62 scope.addModule = addModule; 68 CustomElements.addModule(function(scope) { 126 CustomElements.addModule(function(scope) { 322 CustomElements.addModule(function(scope) { 382 CustomElements.addModule(function(scope) {
|
D | HTMLImports.min.js | 11 …addModule=n,e.initializeModules=r}(HTMLImports),HTMLImports.addModule(function(e){var t=/(url\()([…
|
D | webcomponents-lite.js | 525 var addModule = function(module) { function 533 scope.addModule = addModule; 537 HTMLImports.addModule(function(scope) { 564 HTMLImports.addModule(function(scope) { 596 HTMLImports.addModule(function(scope) { 689 HTMLImports.addModule(function(scope) { 722 HTMLImports.addModule(function(scope) { 951 HTMLImports.addModule(function(scope) { 1050 HTMLImports.addModule(function(scope) { 1115 var addModule = function(module) { function [all …]
|
D | webcomponents-lite.min.js | 11 …addModule=n,e.initializeModules=o}(HTMLImports),HTMLImports.addModule(function(e){var t=/(url\()([…
|
D | CustomElements.min.js | 11 …addModule=n,e.initializeModules=r,e.hasNative=Boolean(document.registerElement),e.useNative=!t.reg…
|
/external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/ |
D | HTMLImports.js | 183 var addModule = function(module) { function 191 scope.addModule = addModule; 195 HTMLImports.addModule(function(scope) { 222 HTMLImports.addModule(function(scope) { 254 HTMLImports.addModule(function(scope) { 347 HTMLImports.addModule(function(scope) { 380 HTMLImports.addModule(function(scope) { 609 HTMLImports.addModule(function(scope) { 708 HTMLImports.addModule(function(scope) {
|
D | CustomElements.js | 54 var addModule = function(module) { function 62 scope.addModule = addModule; 68 CustomElements.addModule(function(scope) { 126 CustomElements.addModule(function(scope) { 322 CustomElements.addModule(function(scope) { 382 CustomElements.addModule(function(scope) {
|
D | HTMLImports.min.js | 11 …addModule=n,e.initializeModules=r}(HTMLImports),HTMLImports.addModule(function(e){var t=/(url\()([…
|
D | webcomponents-lite.js | 525 var addModule = function(module) { function 533 scope.addModule = addModule; 537 HTMLImports.addModule(function(scope) { 564 HTMLImports.addModule(function(scope) { 596 HTMLImports.addModule(function(scope) { 689 HTMLImports.addModule(function(scope) { 722 HTMLImports.addModule(function(scope) { 951 HTMLImports.addModule(function(scope) { 1050 HTMLImports.addModule(function(scope) { 1115 var addModule = function(module) { function [all …]
|
D | webcomponents-lite.min.js | 11 …addModule=n,e.initializeModules=o}(HTMLImports),HTMLImports.addModule(function(e){var t=/(url\()([…
|
D | CustomElements.min.js | 11 …addModule=n,e.initializeModules=r,e.hasNative=Boolean(document.registerElement),e.useNative=!t.reg…
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.h | 98 void addModule(std::unique_ptr<Module> M) { in addModule() function 217 void addModule(std::unique_ptr<Module> M) override;
|
D | MCJIT.cpp | 88 OwnedModules.addModule(std::move(First)); in MCJIT() 104 void MCJIT::addModule(std::unique_ptr<Module> M) { in addModule() function in MCJIT 106 OwnedModules.addModule(std::move(M)); in addModule()
|
/external/llvm/include/llvm/IR/ |
D | LLVMContext.h | 207 void addModule(Module*);
|
/external/llvm/examples/Kaleidoscope/include/ |
D | KaleidoscopeJIT.h | 43 ModuleHandleT addModule(std::unique_ptr<Module> M) { in addModule() function
|
/external/llvm/include/llvm/LTO/ |
D | LTOCodeGenerator.h | 69 bool addModule(struct LTOModule *);
|
/external/llvm/tools/lli/ |
D | OrcLazyJIT.cpp | 172 auto MainHandle = J.addModule(std::move(M)); in runOrcLazyJIT()
|
D | OrcLazyJIT.h | 68 ModuleHandleT addModule(std::unique_ptr<Module> M) { in addModule() function
|
D | lli.cpp | 364 EE->addModule(std::move(M)); in addCygMingExtraModule() 500 EE->addModule(std::move(XMod)); in main()
|
/external/clang/include/clang/Serialization/ |
D | ModuleManager.h | 214 AddModuleResult addModule(StringRef FileName, ModuleKind Type,
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 554 TheJIT->addModule(std::move(TheModule)); in HandleDefinition() 583 auto H = TheJIT->addModule(std::move(TheModule)); in HandleTopLevelExpression()
|
/external/llvm/lib/IR/ |
D | LLVMContext.cpp | 143 void LLVMContext::addModule(Module *M) { in addModule() function in LLVMContext
|