Lines Matching defs:rhs
39 Handle<String> rhs =
40 static_cast<const StringCons*>(this)->rhs()->AllocateStringConstant(
42 result = isolate->factory()->NewConsString(lhs, rhs).ToHandleChecked();
88 bool operator==(StringLiteral const& lhs, StringLiteral const& rhs) {
89 return lhs.str().address() == rhs.str().address();
92 bool operator!=(StringLiteral const& lhs, StringLiteral const& rhs) {
93 return !(lhs == rhs);
105 NumberToStringConstant const& rhs) {
106 return lhs.num() == rhs.num();
110 NumberToStringConstant const& rhs) {
111 return !(lhs == rhs);
122 bool operator==(StringCons const& lhs, StringCons const& rhs) {
124 return *(lhs.lhs()) == *(rhs.lhs()) && *(lhs.rhs()) == *(rhs.rhs());
127 bool operator!=(StringCons const& lhs, StringCons const& rhs) {
128 return !(lhs == rhs);
132 return base::hash_combine(*(p.lhs()), *(p.rhs()));
155 return os << p.lhs() << ", " << p.rhs();
183 rhs()->GetMaxStringConstantLength();