Lines Matching defs:LHS
602 /// Compare two strings and return true if LHS is lexicographically less than
604 bool operator()(const char *LHS, StringRef RHS) const {
605 // Compare prefixes with strncmp. If prefixes match we know that LHS is
607 return std::strncmp(LHS, RHS.data(), RHS.size()) < 0;
611 bool operator()(StringRef LHS, const char *RHS) const { return LHS < RHS; }
612 bool operator()(StringRef LHS, StringRef RHS) const { return LHS < RHS; }
613 bool operator()(const char *LHS, const char *RHS) const {
614 return std::strcmp(LHS, RHS) < 0;