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

1 2 3

  /external/libcxx/test/std/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/opencv3/modules/videostab/src/
wobble_suppression.cpp 62 const float *ml, const float *mr, PtrStepSzf mapx, PtrStepSzf mapy);
66 int left, int idx, int right, Size size, const Mat &ml, const Mat &mr,
70 CV_Assert(mr.size() == Size(3, 3) && mr.type() == CV_32F && mr.isContinuous());
77 ml.ptr<float>(), mr.ptr<float>(), mapx, mapy);
116 Mat_<float> MR = S1 * getMotion(idx, k2, *motions2_).inv() * getMotion(idx, k2, *motions_) * S1.inv();
134 xr = MR(0,0)*x + MR(0,1)*y + MR(0,2)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 216 const MemRegion *MR = V.getAsRegion();
217 if (!MR)
220 const TypedValueRegion *TVR = dyn_cast<TypedValueRegion>(MR);
287 static const CXXRecordDecl *getCXXRecordType(const MemRegion *MR) {
288 if (const TypedValueRegion *TVR = dyn_cast<TypedValueRegion>(MR))
290 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR))
299 const MemRegion *MR = Base.getAsRegion();
300 if (!MR)
312 while (const CXXRecordDecl *MRClass = getCXXRecordType(MR)) {
315 return loc::MemRegionVal(MR);
    [all...]
SymbolManager.cpp 421 bool SymbolReaper::isLiveRegion(const MemRegion *MR) {
422 if (RegionRoots.count(MR))
425 MR = MR->getBaseRegion();
427 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR))
430 if (const VarRegion *VR = dyn_cast<VarRegion>(MR))
437 if (isa<AllocaRegion>(MR))
440 if (isa<CXXThisRegion>(MR))
443 if (isa<MemSpaceRegion>(MR))
446 if (isa<CodeTextRegion>(MR))
    [all...]
MemRegion.cpp     [all...]
SimpleConstraintManager.cpp 75 const MemRegion *MR = LV->getAsRegion();
76 if (const TypedRegion *TR = dyn_cast_or_null<TypedRegion>(MR))
  /external/llvm/lib/Target/NVPTX/
NVPTXFrameLowering.cpp 39 MachineRegisterInfo &MR = MF.getRegInfo();
55 if (!MR.use_empty(NVPTX::VRFrame)) {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SubEngine.h 134 const MemRegion* MR) {
135 return processRegionChanges(state, nullptr, MR, MR, nullptr);
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
rdatatype.py 42 MR = 9
104 'MR' : MR,
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 127 const MemRegion *MR,
132 const MemRegion *MR,
152 const MemRegion *MR);
629 const MemRegion *MR,
633 MR = MR->StripCasts();
635 switch (MR->getKind()) {
663 return state->remove<CStringLength>(MR);
665 return state->set<CStringLength>(MR, strLength);
671 const MemRegion *MR,
    [all...]
VforkChecker.cpp 200 const MemRegion *MR = L.getAsRegion();
203 if (!MR || MR == VforkLhs)
DereferenceChecker.cpp 236 const MemRegion *MR = L.getAsRegion();
237 const TypedValueRegion *TVR = dyn_cast_or_null<TypedValueRegion>(MR);
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-myanmar-machine.rl 51 MR = 22;
71 medial_group = MY? MR? MW? MH? As?;
  /external/opencv3/samples/cpp/
tvl1_optical_flow.cpp 30 const int MR = 6;
31 const int NCOLS = RY + YG + GC + CB + BM + MR;
53 for (int i = 0; i < MR; ++i, ++k)
54 colorWheel[k] = Vec3i(255, 0, 255 - 255 * i / MR);
  /external/opencv3/samples/gpu/
optical_flow.cpp 32 const int MR = 6;
33 const int NCOLS = RY + YG + GC + CB + BM + MR;
55 for (int i = 0; i < MR; ++i, ++k)
56 colorWheel[k] = Vec3i(255, 0, 255 - 255 * i / MR);
  /external/llvm/lib/Target/Hexagon/
HexagonStoreWidening.cpp 439 MachineOperand &MR = FirstSt->getOperand(0);
442 .addReg(MR.getReg(), getKillRegState(MR.isKill()))
461 MachineOperand &MR = FirstSt->getOperand(0);
464 .addReg(MR.getReg(), getKillRegState(MR.isKill()))
  /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/v8/src/compiler/x87/
instruction-codes-x87.h 118 V(MR) /* [%r1 ] */ \
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 223 ModRefInfo MR = GetLocation(Inst, Loc, *TLI);
239 if (isReadOnlyCall && !(MR & MRI_Mod) &&
253 if (MR != MRI_NoModRef)
702 ModRefInfo MR = AA->getModRefInfo(Inst, MemLoc);
704 if (MR == MRI_ModRef)
705 MR = AA->callCapturesBefore(Inst, MemLoc, DT, &OBB);
706 switch (MR) {
763 ModRefInfo MR = GetLocation(QueryInst, MemLoc, *TLI);
766 bool isLoad = !(MR & MRI_Mod);
    [all...]
  /external/opencv/cxcore/src/
cxmean.cpp 241 IPCVAPI_IMPL( CvStatus, icvMean_##flavor##_C##cn##MR, \
272 IPCVAPI_IMPL( CvStatus, icvMean_##flavor##_C##cn##MR, \
378 CV_DEF_INIT_BIG_FUNC_TAB_2D( Mean, MR )
  /external/v8/src/compiler/ia32/
instruction-codes-ia32.h 135 V(MR) /* [%r1 ] */ \
  /external/v8/src/compiler/x64/
instruction-codes-x64.h 163 V(MR) /* [%r1 ] */ \
  /frameworks/support/v13/
Android.mk 55 # A helper sub-library that makes direct use of NYC MR-1 APIs.
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 715 ModRefInfo MR = AA.getModRefInfo(C, cpyDest, srcSize);
717 if (MR != MRI_NoModRef)
718 MR = AA.callCapturesBefore(C, cpyDest, srcSize, &DT);
719 if (MR != MRI_NoModRef)
    [all...]

Completed in 596 milliseconds

1 2 3