/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
H A D | Mod.java | 19 * $Id: Mod.java 468655 2006-10-28 07:12:06Z minchau $ 30 public class Mod extends Operation class in inherits:Operation
|
/external/llvm/unittests/Bitcode/ |
H A D | BitReaderTest.cpp | 26 Module* Mod = new Module("test-mem", getGlobalContext()); local 29 FunctionType::get(Type::getVoidTy(Mod->getContext()), false); 31 "func", Mod); 33 BasicBlock* Entry = BasicBlock::Create(Mod->getContext(), "entry", Func); 34 new UnreachableInst(Mod->getContext(), Entry); 36 BasicBlock* BB = BasicBlock::Create(Mod->getContext(), "bb", Func); 37 new UnreachableInst(Mod->getContext(), BB); 39 PointerType* Int8Ptr = Type::getInt8PtrTy(Mod->getContext()); 40 new GlobalVariable(*Mod, Int8Ptr, /*isConstant=*/true, 44 return Mod; [all...] |
/external/clang/include/clang/CodeGen/ |
H A D | CodeGenAction.h | 53 void setLinkModule(llvm::Module *Mod) { LinkModule = Mod; } argument
|
/external/clang/examples/clang-interpreter/ |
H A D | main.cpp | 45 static int Execute(llvm::Module *Mod, char * const *envp) { argument 50 llvm::ExecutionEngine::create(Mod, /*ForceInterpreter*/ false, &Error)); 56 llvm::Function *EntryFn = Mod->getFunction("main"); 64 Args.push_back(Mod->getModuleIdentifier());
|
/external/clang/include/clang/Serialization/ |
H A D | ASTDeserializationListener.h | 54 virtual void ModuleRead(serialization::SubmoduleID ID, Module *Mod) { } argument
|
/external/llvm/include/llvm/ADT/ |
H A D | StringExtras.h | 65 unsigned char Mod = static_cast<unsigned char>(X) & 15; local 66 *--BufPtr = hexdigit(Mod);
|
/external/llvm/lib/Object/ |
H A D | IRObjectFile.cpp | 36 std::unique_ptr<Module> Mod) 37 : SymbolicFile(Binary::ID_IR, std::move(Object)), M(std::move(Mod)) { 35 IRObjectFile(std::unique_ptr<MemoryBuffer> Object, std::unique_ptr<Module> Mod) argument
|
/external/llvm/lib/Target/R600/ |
H A D | SITypeRewriter.cpp | 36 Module *Mod; member in class:__anon26130::SITypeRewriter 57 Mod = &M; 137 Function *NewF = Mod->getFunction(Name); 139 NewF = Function::Create(FunctionType::get(F->getReturnType(), Types, false), GlobalValue::ExternalLinkage, Name, Mod);
|
H A D | R600TextureIntrinsicsReplacer.cpp | 30 Module *Mod; member in class:__anon26119::R600TextureIntrinsicsReplacer 148 Function *F = Mod->getFunction(Name); 150 F = Function::Create(FT, GlobalValue::ExternalLinkage, Name, Mod); 214 Mod = &M;
|
H A D | AMDGPUPromoteAlloca.cpp | 32 Module *Mod; member in class:__anon26101::AMDGPUPromoteAlloca 52 Mod = &M; 79 for (Module::global_iterator I = Mod->global_begin(), 80 E = Mod->global_end(); I != E; ++I) { 92 Mod->getDataLayout()->getTypeAllocSize(GVTy->getElementType()); 270 Mod->getDataLayout()->getTypeAllocSize(AllocaTy); 281 *Mod, ArrayType::get(I.getAllocatedType(), 256), false, 286 Type::getInt32Ty(Mod->getContext()), false); 288 AttrSet.addAttribute(Mod->getContext(), 0, Attribute::ReadNone); 290 Value *ReadLocalSizeY = Mod [all...] |
/external/clang/lib/Basic/ |
H A D | Module.cpp | 213 Module *Mod = *I; local 214 if (!Mod->IsExplicit) 215 Exported.push_back(Mod); 223 Module *Mod = Exports[I].getPointer(); local 226 Exported.push_back(Mod); 251 Module *Mod = Imports[I]; local 257 if (Mod == Restriction || Mod->isSubModuleOf(Restriction)) { 267 Exported.push_back(Mod);
|
/external/llvm/lib/Analysis/ |
H A D | AliasAnalysisEvaluator.cpp | 51 unsigned NoModRef, Mod, Ref, ModRef; member in class:__anon25663::AAEval 66 NoModRef = Mod = Ref = ModRef = 0; 271 // Mod/ref alias analysis: compare all pairs of calls and values 286 case AliasAnalysis::Mod: 287 PrintModRefResults("Just Mod", PrintMod, I, *V, F.getParent()); 288 ++Mod; break; 299 // Mod/ref alias analysis: compare all pairs of calls 309 case AliasAnalysis::Mod: 310 PrintModRefResults("Just Mod", PrintMod, *C, *D, F.getParent()); 311 ++Mod; brea [all...] |
H A D | Lint.cpp | 102 Module *Mod; member in class:__anon25689::Lint 131 V->printAsOperand(MessagesStr, true, Mod); 176 Mod = F.getParent();
|
/external/llvm/lib/Target/ |
H A D | TargetMachineC.cpp | 186 Module* Mod = unwrap(M); local 199 Mod->setDataLayout(td); 200 pass.add(new DataLayoutPass(Mod)); 217 pass.run(*Mod);
|
/external/llvm/lib/Target/X86/ |
H A D | X86CodeEmitter.cpp | 358 inline static unsigned char ModRMByte(unsigned Mod, unsigned RegOpcode, argument 360 assert(Mod < 4 && RegOpcode < 8 && RM < 8 && "ModRM Fields out of range!"); 361 return RM | (RegOpcode << 3) | (Mod << 6);
|
/external/llvm/tools/lli/ |
H A D | lli.cpp | 401 Module *Mod = ParseIRFile(InputFile, Err, Context); local 402 if (!Mod) { 411 Mod->setModuleIdentifier(CacheName); 418 if (std::error_code EC = Mod->materializeAllPermanently()) { 433 DebugIRPass->runOnModule(*Mod); 437 EngineBuilder builder(Mod); 450 Mod->setTargetTriple(Triple::normalize(TargetTriple)); 558 if (RemoteMCJIT && Triple(Mod->getTargetTriple()).isOSCygMing()) { 559 addCygMingExtraModule(EE, Context, Mod->getTargetTriple()); 594 Function *EntryFn = Mod [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
H A D | R600KernelParameters.cpp | 42 Module *Mod; member in class:__anon13915::R600KernelParameters 97 Module *Mod = const_cast<Function*>(Fun)->getParent(); local 98 NamedMDNode * MD = Mod->getOrInsertNamedMetadata("opencl.kernels"); 449 Mod = &M;
|
/external/clang/lib/Rewrite/Frontend/ |
H A D | InclusionRewriter.cpp | 33 const Module *Mod; member in struct:__anon17971::InclusionRewriter::FileChange 37 FileChange(SourceLocation From, const Module *Mod) : Mod(Mod), From(From) { argument 71 void WriteImplicitModuleImport(const Module *Mod, StringRef EOL); 131 void InclusionRewriter::WriteImplicitModuleImport(const Module *Mod, argument 133 OS << "@import " << Mod->getFullModuleName() << ";" 399 if (Change->Mod) { 400 WriteImplicitModuleImport(Change->Mod, EOL);
|
/external/llvm/include/llvm/Analysis/ |
H A D | AliasAnalysis.h | 12 // implemented by all alias analysis implementations. Mod/Ref information is 228 /// ModRefResult - Represent the result of a mod/ref query. Mod and Ref are 231 enum ModRefResult { NoModRef = 0, Ref = 1, Mod = 2, ModRef = 3 }; enumerator in enum:llvm::AliasAnalysis::ModRefResult 339 return !(MRB & Mod);
|
/external/llvm/lib/Target/NVPTX/ |
H A D | NVPTXUtilities.cpp | 38 void llvm::clearAnnotationCache(const llvm::Module *Mod) { argument 40 annotationCache->erase(Mod);
|
/external/mesa3d/src/gallium/drivers/radeon/ |
H A D | R600KernelParameters.cpp | 42 Module *Mod; member in class:__anon27326::R600KernelParameters 97 Module *Mod = const_cast<Function*>(Fun)->getParent(); local 98 NamedMDNode * MD = Mod->getOrInsertNamedMetadata("opencl.kernels"); 449 Mod = &M;
|
/external/chromium_org/third_party/jinja2/ |
H A D | nodes.py | 753 class Mod(BinExpr): class in inherits:BinExpr
|
/external/llvm/lib/ExecutionEngine/ |
H A D | ExecutionEngineBindings.cpp | 292 Module *Mod = unwrap(M); local 293 unwrap(EE)->removeModule(Mod); 294 *OutMod = wrap(Mod);
|
/external/clang/lib/Sema/ |
H A D | Sema.cpp | 697 Module *Mod = Stack.pop_back_val(); local 703 ModMap.resolveExports(Mod, /*Complain=*/false); 704 ModMap.resolveUses(Mod, /*Complain=*/false); 705 ModMap.resolveConflicts(Mod, /*Complain=*/false); 708 for (Module::submodule_iterator Sub = Mod->submodule_begin(), 709 SubEnd = Mod->submodule_end();
|
/external/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86MCCodeEmitter.cpp | 128 inline static unsigned char ModRMByte(unsigned Mod, unsigned RegOpcode, argument 130 assert(Mod < 4 && RegOpcode < 8 && RM < 8 && "ModRM Fields out of range!"); 131 return RM | (RegOpcode << 3) | (Mod << 6);
|