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

1 2 34 5 6 7 8 91011>>

  /external/llvm/lib/Transforms/Utils/
CloneModule.cpp 1 //===- CloneModule.cpp - Clone an entire module ---------------------------===//
11 // entire module.
18 #include "llvm/IR/Module.h"
22 /// CloneModule - Return an exact copy of the specified module. This is not as
27 Module *llvm::CloneModule(const Module *M) {
28 // Create the value map that maps things from the old module over to the new
29 // module.
34 Module *llvm::CloneModule(const Module *M, ValueToValueMapTy &VMap)
    [all...]
  /development/tools/idegen/src/com/android/idegen/
AggregatedModule.java 33 * Module while is a composition of many other modules.
37 public class AggregatedModule extends Module {
42 private Set<Module> modules;
45 public AggregatedModule(String aggregatedName, Set<Module> modules) {
65 for (Module module : modules) {
66 if (module.isAndroidModule()) {
76 for (Module module : modules) {
77 Iterables.addAll(result, module.getIntermediatesDirs())
    [all...]
  /external/chromium_org/ppapi/cpp/
resource.cc 10 #include "ppapi/cpp/module.h"
19 Module::Get()->core()->AddRefResource(pp_resource_);
24 Module::Get()->core()->ReleaseResource(pp_resource_);
29 Module::Get()->core()->AddRefResource(other.pp_resource_);
31 Module::Get()->core()->ReleaseResource(pp_resource_);
44 Module::Get()->core()->AddRefResource(pp_resource_);
core.h 16 class Module;
56 /// module (for example, using the
72 /// callback. Many applications won't need this, but it allows a module to
80 /// <strong>Note:</strong> If the browser is shutting down or if the module
104 // Allow Module to construct.
105 friend class Module;
107 // Only module should make this class so this constructor is private.
  /external/clang/include/clang/CodeGen/
CodeGenAction.h 18 class Module;
27 OwningPtr<llvm::Module> TheModule;
28 llvm::Module *LinkModule;
50 /// setLinkModule - Set the link module to be used by this action. If a link
51 /// module is not provided, and CodeGenOptions::LinkBitcodeFile is non-empty,
53 void setLinkModule(llvm::Module *Mod) { LinkModule = Mod; }
55 /// takeModule - Take the generated LLVM module, for use after the action has
57 llvm::Module *takeModule();
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 24 // like only having one module, not needing to worry about multi-threading,
28 MCJIT(Module *M, TargetMachine *tm, RTDyldMemoryManager *MemMgr,
39 Module *M;
55 /// finalizeObject - ensure the module is fully processed and is usable.
106 static ExecutionEngine *createJIT(Module *M,
115 /// emitObject -- Generate a JITed object in memory from the specified module
116 /// Currently, MCJIT only supports a single module and the module passed to
117 /// this function call is expected to be the contained module. The module
    [all...]
  /external/llvm/unittests/Bitcode/
BitReaderTest.cpp 17 #include "llvm/IR/Module.h"
25 static Module *makeLLVMModule() {
26 Module* Mod = new Module("test-mem", getGlobalContext());
48 OwningPtr<Module> Mod(makeLLVMModule());
58 OwningPtr<Module> m(getLazyBitcodeModule(Buffer, getGlobalContext(), &errMsg));
  /frameworks/compile/slang/
slang_rs_backend.h 67 void dumpExportVarInfo(llvm::Module *M);
68 void dumpExportFunctionInfo(llvm::Module *M);
69 void dumpExportForEachInfo(llvm::Module *M);
70 void dumpExportTypeInfo(llvm::Module *M);
81 virtual void HandleTranslationUnitPost(llvm::Module *M);
  /external/clang/lib/Basic/
Module.cpp 1 //===--- Module.cpp - Describe a module -----------------------------------===//
10 // This file defines the Module class, which describes a module in the source
14 #include "clang/Basic/Module.h"
25 Module::Module(StringRef Name, SourceLocation DefinitionLoc, Module *Parent,
45 Module::~Module() {
    [all...]
  /external/chromium_org/ppapi/examples/printing/
printing.cc 11 #include "ppapi/cpp/module.h"
84 class MyModule : public pp::Module {
86 MyModule() : pp::Module() {}
97 // Factory function for your specialization of the Module object.
98 Module* CreateModule() {
  /external/chromium_org/ppapi/examples/scripting/
post_message.cc 8 #include "ppapi/cpp/module.h"
44 class MyModule : public pp::Module {
46 MyModule() : pp::Module() {}
57 // Factory function for your specialization of the Module object.
58 Module* CreateModule() {
  /external/chromium_org/ppapi/examples/threading/
threading.cc 8 #include "ppapi/cpp/module.h"
43 class MyModule : public pp::Module {
45 MyModule() : pp::Module() {}
55 // Factory function for your specialization of the Module object.
56 Module* CreateModule() {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
loader.cpp 8 #include <llvm/Module.h>
26 std::auto_ptr<Module> M;
32 Module * mod = M.get();
  /external/llvm/include/llvm/Transforms/Utils/
SpecialCaseList.h 54 class Module;
73 /// Returns whether this module is listed in the given category, which may be
75 bool isIn(const Module &M, const StringRef Category = StringRef()) const;
87 /// Returns whether this module is listed in any category. Category will
88 /// contain the name of an arbitrary category in which this module is listed.
89 bool findCategory(const Module &M, StringRef &Category) const;
  /external/mesa3d/src/gallium/drivers/radeon/
loader.cpp 8 #include <llvm/Module.h>
26 std::auto_ptr<Module> M;
32 Module * mod = M.get();
  /frameworks/compile/mclinker/include/mcld/Fragment/
FragmentLinker.h 30 class Module;
42 Module& pModule,
71 Module& m_Module;
  /frameworks/compile/mclinker/include/mcld/LD/
GNUArchiveReader.h 20 class Module;
32 GNUArchiveReader(Module& pModule, ELFObjectReader& pELFObjectReader);
90 Module& m_Module;
  /frameworks/compile/mclinker/include/mcld/
Linker.h 19 class Module;
45 /// normalize - To normalize the command line language into mcld::Module.
46 bool normalize(Module& pModule, IRBuilder& pBuilder);
48 /// resolve - To build up the topology of mcld::Module.
51 /// layout - To serialize the final result of the output mcld::Module.
54 /// link - A convenient way to resolve and to layout the output mcld::Module.
55 bool link(Module& pModule, IRBuilder& pBuilder);
57 /// emit - To emit output mcld::Module to a output MemoryArea
60 /// emit - To open a file for output in pPath and to emit output mcld::Module
64 /// emit - To emit output mcld::Module in the pFileDescriptor
    [all...]
  /frameworks/compile/mclinker/include/mcld/Object/
ObjectBuilder.h 24 class Module;
32 * \brief ObjectBuilder recieve ObjectAction and build the mcld::Module.
38 Module& pTheModule);
43 /// CreateSection - To create an output LDSection in mcld::Module.
48 /// @ref mcld::Module.
62 /// MergeSection - merge the pInput section to mcld::Module.
64 /// output section of mcld::Module.
97 Module& m_Module;
  /external/llvm/lib/IRReader/
IRReader.cpp 29 Module *llvm::getLazyIRModule(MemoryBuffer *Buffer, SMDiagnostic &Err,
34 Module *M = getLazyBitcodeModule(Buffer, Context, &ErrMsg);
48 Module *llvm::getLazyIRFileModule(const std::string &Filename, SMDiagnostic &Err,
60 Module *llvm::ParseIR(MemoryBuffer *Buffer, SMDiagnostic &Err,
67 Module *M = ParseBitcodeFile(Buffer, Context, &ErrMsg);
79 Module *llvm::ParseIRFile(const std::string &Filename, SMDiagnostic &Err,
  /external/llvm/tools/llvm-diff/
llvm-diff.cpp 1 //===-- llvm-diff.cpp - Module comparator command-line driver ---*- C++ -*-===//
20 #include "llvm/IR/Module.h"
33 /// Reads a module from a file. On error, messages are written to stderr
35 static Module *ReadModule(LLVMContext &Context, StringRef Name) {
37 Module *M = ParseIRFile(Name, Diag, Context);
43 static void diffGlobal(DifferenceEngine &Engine, Module *L, Module *R,
53 errs() << "No function named @" << Name << " in either module\n";
55 errs() << "No function named @" << Name << " in left module\n";
57 errs() << "No function named @" << Name << " in right module\n"
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMLDBackend.h 49 void initTargetSections(Module& pModule, ObjectBuilder& pBuilder);
52 void initTargetSymbols(IRBuilder& pBuilder, Module& pModule);
65 void doPostLayout(Module& pModule, IRBuilder& pBuilder);
116 bool mergeSection(Module& pModule, LDSection& pSection);
135 bool doRelax(Module& pModule, IRBuilder& pBuilder, bool& pFinished);
150 virtual void doCreateProgramHdrs(Module& pModule);
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.h 37 void initTargetSections(Module& pModule, ObjectBuilder& pBuilder);
40 void initTargetSymbols(IRBuilder& pBuilder, Module& pModule);
52 void doPostLayout(Module& pModule, IRBuilder& pBuilder);
83 void orderSymbolTable(Module& pModule);
108 bool allocateCommonSymbols(Module& pModule);
130 void doCreateProgramHdrs(Module& pModule);
  /external/chromium/chrome/browser/
enumerate_modules_model_win.h 24 // A helper class that implements the enumerate module functionality on the File
28 // What type of module we are dealing with. Loaded modules are modules we
38 // The blacklist status of the module. Suspected Bad modules have been
44 // blacklist and the module does not match the current entry in the
47 // The module is not on the blacklist. Assume it is good.
49 // Module is a suspected bad module.
51 // Module is a bad bad dog.
66 struct Module {
67 // The type of module foun
    [all...]
  /external/chromium_org/chrome/browser/
enumerate_modules_model_win.h 26 // A helper class that implements the enumerate module functionality on the File
30 // What type of module we are dealing with. Loaded modules are modules we
40 // The blacklist status of the module. Suspected Bad modules have been
46 // blacklist and the module does not match the current entry in the
49 // The module is not on the blacklist. Assume it is good.
51 // Module is a suspected bad module.
53 // Module is a bad bad dog.
75 struct Module {
76 // The type of module foun
    [all...]

Completed in 1690 milliseconds

1 2 34 5 6 7 8 91011>>