HomeSort by relevance Sort by last modified time
    Searched defs:MR (Results 1 - 24 of 24) sorted by null

  /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/clang/lib/StaticAnalyzer/Checkers/
DereferenceChecker.cpp 232 const MemRegion *MR = L.getAsRegion();
233 const TypedValueRegion *TVR = dyn_cast_or_null<TypedValueRegion>(MR);
DynamicTypePropagation.cpp 201 const MemRegion *MR = C.getSVal(NewE).getAsRegion();
202 if (!MR)
205 C.addTransition(C.getState()->setDynamicTypeInfo(MR, NewE->getType(),
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...]
MallocChecker.cpp 328 static bool SummarizeRegion(raw_ostream &os, const MemRegion *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;
MemoryDependenceAnalysis.cpp 212 AliasAnalysis::ModRefResult MR = GetLocation(Inst, Loc, AA);
228 if (isReadOnlyCall && !(MR & AliasAnalysis::Mod) &&
242 if (MR != AliasAnalysis::NoModRef)
520 AliasAnalysis::ModRefResult MR = AA->getModRefInfo(Inst, MemLoc);
522 if (MR == AliasAnalysis::ModRef)
523 MR = AA->callCapturesBefore(Inst, MemLoc, DT);
524 switch (MR) {
581 AliasAnalysis::ModRefResult MR = GetLocation(QueryInst, MemLoc, AA);
584 bool isLoad = !(MR & AliasAnalysis::Mod);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleConstraintManager.cpp 75 const MemRegion *MR = LV->getAsRegion();
76 if (const TypedRegion *TR = dyn_cast_or_null<TypedRegion>(MR))
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...]
ExprEngineCallAndReturn.cpp 203 const MemRegion *MR = V.getAsRegion();
204 if (!MR)
207 return isa<CXXTempObjectRegion>(MR);
    [all...]
ProgramState.cpp 118 const MemRegion *MR = LV.getAsRegion();
119 if (MR && Mgr.getOwningEngine() && notifyChanges)
120 return Mgr.getOwningEngine()->processRegionChange(newState, MR);
RegionStore.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86CodeEmitter.cpp 281 MachineRelocation MR = Indirect
287 MCE.addRelocation(MR);
    [all...]
  /external/smack/src/org/xbill/DNS/
Type.java 40 public static final int MR = 9;
235 types.add(MR, "MR", new MRRecord());
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 699 AliasAnalysis::ModRefResult MR = AA.getModRefInfo(C, cpyDest, srcSize);
701 if (MR != AliasAnalysis::NoModRef)
702 MR = AA.callCapturesBefore(C, cpyDest, srcSize, &DT);
703 if (MR != AliasAnalysis::NoModRef)
    [all...]
  /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/llvm/lib/Target/ARM/
ARMCodeEmitter.cpp 472 MachineRelocation MR = Indirect
479 MCE.addRelocation(MR);
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
RegionDataConstants.java 768 MR(new String[]{
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
windns.h 664 DNS_PTR_DATAW PTR,Ptr,NS,Ns,CNAME,Cname,MB,Mb,MD,Md,MF,Mf,MG,Mg,MR,Mr;
697 DNS_PTR_DATAA PTR,Ptr,NS,Ns,CNAME,Cname,MB,Mb,MD,Md,MF,Mf,MG,Mg,MR,Mr;
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.publisher.eclipse_1.1.200.v20130516-1953.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.publisher.eclipse_1.1.200.v20130516-1953.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jar 

Completed in 984 milliseconds