Lines Matching refs:FactID
158 using FactID = unsigned short; typedef
167 FactID newFact(std::unique_ptr<FactEntry> Entry) { in newFact()
172 const FactEntry &operator[](FactID F) const { return *Facts[F]; } in operator []()
184 using FactVec = SmallVector<FactID, 4>;
209 void addLockByID(FactID ID) { FactIDs.push_back(ID); } in addLockByID()
211 FactID addLock(FactManager &FM, std::unique_ptr<FactEntry> Entry) { in addLock()
212 FactID F = FM.newFact(std::move(Entry)); in addLock()
237 return std::find_if(begin(), end(), [&](FactID ID) { in findLockIter()
243 auto I = std::find_if(begin(), end(), [&](FactID ID) { in findLock()
251 auto I = std::find_if(begin(), end(), [&](FactID ID) -> bool { in findLockUniv()
259 auto I = std::find_if(begin(), end(), [&](FactID ID) -> bool { in findPartialMatch()
266 auto I = std::find_if(begin(), end(), [&](FactID ID) -> bool { in containsMutexDecl()