/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
Mod.java | 19 * $Id: Mod.java 468655 2006-10-28 07:12:06Z minchau $ 28 * The 'mod' operation expression executer. 30 public class Mod extends Operation
|
/external/llvm/include/llvm/ADT/ |
StringExtras.h | 59 unsigned char Mod = static_cast<unsigned char>(X) & 15; 60 *--BufPtr = hexdigit(Mod);
|
/external/llvm/unittests/Bitcode/ |
BitReaderTest.cpp | 26 Module* Mod = new Module("test-mem", getGlobalContext()); 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/lib/Basic/ |
Module.cpp | 197 Module *Mod = Exports[I].getPointer(); 200 Exported.push_back(Mod); 225 Module *Mod = Imports[I]; 231 if (Mod == Restriction || Mod->isSubModuleOf(Restriction)) { 241 Exported.push_back(Mod);
|
/external/llvm/lib/Target/ |
TargetMachineC.cpp | 164 Module* Mod = unwrap(M); 194 pass.run(*Mod);
|
/external/llvm/tools/lli/ |
lli.cpp | 313 Module *Mod = ParseIRFile(InputFile, Err, Context); 314 if (!Mod) { 322 if (Mod->MaterializeAllPermanently(&ErrorMsg)) { 337 DebugIRPass->runOnModule(*Mod); 340 EngineBuilder builder(Mod); 353 Mod->setTargetTriple(Triple::normalize(TargetTriple)); 442 Function *EntryFn = Mod->getFunction(EntryFunc); 450 Constant *Exit = Mod->getOrInsertFunction("exit", Type::getVoidTy(Context), 471 for (Module::iterator I = Mod->begin(), E = Mod->end(); I != E; ++I) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
R600KernelParameters.cpp | 42 Module *Mod; 97 Module *Mod = const_cast<Function*>(Fun)->getParent(); 98 NamedMDNode * MD = Mod->getOrInsertNamedMetadata("opencl.kernels"); 449 Mod = &M;
|
/external/clang/lib/Rewrite/Frontend/ |
InclusionRewriter.cpp | 33 const Module *Mod; 37 FileChange(SourceLocation From, const Module *Mod) : Mod(Mod), From(From) { 76 void WriteImplicitModuleImport(const Module *Mod, StringRef EOL); 132 void InclusionRewriter::WriteImplicitModuleImport(const Module *Mod, 134 OS << "@import " << Mod->getFullModuleName() << ";" 388 if (Change->Mod) { 389 WriteImplicitModuleImport(Change->Mod, EOL);
|
/external/llvm/include/llvm/Analysis/ |
AliasAnalysis.h | 12 // implemented by all alias analysis implementations. Mod/Ref information is 225 /// Simple mod/ref information... 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 }; 331 return !(MRB & Mod); 491 /// Higher level methods for querying mod/ref information.
|
CallGraph.h | 74 Module *Mod; // The module this call graph represents 89 Module &getModule() const { return *Mod; }
|
/external/llvm/lib/Analysis/ |
AliasAnalysisEvaluator.cpp | 43 static cl::opt<bool> PrintMod("print-mod", cl::ReallyHidden); 52 unsigned NoModRef, Mod, Ref, ModRef; 67 NoModRef = Mod = Ref = ModRef = 0; 272 // Mod/ref alias analysis: compare all pairs of calls and values 287 case AliasAnalysis::Mod: 288 PrintModRefResults("Just Mod", PrintMod, I, *V, F.getParent()); 289 ++Mod; break; 300 // Mod/ref alias analysis: compare all pairs of calls 310 case AliasAnalysis::Mod: 311 PrintModRefResults("Just Mod", PrintMod, *C, *D, F.getParent()) [all...] |
Lint.cpp | 103 Module *Mod; 132 WriteAsOperand(MessagesStr, V, true, Mod); 177 Mod = F.getParent();
|
ScalarEvolution.cpp | 769 APInt Mod = APInt::getSignedMinValue(W+1); 771 MultiplyFactor = MultiplyFactor.multiplicativeInverse(Mod); [all...] |
/external/llvm/lib/ExecutionEngine/ |
ExecutionEngineBindings.cpp | 294 Module *Mod = unwrap(M); 295 unwrap(EE)->removeModule(Mod); 296 *OutMod = wrap(Mod);
|
/external/llvm/lib/Target/R600/ |
R600TextureIntrinsicsReplacer.cpp | 30 Module *Mod; 149 Function *F = Mod->getFunction(Name); 151 F = Function::Create(FT, GlobalValue::ExternalLinkage, Name, Mod); 215 Mod = &M;
|
/external/mesa3d/src/gallium/drivers/radeon/ |
R600KernelParameters.cpp | 42 Module *Mod; 97 Module *Mod = const_cast<Function*>(Fun)->getParent(); 98 NamedMDNode * MD = Mod->getOrInsertNamedMetadata("opencl.kernels"); 449 Mod = &M;
|
/external/chromium_org/third_party/jinja2/ |
nodes.py | 32 '%': operator.mod, 753 class Mod(BinExpr):
|
/external/clang/lib/Sema/ |
Sema.cpp | 629 Module *Mod = Stack.back(); 636 ModMap.resolveExports(Mod, /*Complain=*/false); 637 ModMap.resolveConflicts(Mod, /*Complain=*/false); 640 for (Module::submodule_iterator Sub = Mod->submodule_begin(), 641 SubEnd = Mod->submodule_end(); [all...] |
/external/llvm/lib/Transforms/Scalar/ |
MemCpyOptimizer.cpp | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
ast.py | 938 class Mod(Node): 951 return "Mod((%s, %s))" % (repr(self.left), repr(self.right)) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
ast.py | 938 class Mod(Node): 951 return "Mod((%s, %s))" % (repr(self.left), repr(self.right)) [all...] |
/external/clang/lib/Frontend/ |
ASTUnit.cpp | 889 if (Module *Mod = ImportD->getImportedModule()) { 890 std::string ModName = Mod->getFullModuleName(); [all...] |
/external/llvm/include/llvm/MC/ |
MCExpr.h | 373 Mod, ///< Signed remainder. 438 return Create(Mod, LHS, RHS, Ctx);
|
/external/llvm/lib/IR/ |
Verifier.cpp | 129 Module *Mod; // Module we are verifying right now 157 action(AbortProcessAction), Mod(0), Context(0), DT(0), DL(0), 162 : FunctionPass(ID), Broken(false), action(ctn), Mod(0), 168 Mod = &M; 183 Mod = F.getParent(); 338 WriteAsOperand(MessagesStr, V, true, Mod); [all...] |
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
Python-ast.h | 18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
|