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

<<11121314151617181920>>

  /frameworks/compile/libbcc/include/bcc/Renderscript/
RSInfo.h 31 class Module;
43 typedef llvm::Module* (*RSLinkRuntimeCallback) (bcc::RSScript *, llvm::Module *, llvm::Module *);
RSScript.h 25 class Module;
  /frameworks/compile/mclinker/include/mcld/LD/
ELFObjectReader.h 20 class Module;
ObjectReader.h 22 class Module;
ELFReaderIf.h 19 #include <mcld/Module.h>
27 class Module;
  /frameworks/compile/mclinker/lib/LD/
GroupReader.cpp 21 GroupReader::GroupReader(Module& pModule,
38 bool GroupReader::readGroup(Module::input_iterator pRoot,
51 Module::input_iterator input = --pRoot;
55 Module::input_iterator input_end = m_Module.input_end();
  /frameworks/compile/mclinker/unittests/
ELFReaderTest.h 50 mcld::Module* m_pModule;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_transformer.py 20 self.assertIsInstance(a, ast.Module)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_transformer.py 20 self.assertIsInstance(a, ast.Module)
  /frameworks/compile/mclinker/lib/Fragment/
FragmentGraph.cpp 19 #include <mcld/Module.h>
135 bool FragmentGraph::setNodeSlots(Module& pModule)
142 Module::SymbolTable& sym_tab = pModule.getSymbolTable();
167 bool FragmentGraph::createRegularEdges(Module& pModule)
173 Module::obj_iterator input, inEnd = pModule.obj_end();
221 bool FragmentGraph::createPseudoEdges(Module& pModule)
265 bool FragmentGraph::createPseudoNodes(Module& pModule)
271 Module::SymbolTable& sym_tab = pModule.getSymbolTable();
295 bool FragmentGraph::createRegularNodes(Module& pModule)
299 Module::iterator sect_it, sect_end = pModule.end()
    [all...]
  /art/compiler/llvm/
intrinsic_helper.h 28 class Module;
126 IntrinsicHelper(::llvm::LLVMContext& context, ::llvm::Module& module);
ir_builder.cc 21 #include <llvm/IR/Module.h>
31 IRBuilder::IRBuilder(::llvm::LLVMContext& context, ::llvm::Module& module,
33 : LLVMIRBuilder(context), module_(&module), mdb_(context), java_object_type_(NULL),
35 // Get java object type from module
36 ::llvm::Type* jobject_struct_type = module.getTypeByName("JavaObject");
40 // If type of Method is not explicitly defined in the module, use JavaObject*
41 ::llvm::Type* type = module.getTypeByName("Method");
48 // If type of Thread is not explicitly defined in the module, use JavaObject*
49 type = module.getTypeByName("Thread")
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/api/input_event/
example.js 5 // Called by the common.js module.
10 // Called by the common.js module.
15 // Called by the common.js module.
22 console.log('Module is not loaded.');
  /external/chromium_org/ppapi/tests/
test_video_destination.cc 41 pp::Module::Get()->GetBrowserInterface(
48 pp::Module::Get()->GetBrowserInterface(PPB_CORE_INTERFACE));
  /external/clang/lib/Serialization/
Android.mk 37 Module.cpp \
  /external/llvm/include/llvm/Analysis/
Trace.h 27 class Module;
55 /// getModule - Return this Module that contains this trace's parent
58 Module *getModule () const;
  /external/llvm/lib/Target/ARM/
ARMAsmPrinter.h 76 virtual void EmitStartOfAsmFile(Module &M) LLVM_OVERRIDE;
77 virtual void EmitEndOfAsmFile(Module &M) LLVM_OVERRIDE;
  /external/llvm/lib/Target/Mips/
MipsOs16.cpp 16 #include "llvm/IR/Module.h"
87 bool MipsOs16::runOnModule(Module &M) {
88 DEBUG(errs() << "Run on Module MipsOs16\n");
90 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
  /external/llvm/tools/llvm-as/
llvm-as.cpp 22 #include "llvm/IR/Module.h"
53 static void WriteOutputFile(const Module *M) {
96 OwningPtr<Module> M(ParseAssemblyFile(InputFilename, Err, Context));
  /external/llvm/unittests/IR/
VerifierTest.cpp 19 #include "llvm/IR/Module.h"
49 Module M("M", C);
66 Module M("M", C);
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp 18 #include <mcld/Module.h>
55 void MipsGNULDBackend::initTargetSections(Module& pModule, ObjectBuilder& pBuilder)
70 void MipsGNULDBackend::initTargetSymbols(IRBuilder& pBuilder, Module& pModule)
142 void MipsGNULDBackend::doPostLayout(Module& pModule, IRBuilder& pBuilder)
204 void MipsGNULDBackend::orderSymbolTable(Module& pModule)
215 Module::SymbolTable& symbols = pModule.getSymbolTable();
269 bool MipsGNULDBackend::allocateCommonSymbols(Module& pModule)
399 void MipsGNULDBackend::doCreateProgramHdrs(Module& pModule)
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriterPass.cpp 17 #include "llvm/IR/Module.h"
33 bool runOnModule(Module &M) {
35 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
96 /// createBitcodeWriterPass - Create and return a pass that writes the module
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriterPass.cpp 17 #include "llvm/IR/Module.h"
33 bool runOnModule(Module &M) {
35 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
96 /// createBitcodeWriterPass - Create and return a pass that writes the module
  /frameworks/compile/slang/
slang_rs.h 151 virtual void makeModuleVisible(clang::Module *Mod,
152 clang::Module::NameVisibilityKind Visibility,
  /external/llvm/include/llvm/
PassManagers.h 95 class Module;
109 ON_MODULE_MSG, // "' on Module '" + ModuleName + "'...\n"
120 Module *M;
126 PassManagerPrettyStackEntry(Pass *p, Module &m)
415 /// whether any of the passes modifies the module, and if so, return true.
417 bool runOnModule(Module &M);
429 bool doInitialization(Module &M);
438 bool doFinalization(Module &M);

Completed in 571 milliseconds

<<11121314151617181920>>