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

<<21222324252627282930>>

  /external/llvm/lib/IR/
AsmWriter.cpp 33 #include "llvm/IR/Module.h"
55 static const Module *getModuleFromVal(const Value *V) {
164 void TypePrinting::incorporateTypes(const Module &M) {
305 /// TheModule - The module for which we are holding slot numbers.
306 const Module* TheModule;
312 /// mMap - The slot map for the module level data.
328 /// Construct from a module
329 explicit SlotTracker(const Module *M);
340 /// If you'd like to deal with a function instead of just a module, use
349 /// will reset the state of the machine back to just the module contents
    [all...]
  /external/v8/src/
ast.h 126 class Module;
530 Module* module() const { return module_; } function in class:v8::internal::ModuleDeclaration
539 Module* module,
542 module_(module) {
546 Module* module_;
554 Module* module() const { return module_; } function in class:v8::internal::ImportDeclaration
563 Module* module
644 Module* module() const { return module_; } function in class:v8::internal::ModulePath
2684 ModuleLiteral* module = new(zone_) ModuleLiteral(body, interface); local
2689 ModuleVariable* module = new(zone_) ModuleVariable(proxy); local
2694 ModulePath* module = new(zone_) ModulePath(origin, name); local
2699 ModuleUrl* module = new(zone_) ModuleUrl(url); local
    [all...]
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
plugin.cc 51 #include "ppapi/cpp/module.h"
119 pp::Module *module = pp::Module::Get(); local
120 CHECK(module);
122 module->GetBrowserInterface(PPB_NACL_PRIVATE_INTERFACE));
126 pp::Module *module = pp::Module::Get(); local
127 CHECK(module);
1688 pp::Module* module = pp::Module::Get(); local
    [all...]
pnacl_resources.cc 148 pp::Core* core = pp::Module::Get()->core();
235 pp::Core* core = pp::Module::Get()->core();
  /art/compiler/llvm/
compiler_llvm.cc 106 ::llvm::Module* makeLLVMModuleContents(::llvm::Module* module);
  /external/chromium_org/ppapi/tests/
test_case.cc 12 #include "ppapi/cpp/module.h"
202 return pp::Module::Get()->core()->GetTimeTicks();
247 pp::Module::Get()->core()->CallOnMainThread(0, callback);
test_url_request.cc 33 // 00 - module, 01 - instance, 10 - resource, 11 - var.
50 pp::Module::Get()->GetBrowserInterface(PPB_URLREQUESTINFO_INTERFACE));
52 pp::Module::Get()->GetBrowserInterface(PPB_URLLOADER_INTERFACE));
54 pp::Module::Get()->GetBrowserInterface(PPB_URLRESPONSEINFO_INTERFACE));
56 pp::Module::Get()->GetBrowserInterface(PPB_CORE_INTERFACE));
58 pp::Module::Get()->GetBrowserInterface(PPB_VAR_INTERFACE));
  /external/chromium_org/remoting/webapp/
connection_stats.js 7 * Module to support debug overlay window with connection stats.
  /external/clang/lib/Frontend/
