HomeSort by relevance Sort by last modified time
    Searched full:addmodule (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITMultipleModuleTest.cpp 35 TheJIT->addModule(createEmptyModule("<other module>"));
36 TheJIT->addModule(createEmptyModule("<other other module>"));
78 TheJIT->addModule(createEmptyModule("<other module>"));
79 TheJIT->addModule(createEmptyModule("<other other module>"));
98 TheJIT->addModule(B.release());
118 TheJIT->addModule(B.release());
139 TheJIT->addModule(B.release());
160 TheJIT->addModule(B.release());
181 TheJIT->addModule(B.release());
217 TheJIT->addModule(B.release())
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/config/
config.c.in 25 /* -- ADDMODULE MARKER 1 -- */
35 /* -- ADDMODULE MARKER 2 -- */
config.c 36 /* -- ADDMODULE MARKER 1 -- */
56 /* -- ADDMODULE MARKER 2 -- */
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/config/
config.c.in 25 /* -- ADDMODULE MARKER 1 -- */
35 /* -- ADDMODULE MARKER 2 -- */
config.c 37 /* -- ADDMODULE MARKER 1 -- */
58 /* -- ADDMODULE MARKER 2 -- */
  /external/chromium_org/tools/python/google/httpd_config/
httpd.conf 245 #AddModule mod_vhost_alias.c
246 #AddModule mod_env.c
247 AddModule mod_log_config.c
248 #AddModule mod_mime_magic.c
249 AddModule mod_mime.c
250 AddModule mod_negotiation.c
251 #AddModule mod_status.c
252 #AddModule mod_info.c
253 AddModule mod_include.c
254 AddModule mod_autoindex.
    [all...]
  /external/chromium_org/mojo/spy/
run_ui_tests 22 runner.AddModule(ui)
  /external/chromium_org/content/renderer/pepper/
host_globals.h 62 PP_Module AddModule(PluginModule* module);
65 // The given handle should be one generated by AddModule.
host_globals.cc 198 PP_Module HostGlobals::AddModule(PluginModule* module) {
241 // accidents. See also AddModule below.
  /external/llvm/include/llvm/IR/
LLVMContext.h 164 /// addModule - Register a module as being instantiated in this context. If
166 void addModule(Module*);
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 128 void addModule(Module *M) {
241 void addModule(Module *M) override;
MCJIT.cpp 64 OwnedModules.addModule(m);
77 // If so, additional functions: addModule, removeModule, FindFunctionNamed,
104 void MCJIT::addModule(Module *M) {
106 OwnedModules.addModule(M);
  /external/llvm/include/llvm/LTO/
LTOCodeGenerator.h 67 bool addModule(struct LTOModule*, std::string &errMsg);
  /external/llvm/tools/llvm-lto/
llvm-lto.cpp 121 if (!CodeGen.addModule(Module.get(), error)) {
  /external/lldb/include/lldb/API/
SBTarget.h 468 AddModule (lldb::SBModule &module);
471 AddModule (const char *path,
476 AddModule (const char *path,
482 AddModule (const SBModuleSpec &module_spec);
  /external/lldb/scripts/Python/interface/
SBTarget.i 505 AddModule (lldb::SBModule &module);
508 AddModule (const char *path,
513 AddModule (const char *path,
519 AddModule (const SBModuleSpec &module_spec);
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.h 109 void addModule(Module *M) override;
JIT.cpp 177 /// addModule - Add a new Module to the JIT. If we previously removed the last
179 void JIT::addModule(Module *M) {
201 ExecutionEngine::addModule(M);
  /external/llvm/tools/lto/
lto.cpp 208 return !unwrap(cg)->addModule(unwrap(mod), sLastErrorString);
  /external/lldb/www/
symbolication.html 233 module = target.AddModule ("/usr/lib/system/libsystem_c.dylib", triple, None, "/build/server/a/libsystem_c.dylib.dSYM")
235 module = target.AddModule ("/usr/lib/system/libsystem_dnssd.dylib", triple, None, "/build/server/b/libsystem_dnssd.dylib.dSYM")
237 module = target.AddModule ("/usr/lib/system/libsystem_kernel.dylib", triple, None, "/build/server/c/libsystem_kernel.dylib.dSYM")
  /external/clang/include/clang/Serialization/
ModuleManager.h 189 AddModuleResult addModule(StringRef FileName, ModuleKind Type,
  /external/lldb/www/cpp_reference/html/
classlldb_1_1SBTarget-members.html 39 <tr class="even"><td class="entry"><a class="el" href="classlldb_1_1SBTarget.html#a41ba7de6874cb92f31b35c811682e0ad">AddModule</a>(lldb::SBModule &amp;module)</td><td class="entry"><a class="el" href="classlldb_1_1SBTarget.html">lldb::SBTarget</a></td><td class="entry"></td></tr>
40 <tr><td class="entry"><a class="el" href="classlldb_1_1SBTarget.html#a4a5085284ca6f7f7b459f98634229ede">AddModule</a>(const char *path, const char *triple, const char *uuid)</td><td class="entry"><a class="el" href="classlldb_1_1SBTarget.html">lldb::SBTarget</a></td><td class="entry"></td></tr>
41 <tr class="even"><td class="entry"><a class="el" href="classlldb_1_1SBTarget.html#aea1b561f96e755e4facd5b5788f52b02">AddModule</a>(const char *path, const char *triple, const char *uuid_cstr, const char *symfile)</td><td class="entry"><a class="el" href="classlldb_1_1SBTarget.html">lldb::SBTarget</a></td><td class="entry"></td></tr>
42 <tr><td class="entry"><a class="el" href="classlldb_1_1SBTarget.html#a8635ed991da861bee0820679b11dba7b">AddModule</a>(const SBModuleSpec &amp;module_spec)</td><td class="entry"><a class="el" href="classlldb_1_1SBTarget.html">lldb::SBTarget</a></td><td class="entry"></td></tr>
functions.html 86 <li>AddModule()
functions_func.html 85 <li>AddModule()
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 282 unwrap(EE)->addModule(unwrap(M));

Completed in 1181 milliseconds

1 2 3