Lines Matching refs:FactID
155 using FactID = unsigned short; typedef
164 FactID newFact(std::unique_ptr<FactEntry> Entry) { in newFact()
169 const FactEntry &operator[](FactID F) const { return *Facts[F]; } in operator []()
181 using FactVec = SmallVector<FactID, 4>;
206 void addLockByID(FactID ID) { FactIDs.push_back(ID); } in addLockByID()
208 FactID addLock(FactManager &FM, std::unique_ptr<FactEntry> Entry) { in addLock()
209 FactID F = FM.newFact(std::move(Entry)); in addLock()
234 return std::find_if(begin(), end(), [&](FactID ID) { in findLockIter()
240 auto I = std::find_if(begin(), end(), [&](FactID ID) { in findLock()
248 auto I = std::find_if(begin(), end(), [&](FactID ID) -> bool { in findLockUniv()
256 auto I = std::find_if(begin(), end(), [&](FactID ID) -> bool { in findPartialMatch()
263 auto I = std::find_if(begin(), end(), [&](FactID ID) -> bool { in containsMutexDecl()