| /frameworks/compile/slang/ |
| slang.h | 182 clang::Module::NameVisibilityKind VK,
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/ |
| test_result.py | 534 class Module(object): 539 Foo.__module__ = 'Module' 540 sys.modules['Module'] = Module 541 self.addCleanup(sys.modules.pop, 'Module') 553 class Module(object): 558 Foo.__module__ = 'Module' 559 sys.modules['Module'] = Module 560 self.addCleanup(sys.modules.pop, 'Module') [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/ |
| test_result.py | 534 class Module(object): 539 Foo.__module__ = 'Module' 540 sys.modules['Module'] = Module 541 self.addCleanup(sys.modules.pop, 'Module') 553 class Module(object): 558 Foo.__module__ = 'Module' 559 sys.modules['Module'] = Module 560 self.addCleanup(sys.modules.pop, 'Module') [all...] |
| /art/compiler/llvm/ |
| runtime_support_builder.cc | 28 #include <llvm/IR/Module.h> 40 ::llvm::Module& module, 42 : context_(context), module_(module), irb_(irb) {
|
| /external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
| pnacl_translate_thread.cc | 181 pp::Core* core = pp::Module::Get()->core(); 321 pp::Core* core = pp::Module::Get()->core();
|
| /external/clang/include/clang/AST/ |
| ExternalASTSource.h | 28 class Module; 140 /// \brief Retrieve the module that corresponds to the given module ID. 141 virtual Module *getModule(unsigned ID) { return 0; }
|
| /external/llvm/examples/BrainF/ |
| BrainF.cpp | 40 Module *BrainF::parse(std::istream *in1, int mem, CompileFlags cf, 49 return module; 53 module = new Module("BrainF", C); 59 Function *memset_func = Intrinsic::getDeclaration(module, Intrinsic::memset, 63 getchar_func = cast<Function>(module-> 67 putchar_func = cast<Function>(module-> 75 brainf_func = cast<Function>(module-> 141 *module, 149 Function *puts_func = cast<Function>(module- [all...] |
| /external/llvm/examples/Kaleidoscope/Chapter3/ |
| toy.cpp | 5 #include "llvm/IR/Module.h" 348 static Module *TheModule; 383 // Look up the name in the global module table. 553 // Make the module, which holds all the code. 554 TheModule = new Module("my cool jit", Context);
|
| /external/llvm/lib/CodeGen/ |
| StackProtector.cpp | 32 #include "llvm/IR/Module.h" 53 Module *M; 276 static void CreatePrologue(Function *F, Module *M, ReturnInst *RI,
|
| /external/llvm/lib/Target/R600/ |
| SIAnnotateControlFlow.cpp | 20 #include "llvm/IR/Module.h" 92 virtual bool doInitialization(Module &M); 113 bool SIAnnotateControlFlow::doInitialization(Module &M) {
|
| /external/llvm/tools/llc/ |
| llc.cpp | 24 #include "llvm/IR/Module.h" 71 TargetTriple("mtriple", cl::desc("Override target triple for module")); 74 cl::desc("Do not verify input module")); 194 // Compile the module TimeCompilations times to give better compile time 203 // Load the module to be compiled... 205 OwningPtr<Module> M; 206 Module *mod = 0; 212 // If user just wants to list available options, skip module loading 313 // Build up all of the passes that we want to do to the module. 316 // Add an appropriate TargetLibraryInfo pass for the module's triple [all...] |
| /frameworks/compile/libbcc/bcinfo/tools/ |
| main.cpp | 26 #include <llvm/IR/Module.h> 321 llvm::OwningPtr<llvm::Module> module; local 323 module.reset(llvm::ParseBitcodeFile(mem.get(), ctx, &errmsg)); 324 if (module.get() != 0 && module->MaterializeAllPermanently(&errmsg)) { 325 module.reset(); 328 if (module.get() == 0) { 341 module->print(tof->os(), ann.get());
|
| /frameworks/compile/libbcc/lib/Renderscript/ |
| RSInfoExtractor.cpp | 24 #include <llvm/IR/Module.h> 131 const llvm::Module &module = pSource.getModule(); local 132 const char *module_name = module.getModuleIdentifier().c_str(); 135 module.getNamedMetadata(pragma_metadata_name); 137 module.getNamedMetadata(export_var_metadata_name); 139 module.getNamedMetadata(export_func_metadata_name); 141 module.getNamedMetadata(export_foreach_name_metadata_name); 143 module.getNamedMetadata(export_foreach_metadata_name); 145 module.getNamedMetadata(object_slot_metadata_name) [all...] |
| /device/generic/goldfish/opengl/ |
| common.mk | 9 # The following macros are used to start a new GLES emulation module. 21 # $(call emugl-end-module) 23 emugl-begin-static-library = $(call emugl-begin-module,$1,STATIC_LIBRARY) 24 emugl-begin-shared-library = $(call emugl-begin-module,$1,SHARED_LIBRARY) 31 emugl-begin-module = \ 40 $(call _emugl-init-module,$1,$2,$3) 42 # Used to end a module definition, see function definitions above 43 emugl-end-module = \ 47 $(if $(EMUGL_DEBUG),$(call emugl-dump-module)) 49 # Managing module exports and imports [all...] |
| /external/chromium_org/v8/src/ |
| parser.h | 616 Module* ParseModule(bool* ok); 617 Module* ParseModuleLiteral(bool* ok); 618 Module* ParseModulePath(bool* ok); 619 Module* ParseModuleVariable(bool* ok); 620 Module* ParseModuleUrl(bool* ok); 621 Module* ParseModuleSpecifier(bool* ok);
|
| /external/clang/lib/CodeGen/ |
| CodeGenModule.h | 1 //===--- CodeGenModule.h - Per-Module state for LLVM CodeGen ----*- C++ -*-===// 26 #include "clang/Basic/Module.h" 32 #include "llvm/IR/Module.h" 37 class Module; 74 class Module; 235 llvm::Module &TheModule; 275 /// that *are* actually referenced. These get code generated when the module 357 llvm::SetVector<clang::Module *> ImportedModules; 422 llvm::Module &M, const llvm::DataLayout &TD, 508 llvm::Module &getModule() const { return TheModule; [all...] |
| /external/llvm/lib/Transforms/IPO/ |
| GlobalOpt.cpp | 31 #include "llvm/IR/Module.h" 73 bool runOnModule(Module &M); 76 GlobalVariable *FindGlobalCtors(Module &M); 77 bool OptimizeFunctions(Module &M); 78 bool OptimizeGlobalVars(Module &M); 79 bool OptimizeGlobalAliases(Module &M); 81 bool ProcessGlobal(GlobalVariable *GV,Module::global_iterator &GVI); 82 bool ProcessInternalGlobal(GlobalVariable *GV,Module::global_iterator &GVI, 674 Module::GlobalListType &Globals = GV->getParent()->getGlobalList(); [all...] |
| /sdk/emulator/opengl/ |
| common.mk | 9 # The following macros are used to start a new GLES emulation module. 21 # $(call emugl-end-module) 23 emugl-begin-host-static-library = $(call emugl-begin-module,$1,HOST_STATIC_LIBRARY,HOST) 24 emugl-begin-host-shared-library = $(call emugl-begin-module,$1,HOST_SHARED_LIBRARY,HOST) 25 emugl-begin-host-executable = $(call emugl-begin-module,$1,HOST_EXECUTABLE,HOST) 32 emugl-begin-module = \ 42 $(call _emugl-init-module,$1,$2,$3) 44 # Used to end a module definition, see function definitions above 45 emugl-end-module = \ 49 $(if $(EMUGL_DEBUG),$(call emugl-dump-module)) [all...] |
| /external/chromium_org/v8/tools/profviz/ |
| gnuplot-4.6.3-emscripten.js | 51 var Module = { 64 this['Module'] = Module; 65 Module.test; 67 this['Module'] = Module = {}; 69 // The environment setup code below is customized to use Module. 75 if (typeof module === "object") { 76 module.exports = Module; [all...] |
| /external/chromium_org/tools/win/split_link/viz.js/ |
| viz.js | 2 var Module = {}; 3 Module["return"] = ""; 4 Module["print"] = function(text) { 5 Module["return"] += text + "\n"; 10 this['Module'] = Module; 12 this['Module'] = Module = {}; 14 // The environment setup code below is customized to use Module. 23 Module['print'] = function(x) [all...] |
| /external/llvm/lib/Target/NVPTX/ |
| NVPTXAsmPrinter.cpp | 35 #include "llvm/IR/Module.h" 763 void NVPTXAsmPrinter::emitDeclarations(const Module &M, raw_ostream &O) { 765 for (Module::const_iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI) { 806 // appearing in the module before the callee. so print out 817 void NVPTXAsmPrinter::recordAndEmitFilenames(Module &M) { 858 bool NVPTXAsmPrinter::doInitialization(Module &M) { 882 // Emit module-level inline asm if it exists. 900 void NVPTXAsmPrinter::emitGlobals(const Module &M) { 907 // sort the list of module-level globals in def-use order. We visit each 916 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end() [all...] |
| /frameworks/compile/mclinker/lib/Target/Hexagon/ |
| HexagonRelocator.cpp | 102 Module& pModule, 141 Module& pModule, 170 Module& pModule, 281 Module &pModule = pBuilder.getModule(); 282 Module::AliasList* alias_list = pModule.getAliasList(pSym); 284 Module::alias_iterator it, it_e=alias_list->end(); 305 Module& pModule, [all...] |
| /external/llvm/lib/CodeGen/AsmPrinter/ |
| DwarfDebug.cpp | 30 #include "llvm/IR/Module.h" 172 /// Return Dwarf Version by checking module flags. 173 static unsigned getDwarfVersionFromModule(const Module *M) { 180 DwarfDebug::DwarfDebug(AsmPrinter *A, Module *M) 800 DIImportedEntity Module(N); 801 if (!Module.Verify()) 803 if (DIE *D = TheCU->getOrCreateContextDIE(Module.getContext())) 804 constructImportedEntityDIE(TheCU, Module, D); 809 DIImportedEntity Module(N); 810 if (!Module.Verify() [all...] |
| /external/llvm/tools/lto/ |
| LTOModule.cpp | 21 #include "llvm/IR/Module.h" 144 LTOModule::LTOModule(llvm::Module *m, llvm::TargetMachine *t) 259 OwningPtr<Module> m(getLazyBitcodeModule(buffer, getGlobalContext(), 271 // find machine architecture for this module 276 // construct LTOModule, hand over ownership of module and target 527 /// addAsmGlobalSymbol - Add a global symbol from module-level ASM to the 542 // FIXME: This is trying to take care of module ASM like this: 544 // module asm ".zerofill __FOO, __foo, _bar_baz_qux, 0" 571 /// addAsmGlobalSymbolUndef - Add a global symbol from module-level ASM to the 800 /// addAsmGlobalSymbols - Add global symbols from module-level ASM to th [all...] |
| /external/chromium_org/ppapi/tests/ |
| test_truetype_font.cc | 68 pp::Module::Get()->GetBrowserInterface(PPB_TRUETYPEFONT_DEV_INTERFACE)); 73 pp::Module::Get()->GetBrowserInterface(PPB_CORE_INTERFACE)); 78 pp::Module::Get()->GetBrowserInterface(PPB_VAR_INTERFACE));
|