Home
last modified time | relevance | path

Searched refs:PrevV (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
DRetainCountDiagnostics.cpp99 RefVal PrevV = *PrevT; in shouldGenerateNote() local
104 assert(!PrevV.hasSameState(CurrV) && "The state should have changed."); in shouldGenerateNote()
115 if (!PrevV.hasSameState(CurrV)) in shouldGenerateNote()
119 if (PrevV.getCount() == CurrV.getCount()) { in shouldGenerateNote()
121 if (PrevV.getAutoreleaseCount() == CurrV.getAutoreleaseCount()) in shouldGenerateNote()
124 assert(PrevV.getAutoreleaseCount() < CurrV.getAutoreleaseCount()); in shouldGenerateNote()
129 if (PrevV.getCount() > CurrV.getCount()) in shouldGenerateNote()
142 CurrV.getIvarAccessHistory() != PrevV.getIvarAccessHistory()) { in shouldGenerateNote()
/external/clang/lib/StaticAnalyzer/Checkers/
DRetainCountChecker.cpp2047 RefVal PrevV = *PrevT; in VisitNode() local
2053 assert(!PrevV.hasSameState(CurrV) && "The state should have changed."); in VisitNode()
2074 assert(!PrevV.hasSameState(CurrV) && "The state should have changed."); in VisitNode()
2099 if (!PrevV.hasSameState(CurrV)) in VisitNode()
2103 if (PrevV.getCount() == CurrV.getCount()) { in VisitNode()
2105 if (PrevV.getAutoreleaseCount() == CurrV.getAutoreleaseCount()) in VisitNode()
2108 assert(PrevV.getAutoreleaseCount() < CurrV.getAutoreleaseCount()); in VisitNode()
2113 if (PrevV.getCount() > CurrV.getCount()) in VisitNode()
2121 if (PrevV.getKind() == RefVal::Released) { in VisitNode()
2132 CurrV.getIvarAccessHistory() != PrevV.getIvarAccessHistory()) { in VisitNode()
/external/llvm-project/clang/utils/TableGen/
DMveEmitter.cpp1162 Result::Ptr PrevV = nullptr; in getCodeForDag() local
1171 if (PrevV) in getCodeForDag()
1172 V->setPredecessor(PrevV); in getCodeForDag()
1173 PrevV = V; in getCodeForDag()
1175 return PrevV; in getCodeForDag()