HomeSort by relevance Sort by last modified time
    Searched refs:Module (Results 201 - 225 of 826) sorted by null

1 2 3 4 5 6 7 891011>>

  /art/compiler/llvm/
runtime_support_builder_x86.h 27 RuntimeSupportBuilderX86(::llvm::LLVMContext& context, ::llvm::Module& module, IRBuilder& irb)
28 : RuntimeSupportBuilder(context, module, irb) {}
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
context.h 71 #error Module contains CPU-specific code; modify and recompile.
  /external/chromium_org/ppapi/cpp/dev/
selection_dev.cc 9 #include "ppapi/cpp/module.h"
35 Module::Get()->AddPluginInterface(kPPPSelectionInterface, &ppp_selection);
widget_client_dev.cc 13 #include "ppapi/cpp/module.h"
74 Module::Get()->AddPluginInterface(kPPPWidgetInterface, &widget_interface);
76 Module::Get()->AddPluginInterface(kPPPScrollbarInterface,
  /external/chromium_org/ppapi/examples/2d/
scroll.cc 10 #include "ppapi/cpp/module.h"
48 pp::Module::Get()->core()->CallOnMainThread(
68 pp::Module::Get()->core()->CallOnMainThread(
106 class MyModule : public pp::Module {
115 // Factory function for your specialization of the Module object.
116 Module* CreateModule() {
  /external/chromium_org/ppapi/tests/
test_crypto.cc 8 #include "ppapi/cpp/module.h"
20 pp::Module::Get()->GetBrowserInterface(PPB_CRYPTO_DEV_INTERFACE));
test_memory.cc 10 #include "ppapi/cpp/module.h"
23 pp::Module::Get()->GetBrowserInterface(PPB_MEMORY_DEV_INTERFACE));
test_video_decoder.cc 17 pp::Module::Get()->GetBrowserInterface(PPB_VIDEODECODER_DEV_INTERFACE));
testing_instance.cc 14 #include "ppapi/cpp/module.h"
101 pp::Module::Get()->core()->CallOnMainThread(
128 PP_TimeTicks end_time(pp::Module::Get()->core()->GetTimeTicks());
300 class Module : public pp::Module {
302 Module() : pp::Module() {}
303 virtual ~Module() {}
312 Module* CreateModule() {
313 return new ::Module();
    [all...]
test_flash_message_loop.cc 10 #include "ppapi/cpp/module.h"
36 pp::Module::Get()->core()->CallOnMainThread(0, callback);
52 pp::Module::Get()->core()->CallOnMainThread(0, callback);
test_tcp_server_socket_private_disallowed.cc 9 #include "ppapi/cpp/module.h"
32 pp::Module::Get()->GetBrowserInterface(PPB_CORE_INTERFACE));
38 pp::Module::Get()->GetBrowserInterface(
  /external/llvm/include/llvm/CodeGen/
GCMetadataPrinter.h 58 const Module &getModule() const { return S->getModule(); }
64 /// beginAssembly/finishAssembly - Emit module metadata as assembly code.
  /external/llvm/lib/Analysis/
CFGPrinter.cpp 36 void print(raw_ostream &OS, const Module* = 0) const {}
59 void print(raw_ostream &OS, const Module* = 0) const {}
93 void print(raw_ostream &OS, const Module* = 0) const {}
126 void print(raw_ostream &OS, const Module* = 0) const {}
Trace.cpp 29 Module *Trace::getModule() const {
  /external/llvm/lib/CodeGen/
MachinePostDominators.cpp 53 MachinePostDominatorTree::print(llvm::raw_ostream &OS, const Module *M) const {
  /external/llvm/lib/Transforms/Utils/
MetaRenamer.cpp 21 #include "llvm/IR/Module.h"
55 bool runOnModule(Module &M) {
74 for (Module::alias_iterator AI = M.alias_begin(), AE = M.alias_end();
84 for (Module::global_iterator GI = M.global_begin(), GE = M.global_end();
106 for (Module::iterator FI = M.begin(), FE = M.end();
  /external/llvm/tools/llvm-link/
llvm-link.cpp 19 #include "llvm/IR/Module.h"
56 static inline Module *LoadFile(const char *argv0, const std::string &FN,
60 Module* Result = 0;
81 OwningPtr<Module> Composite(LoadFile(argv[0],
91 OwningPtr<Module> M(LoadFile(argv[0], InputFilenames[i], Context));
116 errs() << argv[0] << ": linked module is broken!\n";
  /frameworks/rs/cpu_ref/
rsd_cpu.h 25 class Module;
33 typedef llvm::Module* (*RSLinkRuntimeCallback)
34 (bcc::RSScript *, llvm::Module *, llvm::Module *);
  /development/tools/idegen/src/com/android/idegen/
IntellijProject.java 65 Module module = cache.getAndCache(moduleName); local
66 if (module == null) {
67 logger.info("Module '" + moduleName + "' not found." +
68 " Module names are case senstive.");
71 projectIdeaDir = new File(module.getDir(), ".idea");
76 Set<String> deps = module.getAllDependencies();
82 Iterable<Module> modules = cache.getModules();
83 for (Module mod : modules) {
88 for (Module mod : modules)
208 String module = args[1]; local
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 245 // Set up the module path, including the hash for the
246 // module-creation options.
752 /// \brief Helper function that executes the module-generating action under
777 /// \brief Compile a module file for the given module, using the options
781 Module *Module,
794 // We're responsible for building the module ourselves. Do so below.
798 // Someone else is responsible for building the module. Wait for them to
807 // Construct a compiler invocation for creating this module
    [all...]
FrontendActions.cpp 132 return new PCHGenerator(CI.getPreprocessor(), OutputFile, Module,
160 /// module and update the TopHeaders file set of the module.
162 /// \param Module The module we're collecting includes from.
169 clang::Module *Module,
172 if (!Module->isAvailable())
176 for (unsigned I = 0, N = Module->NormalHeaders.size(); I != N; ++I) {
177 const FileEntry *Header = Module->NormalHeaders[I]
    [all...]
  /external/llvm/lib/Transforms/IPO/
StripSymbols.cpp 1 //===- StripSymbols.cpp - Strip symbols and debug info from a module ------===//
30 #include "llvm/IR/Module.h"
47 virtual bool runOnModule(Module &M);
62 virtual bool runOnModule(Module &M);
77 virtual bool runOnModule(Module &M);
92 virtual bool runOnModule(Module &M);
102 "Strip all symbols from a module", false, false)
110 "Strip all symbols, except dbg symbols, from a module",
178 static void StripTypeNames(Module &M, bool PreserveDbgInfo) {
208 static bool StripSymbolNames(Module &M, bool PreserveDbgInfo)
    [all...]
  /art/compiler/
elf_writer_mclinker.h 32 class Module;
77 UniquePtr<mcld::Module> module_;
  /external/chromium_org/ppapi/cpp/private/
flash.h 23 class Module;
59 static Var GetCommandLineArgs(Module* module);
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
module_ppapi.cc 18 ModulePpapi::ModulePpapi() : pp::Module(),
106 Module* CreateModule() {

Completed in 706 milliseconds

1 2 3 4 5 6 7 891011>>