Lines Matching refs:lhs
36 Handle<String> lhs =
37 static_cast<const StringCons*>(this)->lhs()->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);
104 bool operator==(NumberToStringConstant const& lhs,
106 return lhs.num() == rhs.num();
109 bool operator!=(NumberToStringConstant const& lhs,
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();
182 return lhs()->GetMaxStringConstantLength() +