Lines Matching refs:Vd
273 bool containsMutexDecl(FactManager &FM, const ValueDecl* Vd) const { in containsMutexDecl()
275 *this, [&](FactID ID) -> bool { return FM[ID].valueDecl() == Vd; }); in containsMutexDecl()
306 BeforeInfo* insertAttrExprs(const ValueDecl* Vd,
309 BeforeInfo *getBeforeInfoForDecl(const ValueDecl *Vd,
312 void checkBeforeAfter(const ValueDecl* Vd,
1159 BeforeSet::BeforeInfo* BeforeSet::insertAttrExprs(const ValueDecl* Vd, in insertAttrExprs() argument
1166 std::unique_ptr<BeforeInfo> &InfoPtr = BMap[Vd]; in insertAttrExprs()
1172 for (const auto *At : Vd->attrs()) { in insertAttrExprs()
1200 ArgInfo->Vect.push_back(Vd); in insertAttrExprs()
1214 BeforeSet::getBeforeInfoForDecl(const ValueDecl *Vd, in getBeforeInfoForDecl() argument
1216 auto It = BMap.find(Vd); in getBeforeInfoForDecl()
1219 Info = insertAttrExprs(Vd, Analyzer); in getBeforeInfoForDecl()
1235 std::function<bool (const ValueDecl*)> traverse = [&](const ValueDecl* Vd) { in checkBeforeAfter() argument
1236 if (!Vd) in checkBeforeAfter()
1239 BeforeSet::BeforeInfo *Info = getBeforeInfoForDecl(Vd, Analyzer); in checkBeforeAfter()
1261 if (CycMap.try_emplace(Vd, true).second) { in checkBeforeAfter()
1262 StringRef L1 = Vd->getName(); in checkBeforeAfter()
1263 Analyzer.Handler.handleBeforeAfterCycle(L1, Vd->getLocation()); in checkBeforeAfter()