Lines Matching refs:LHS
45 static bool locationCallLessThan(const LocationCall *LHS, in locationCallLessThan() argument
47 if (!LHS && !RHS) in locationCallLessThan()
49 if (LHS && !RHS) in locationCallLessThan()
51 if (!LHS && RHS) in locationCallLessThan()
53 auto compareResult = LHS->name().compare(RHS->name()); in locationCallLessThan()
58 return locationCallLessThan(LHS->on(), RHS->on()); in locationCallLessThan()
62 std::pair<SourceRange, SharedLocationCall> const &LHS, in operator ()() argument
64 if (LHS.first.getBegin() < RHS.first.getBegin()) in operator ()()
66 else if (LHS.first.getBegin() != RHS.first.getBegin()) in operator ()()
69 if (LHS.first.getEnd() < RHS.first.getEnd()) in operator ()()
71 else if (LHS.first.getEnd() != RHS.first.getEnd()) in operator ()()
74 return locationCallLessThan(LHS.second.get(), RHS.second.get()); in operator ()()
77 std::pair<SourceLocation, SharedLocationCall> const &LHS, in operator ()() argument
79 if (LHS.first == RHS.first) in operator ()()
80 return locationCallLessThan(LHS.second.get(), RHS.second.get()); in operator ()()
81 return LHS.first < RHS.first; in operator ()()