| /external/clang/lib/Lex/ |
| PPLexerChange.cpp | 385 // If we are building a module that has an umbrella header, make sure that 388 if (Module *Mod = getCurrentModule()) { 427 // mentioned at all in the module map. Such headers 445 // If it's not part of a module and not unknown, complain.
|
| PreprocessingRecord.cpp | 441 const Module *Imported) {
|
| /external/llvm/include/llvm/Analysis/ |
| DependenceAnalysis.h | [all...] |
| LoopInfo.h | 634 virtual void print(raw_ostream &O, const Module* M = 0) const;
|
| /external/llvm/lib/ExecutionEngine/ |
| ExecutionEngineBindings.cpp | 20 #include "llvm/IR/Module.h" 214 /* The module provider is now actually a module. */ 223 /* The module provider is now actually a module. */ 233 /* The module provider is now actually a module. */ 288 /* The module provider is now actually a module. */ 294 Module *Mod = unwrap(M) [all...] |
| /external/llvm/lib/IR/ |
| AutoUpgrade.cpp | 21 #include "llvm/IR/Module.h" 196 Module *M = F->getParent(); 388 // Remove old function, no longer used, from the module.
|
| /external/llvm/tools/lli/ |
| lli.cpp | 30 #include "llvm/IR/Module.h" 96 TargetTriple("mtriple", cl::desc("Override target triple for module")); 313 Module *Mod = ParseIRFile(InputFile, Err, Context); 434 // Add the module's name to the start of the vector of arguments to main(). 444 errs() << '\'' << EntryFunc << "\' function not found in module.\n"; 471 for (Module::iterator I = Mod->begin(), E = Mod->end(); I != E; ++I) {
|
| /external/llvm/unittests/Analysis/ |
| ScalarEvolutionTest.cpp | 16 #include "llvm/IR/Module.h" 34 Module M;
|
| /frameworks/compile/libbcc/bcinfo/ |
| MetadataExtractor.cpp | 31 #include "llvm/IR/Module.h" 78 MetadataExtractor::MetadataExtractor(const llvm::Module *module) 79 : mModule(module), mBitcode(NULL), mBitcodeSize(0), mExportVarCount(0), 408 ALOGE("Invalid/empty bitcode/module"); 421 // Module ownership is handled by the context, so we don't need to free it.
|
| /build/core/ |
| main.mk | 233 # EMMA_INSTRUMENT_STATIC merges the static emma library to each emma-enabled module. 394 # Define a function that, given a list of module tags, returns 395 # non-empty if that module should be installed in /system. 405 # installed in /data even if that module also has "eng"/"debug"/"user". 449 # Before we go and include all of the module makefiles, stash away 520 # All module makefiles have been included at this point. 526 # just bare module names. Leave unknown modules alone in case 531 $(call module-installed-files,$(known_custom_modules)) \ 536 # This can only happen now, after we've read in all module makefiles. 538 # TODO: deal with the fact that a bare module name isn' [all...] |
| /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/pnacl-demo/ |
| example.js | 57 * @param {Object} attrs Dictionary of attributes to set on the module. 79 // to ensure that the listeners are active before the NaCl module 'load' 99 * Called when the Browser can not communicate with the Module 114 * Called when the NaCl module is loaded. 179 * Send the current value of the element threadCount to the NaCl module. 189 // Add event listeners after the NaCl module has loaded. These listeners will 190 // forward messages to the NaCl module via postMessage() 207 // Load a texture and send pixel data down to NaCl module. 218 // Send NaCl module the raw image data obtained from canvas. 232 // Handle a message coming from the NaCl module [all...] |
| /external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
| pnacl_coordinator.cc | 138 pp::Module *module = pp::Module::Get(); local 139 DCHECK(module); 141 module->GetBrowserInterface(PPB_UMA_PRIVATE_INTERFACE)); [all...] |
| /external/chromium_org/remoting/webapp/ |
| log_to_server.js | 7 * Module for sending log entries to the server.
|
| /external/llvm/examples/Kaleidoscope/Chapter7/ |
| toy.cpp | 9 #include "llvm/IR/Module.h" 606 static Module *TheModule; 692 // Look up the name in the global module table. 1099 // Make the module, which holds all the code. 1100 TheModule = new Module("my cool jit", Context); 1102 // Create the JIT. This takes ownership of the module. [all...] |
| /external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
| toy-jit.cpp | 11 #include "llvm/IR/Module.h" 609 static Module *TheModule; 699 // Look up the name in the global module table. 1118 // Make the module, which holds all the code. 1119 TheModule = new Module("my cool jit", Context); 1121 // Create the JIT. This takes ownership of the module. [all...] |
| /external/llvm/lib/Analysis/IPA/ |
| InlineCost.cpp | 111 void visit(Module *); void visit(Module &); [all...] |
| /external/llvm/lib/Transforms/Scalar/ |
| LoopIdiomRecognize.cpp | 56 #include "llvm/IR/Module.h" 619 Module *M = (*(CurLoop->block_begin()))->getParent()->getParent(); [all...] |
| /prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
| Python-ast.h | 45 } Module; 163 identifier module; member in struct:_stmt::__anon62174::__anon62191 375 #define Module(a0, a1) _Py_Module(a0, a1) 433 stmt_ty _Py_ImportFrom(identifier module, asdl_seq * names, int level, int
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| modulefinder.py | 2 # This module should be kept compatible with Python 2.2, see PEP 291. 51 class Module: 58 # The set of global names that are assigned to in the module. 62 # The set of starimports this module did that could not be 63 # resolved, ie. a starimport from a non-Python module. 67 s = "Module(%r" % (self.__name__,) 193 self.msgout(4, "raise ImportError: No module named", qname) 194 raise ImportError, "No module named " + qname 206 self.msgout(4, "raise ImportError: No module named", mname) 207 raise ImportError, "No module named " + mnam [all...] |
| /prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
| Python-ast.h | 45 } Module; 163 identifier module; member in struct:_stmt::__anon62297::__anon62314 375 #define Module(a0, a1) _Py_Module(a0, a1) 433 stmt_ty _Py_ImportFrom(identifier module, asdl_seq * names, int level, int
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| modulefinder.py | 2 # This module should be kept compatible with Python 2.2, see PEP 291. 51 class Module: 58 # The set of global names that are assigned to in the module. 62 # The set of starimports this module did that could not be 63 # resolved, ie. a starimport from a non-Python module. 67 s = "Module(%r" % (self.__name__,) 193 self.msgout(4, "raise ImportError: No module named", qname) 194 raise ImportError, "No module named " + qname 206 self.msgout(4, "raise ImportError: No module named", mname) 207 raise ImportError, "No module named " + mnam [all...] |
| /external/llvm/lib/Transforms/Instrumentation/ |
| MemorySanitizer.cpp | 41 /// Every module initializer should call __msan_init to ensure that the 86 #include "llvm/IR/Module.h" 165 /// MemorySanitizer: instrument the code in module to find 179 bool doInitialization(Module &M); 183 void initializeCallbacks(Module &M); 259 static GlobalVariable *createPrivateNonConstGlobalForString(Module &M, 268 void MemorySanitizer::initializeCallbacks(Module &M) { 334 /// \brief Module-level initialization. 336 /// inserts a call to __msan_init to the module's constructor list. 337 bool MemorySanitizer::doInitialization(Module &M) [all...] |
| /external/clang/tools/libclang/ |
| CIndex.cpp | [all...] |
| /external/llvm/lib/Target/ARM/ |
| ARMAsmPrinter.cpp | 35 #include "llvm/IR/Module.h" 589 void ARMAsmPrinter::EmitStartOfAsmFile(Module &M) { 609 for (Module::iterator F = M.begin(), e = M.end(); F != e; ++F) 651 void ARMAsmPrinter::EmitEndOfAsmFile(Module &M) { [all...] |
| /external/chromium_org/ppapi/tests/ |
| test_websocket.cc | 27 #include "ppapi/cpp/module.h" 191 pp::Module::Get()->GetBrowserInterface(PPB_WEBSOCKET_INTERFACE)); 193 pp::Module::Get()->GetBrowserInterface(PPB_VAR_INTERFACE)); 195 pp::Module::Get()->GetBrowserInterface( 198 pp::Module::Get()->GetBrowserInterface(PPB_CORE_INTERFACE)); [all...] |