DependencyFile.cpp 67 const Module *Imported);
141 const Module *Imported) {
  /external/llvm/include/llvm/IR/
DataLayout.h 93 /// string in a module and provides methods for querying it. The target data
97 /// specified in the module.
171 /// Initialize target data from properties stored in the module.
172 explicit DataLayout(const Module *M);
188 bool doFinalization(Module &M);
  /external/llvm/lib/Analysis/
CostModel.cpp 52 virtual void print(raw_ostream &OS, const Module*) const;
231 void CostModelAnalysis::print(raw_ostream &OS, const Module*) const {
MemDepPrinter.cpp 50 void print(raw_ostream &OS, const Module * = 0) const;
160 void MemDepPrinter::print(raw_ostream &OS, const Module *M) const {
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 97 explicit Interpreter(Module *M);
111 static ExecutionEngine *create(Module *M, std::string *ErrorStr = 0);
  /external/llvm/lib/Target/R600/
R600TextureIntrinsicsReplacer.cpp 30 Module *Mod;
213 virtual bool doInitialization(Module &M) {
  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.cpp 22 #include "llvm/IR/Module.h"
32 Module &M = *MainFn->getParent();
132 void llvm::InsertProfilingShutdownCall(Function *Callee, Module *Mod) {
  /external/llvm/lib/Transforms/Utils/
SpecialCaseList.cpp 26 #include "llvm/IR/Module.h"
188 bool SpecialCaseList::findCategory(const Module &M, StringRef &Category) const {
192 bool SpecialCaseList::isIn(const Module &M, const StringRef Category) const {
  /external/llvm/unittests/ExecutionEngine/JIT/
JITEventListenerTestCommon.h 21 #include "llvm/IR/Module.h"
60 llvm::Module* M;
68 , M(new llvm::Module("module", llvm::getGlobalContext()))
  /external/llvm/unittests/IR/
DominatorTreeTest.cpp 14 #include "llvm/IR/Module.h"
163 Module* makeLLVMModule(DPass *P) {
194 OwningPtr<Module> M(makeLLVMModule(P));
IRBuilderTest.cpp 18 #include "llvm/IR/Module.h"
28 M.reset(new Module("MyModule", getGlobalContext()));
42 OwningPtr<Module> M;
  /external/llvm/unittests/Transforms/DebugIR/
DebugIR.cpp 19 #include "llvm/IR/Module.h"
49 void insertCUDescriptor(Module *M, StringRef File, StringRef Dir,
93 OwningPtr<Module> M;
97 // Test empty named Module that is not supposed to be output to disk.
113 // Test a non-empty unnamed module that is output to an autogenerated file name.
126 // Test not specifying a name in the module -- DebugIR should generate a name
141 // Test empty named Module that is to be output to path specified at Module
153 // verify DebugIR was able to correctly parse the file name from module ID
160 // Test an empty unnamed module generates an output file whose path is specifie
    [all...]
  /frameworks/compile/libbcc/lib/Core/
Compiler.cpp 21 #include <llvm/IR/Module.h>
56 return "Failed to materialize the module.";
156 // Prepare DataLayout target data from Module
204 // Prepare DataLayout target data from Module
249 llvm::Module &module = pScript.getSource().getModule(); local
256 // Materialize the bitcode module.
257 if (module.getMaterializer() != NULL) {
259 // A module with non-null materializer means that it is a lazy-load module
274 *IRStream << module; local
    [all...]
  /frameworks/compile/mclinker/lib/Object/
ObjectBuilder.cpp 11 #include <mcld/Module.h>
31 ObjectBuilder::ObjectBuilder(const LinkerConfig& pConfig, Module& pTheModule)
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonLDBackend.cpp 114 void HexagonLDBackend::doPostLayout(Module& pModule, IRBuilder& pBuilder)
423 void HexagonLDBackend::initTargetSections(Module& pModule,
495 void HexagonLDBackend::initTargetSymbols(IRBuilder& pBuilder, Module& pModule)
567 bool HexagonLDBackend::doRelax(Module& pModule, IRBuilder& pBuilder,
574 Module::obj_iterator input, inEnd = pModule.obj_end();
687 bool HexagonLDBackend::mergeSection(Module& pModule, LDSection& pInputSection)
741 bool HexagonLDBackend::allocateCommonSymbols(Module& pModule)
    [all...]
  /external/chromium_org/ppapi/examples/video_capture/
video_capture.cc 22 #include "ppapi/cpp/module.h"
45 class VCDemoModule : public pp::Module {
47 VCDemoModule() : pp::Module() {}
57 VCDemoInstance(PP_Instance instance, pp::Module* module);
160 VCDemoInstance::VCDemoInstance(PP_Instance instance, pp::Module* module)
173 module->GetBrowserInterface(PPB_OPENGLES2_INTERFACE));
500 // Factory function for your specialization of the Module object.
501 Module* CreateModule()
    [all...]
  /external/chromium_org/ppapi/examples/video_decode/
video_decode.cc 22 #include "ppapi/cpp/module.h"
60 VideoDecodeDemoInstance(PP_Instance instance, pp::Module* module);
221 pp::Module* module)
230 module->GetBrowserInterface(PPB_CONSOLE_INTERFACE))));
232 module->GetBrowserInterface(PPB_CORE_INTERFACE))));
234 module->GetBrowserInterface(PPB_OPENGLES2_INTERFACE))));
469 class VideoDecodeDemoModule : public pp::Module {
471 VideoDecodeDemoModule() : pp::Module() {}
    [all...]

Completed in 1827 milliseconds

<<21222324252627282930>>