HomeSort by relevance Sort by last modified time
    Searched refs:MR (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/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, 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...]
  /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, 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");
  /external/llvm/lib/Target/ARM/
ARMJITInfo.cpp 239 intptr_t ARMJITInfo::resolveRelocDestAddr(MachineRelocation *MR) const {
240 ARM::RelocationType RT = (ARM::RelocationType)MR->getRelocationType();
243 return (intptr_t)(MR->getResultPointer());
246 return (intptr_t)(MR->getResultPointer()) - MR->getConstantVal();
249 return getJumpTableBaseAddr(MR->getJumpTableIndex());
253 return getConstantPoolEntryAddr(MR->getConstantPoolIndex());
255 ARMConstantPoolValue *ACPV = (ARMConstantPoolValue*)MR->getConstantVal();
258 intptr_t Addr = (intptr_t)(MR->getResultPointer());
268 void ARMJITInfo::relocate(void *Function, MachineRelocation *MR,
    [all...]
ARMJITInfo.h 79 void relocate(void *Function, MachineRelocation *MR,
173 intptr_t resolveRelocDestAddr(MachineRelocation *MR) const;
  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.h 34 void relocate(void *Function, MachineRelocation *MR, unsigned NumRelocs,
PPCJITInfo.cpp 125 "mr r3, r0\n"
188 "mr 3, 0\n"
272 "mr 3, 0\n" // return address (still in r0)
424 void PPCJITInfo::relocate(void *Function, MachineRelocation *MR,
426 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
427 unsigned *RelocPos = (unsigned*)Function + MR->getMachineCodeOffset()/4;
428 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
429 switch ((PPC::RelocationType)MR->getRelocationType()) {
448 ResultPtr += MR->getConstantVal();
451 if (MR->getRelocationType() == PPC::reloc_absolute_high)
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcJITInfo.h 56 void relocate(void *Function, MachineRelocation *MR,
SparcJITInfo.cpp 276 void SparcJITInfo::relocate(void *Function, MachineRelocation *MR,
278 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
279 void *RelocPos = (char*) Function + MR->getMachineCodeOffset();
280 intptr_t ResultPtr = (intptr_t) MR->getResultPointer();
282 switch ((SP::RelocationType) MR->getRelocationType()) {
  /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 409 bool SymbolReaper::isLiveRegion(const MemRegion *MR) {
410 if (RegionRoots.count(MR))
413 MR = MR->getBaseRegion();
415 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR))
418 if (const VarRegion *VR = dyn_cast<VarRegion>(MR))
425 if (isa<AllocaRegion>(MR))
428 if (isa<CXXThisRegion>(MR))
431 if (isa<MemSpaceRegion>(MR))
434 if (isa<CodeTextRegion>(MR))
    [all...]
  /external/llvm/lib/Analysis/
AliasAnalysisCounter.cpp 32 unsigned NoMR, JustRef, JustMod, MR;
39 NoMR = JustRef = JustMod = MR = 0;
48 unsigned MRSum = NoMR+JustRef+JustMod+MR;
69 printLine("mod/ref", MR, MRSum);
72 << "%/" << MR*100/MRSum <<"%\n\n";
160 case ModRef: MR++; MRString = "ModRef"; break;
  /external/llvm/lib/Target/Mips/
MipsJITInfo.cpp 248 void MipsJITInfo::relocate(void *Function, MachineRelocation *MR,
250 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
252 void *RelocPos = (char*) Function + MR->getMachineCodeOffset();
253 intptr_t ResultPtr = (intptr_t) MR->getResultPointer();
255 switch ((Mips::RelocationType) MR->getRelocationType()) {
268 if ((((intptr_t) (MR->getResultPointer()) & 0xffff) >> 15) == 1) {
MipsJITInfo.h 58 void relocate(void *Function, MachineRelocation *MR,
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SubEngine.h 124 const MemRegion* MR) {
125 return processRegionChanges(state, nullptr, MR, MR, nullptr);
  /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;
71 medial_group = MY? MR? MW? MH? As?;
  /external/llvm/include/llvm/Target/
TargetJITInfo.h 103 virtual void relocate(void *Function, MachineRelocation *MR,
  /external/llvm/lib/Target/X86/
X86JITInfo.h 64 void relocate(void *Function, MachineRelocation *MR,
X86JITInfo.cpp 548 void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
550 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
551 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
552 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
553 switch ((X86::RelocationType)MR->getRelocationType()) {
557 ResultPtr = ResultPtr -(intptr_t)RelocPos - 4 - MR->getConstantVal();
564 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 397 void addRelocation(const MachineRelocation &MR) override {
398 Relocations.push_back(MR);
832 MachineRelocation &MR = Relocations[i];
834 if (!MR.letTargetResolve()) {
835 if (MR.isExternalSymbol()) {
836 ResultPtr = TheJIT->getPointerToNamedFunction(MR.getExternalSymbol(),
838 DEBUG(dbgs() << "JIT: Map \'" << MR.getExternalSymbol() << "\' to ["
842 if (MR.mayNeedFarStub()) {
845 } else if (MR.isGlobalValue()) {
846 ResultPtr = getPointerToGlobal(MR.getGlobalValue()
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 127 const MemRegion *MR,
132 const MemRegion *MR,
151 const MemRegion *MR);
621 const MemRegion *MR,
625 MR = MR->StripCasts();
627 switch (MR->getKind()) {
655 return state->remove<CStringLength>(MR);
657 return state->set<CStringLength>(MR, strLength);
663 const MemRegion *MR,
    [all...]
  /external/chromium_org/v8/src/compiler/ia32/
instruction-codes-ia32.h 66 // MR = [register]
73 V(MR) /* [%r0] */ \
  /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 }; };
  /external/chromium_org/v8/src/compiler/x64/
instruction-codes-x64.h 84 // MR = [register]
90 V(MR) /* [%r1] */ \

Completed in 6543 milliseconds

1 2 3