/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/ |
types.pass.cpp | 35 typedef std::match_results<CharT*> MR; 36 static_assert((std::is_same<typename MR::value_type, std::sub_match<CharT*> >::value), ""); 37 static_assert((std::is_same<typename MR::const_reference, const std::sub_match<CharT*>& >::value), ""); 38 static_assert((std::is_same<typename MR::reference, const std::sub_match<CharT*>& >::value), ""); 39 static_assert((!std::is_same<typename MR::const_iterator, void>::value), ""); 40 static_assert((std::is_same<typename MR::difference_type, std::ptrdiff_t>::value), ""); 41 static_assert((std::is_same<typename MR::size_type, std::size_t>::value), ""); 42 static_assert((std::is_same<typename MR::allocator_type, std::allocator<std::sub_match<CharT*> > >::value), ""); 43 static_assert((std::is_same<typename MR::char_type, CharT>::value), ""); 44 static_assert((std::is_same<typename MR::string_type, std::basic_string<CharT> >::value), "") [all...] |
/external/smack/src/org/xbill/DNS/ |
MRRecord.java | 23 * Creates a new MR Record with the given data 29 super(name, Type.MR, dclass, ttl, newName, "new name");
|
Type.java | 40 public static final int MR = 9; 235 types.add(MR, "MR", new MRRecord());
|
/external/llvm/lib/Target/ARM/ |
ARMJITInfo.cpp | 238 intptr_t ARMJITInfo::resolveRelocDestAddr(MachineRelocation *MR) const { 239 ARM::RelocationType RT = (ARM::RelocationType)MR->getRelocationType(); 242 return (intptr_t)(MR->getResultPointer()); 245 return (intptr_t)(MR->getResultPointer()) - MR->getConstantVal(); 248 return getJumpTableBaseAddr(MR->getJumpTableIndex()); 252 return getConstantPoolEntryAddr(MR->getConstantPoolIndex()); 254 ARMConstantPoolValue *ACPV = (ARMConstantPoolValue*)MR->getConstantVal(); 257 intptr_t Addr = (intptr_t)(MR->getResultPointer()); 267 void ARMJITInfo::relocate(void *Function, MachineRelocation *MR, [all...] |
ARMJITInfo.h | 80 virtual void relocate(void *Function, MachineRelocation *MR, 179 intptr_t resolveRelocDestAddr(MachineRelocation *MR) const;
|
/external/llvm/lib/Target/Mips/ |
MipsJITInfo.h | 58 virtual void relocate(void *Function, MachineRelocation *MR,
|
MipsJITInfo.cpp | 247 void MipsJITInfo::relocate(void *Function, MachineRelocation *MR, 249 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { 251 void *RelocPos = (char*) Function + MR->getMachineCodeOffset(); 252 intptr_t ResultPtr = (intptr_t) MR->getResultPointer(); 254 switch ((Mips::RelocationType) MR->getRelocationType()) { 267 if ((((intptr_t) (MR->getResultPointer()) & 0xffff) >> 15) == 1) {
|
/external/llvm/lib/Target/PowerPC/ |
PPCJITInfo.h | 37 virtual void relocate(void *Function, MachineRelocation *MR,
|
PPCJITInfo.cpp | 119 "mr r3, r0\n" 182 "mr 3, 0\n" 261 "mr 3, 0\n" // return address (still in r0) 413 void PPCJITInfo::relocate(void *Function, MachineRelocation *MR, 415 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { 416 unsigned *RelocPos = (unsigned*)Function + MR->getMachineCodeOffset()/4; 417 intptr_t ResultPtr = (intptr_t)MR->getResultPointer(); 418 switch ((PPC::RelocationType)MR->getRelocationType()) { 437 ResultPtr += MR->getConstantVal(); 440 if (MR->getRelocationType() == PPC::reloc_absolute_high) [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
Store.cpp | 227 const MemRegion *MR = V.getAsRegion(); 228 if (!MR) 231 const TypedValueRegion *TVR = dyn_cast<TypedValueRegion>(MR); 298 static const CXXRecordDecl *getCXXRecordType(const MemRegion *MR) { 299 if (const TypedValueRegion *TVR = dyn_cast<TypedValueRegion>(MR)) 301 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR)) 310 const MemRegion *MR = Base.getAsRegion(); 311 if (!MR) 323 while (const CXXRecordDecl *MRClass = getCXXRecordType(MR)) { 326 return loc::MemRegionVal(MR); [all...] |
SymbolManager.cpp | 414 bool SymbolReaper::isLiveRegion(const MemRegion *MR) { 415 if (RegionRoots.count(MR)) 418 MR = MR->getBaseRegion(); 420 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR)) 423 if (const VarRegion *VR = dyn_cast<VarRegion>(MR)) 430 if (isa<AllocaRegion>(MR)) 433 if (isa<CXXThisRegion>(MR)) 436 if (isa<MemSpaceRegion>(MR))
|
/external/llvm/lib/Analysis/ |
AliasAnalysisCounter.cpp | 33 unsigned NoMR, JustRef, JustMod, MR; 40 NoMR = JustRef = JustMod = MR = 0; 49 unsigned MRSum = NoMR+JustRef+JustMod+MR; 70 printLine("mod/ref", MR, MRSum); 73 << "%/" << MR*100/MRSum <<"%\n\n"; 161 case ModRef: MR++; MRString = "ModRef"; break;
|
MemoryDependenceAnalysis.cpp | 208 AliasAnalysis::ModRefResult MR = GetLocation(Inst, Loc, AA); 224 if (isReadOnlyCall && !(MR & AliasAnalysis::Mod) && 238 if (MR != AliasAnalysis::NoModRef) 515 AliasAnalysis::ModRefResult MR = AA->getModRefInfo(Inst, MemLoc); 517 if (MR == AliasAnalysis::ModRef) 518 MR = AA->callCapturesBefore(Inst, MemLoc, DT); 519 switch (MR) { 576 AliasAnalysis::ModRefResult MR = GetLocation(QueryInst, MemLoc, AA); 579 bool isLoad = !(MR & AliasAnalysis::Mod); [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
SubEngine.h | 124 const MemRegion* MR) { 125 return processRegionChanges(state, 0, MR, MR, 0);
|
/external/harfbuzz_ng/src/ |
hb-ot-shape-complex-sea-machine.rl | 45 MR = 22; # Medial Ra 54 syllable_tail = (VPre|VAbv|VBlw|VPst|H.C|CM|MR|T|A)*;
|
hb-ot-shape-complex-myanmar-machine.rl | 51 MR = 22; 70 medial_group = MY? MR? ((MW MH? | MH) As?)?;
|
/external/llvm/include/llvm/Target/ |
TargetJITInfo.h | 103 virtual void relocate(void *Function, MachineRelocation *MR,
|
/external/llvm/lib/Target/X86/ |
X86JITInfo.h | 66 virtual void relocate(void *Function, MachineRelocation *MR,
|
X86JITInfo.cpp | 542 void X86JITInfo::relocate(void *Function, MachineRelocation *MR, 544 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { 545 void *RelocPos = (char*)Function + MR->getMachineCodeOffset(); 546 intptr_t ResultPtr = (intptr_t)MR->getResultPointer(); 547 switch ((X86::RelocationType)MR->getRelocationType()) { 551 ResultPtr = ResultPtr -(intptr_t)RelocPos - 4 - MR->getConstantVal(); 558 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());
|
/external/llvm/lib/ExecutionEngine/JIT/ |
JITEmitter.cpp | 403 virtual void addRelocation(const MachineRelocation &MR) { 404 Relocations.push_back(MR); 827 MachineRelocation &MR = Relocations[i]; 829 if (!MR.letTargetResolve()) { 830 if (MR.isExternalSymbol()) { 831 ResultPtr = TheJIT->getPointerToNamedFunction(MR.getExternalSymbol(), 833 DEBUG(dbgs() << "JIT: Map \'" << MR.getExternalSymbol() << "\' to [" 837 if (MR.mayNeedFarStub()) { 840 } else if (MR.isGlobalValue()) { 841 ResultPtr = getPointerToGlobal(MR.getGlobalValue() [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
CStringChecker.cpp | 125 const MemRegion *MR, 130 const MemRegion *MR, 148 const MemRegion *MR); 614 const MemRegion *MR, 618 MR = MR->StripCasts(); 620 switch (MR->getKind()) { 648 return state->remove<CStringLength>(MR); 650 return state->set<CStringLength>(MR, strLength); 656 const MemRegion *MR, [all...] |
DynamicTypePropagation.cpp | 201 const MemRegion *MR = C.getSVal(NewE).getAsRegion(); 202 if (!MR) 205 C.addTransition(C.getState()->setDynamicTypeInfo(MR, NewE->getType(),
|
DereferenceChecker.cpp | 231 const MemRegion *MR = L.getAsRegion(); 232 const TypedValueRegion *TVR = dyn_cast_or_null<TypedValueRegion>(MR);
|
/external/eigen/bench/ |
geometry.cpp | 64 template<typename S, int R, int C, int O, int MR, int MC> 65 struct get_dim<Matrix<S,R,C,O,MR,MC> > { enum { Dim = R }; };
|
/art/compiler/dex/quick/x86/ |
x86_lir.h | 226 // MR - Memory Register - opcode [base + disp], reg 249 opcode ## 8MR, opcode ## 8AR, opcode ## 8TR, \ 252 opcode ## 16MR, opcode ## 16AR, opcode ## 16TR, \ 256 opcode ## 32MR, opcode ## 32AR, opcode ## 32TR, \ 386 kMemReg, kArrayReg, kThreadReg, // MR, AR and TR instruction kinds.
|