Lines Matching refs:_other
105 auto* _other = dynamic_cast<const ConstantAffixModifier*>(&other); in semanticallyEquivalent() local
106 if (_other == nullptr) { in semanticallyEquivalent()
109 return fPrefix == _other->fPrefix in semanticallyEquivalent()
110 && fSuffix == _other->fSuffix in semanticallyEquivalent()
111 && fField == _other->fField in semanticallyEquivalent()
112 && fStrong == _other->fStrong; in semanticallyEquivalent()
192 auto* _other = dynamic_cast<const SimpleModifier*>(&other); in semanticallyEquivalent() local
193 if (_other == nullptr) { in semanticallyEquivalent()
197 return fParameters.obj == _other->fParameters.obj; in semanticallyEquivalent()
199 return fCompiledPattern == _other->fCompiledPattern in semanticallyEquivalent()
200 && fField == _other->fField in semanticallyEquivalent()
201 && fStrong == _other->fStrong; in semanticallyEquivalent()
322 auto* _other = dynamic_cast<const ConstantMultiFieldModifier*>(&other); in semanticallyEquivalent() local
323 if (_other == nullptr) { in semanticallyEquivalent()
327 return fParameters.obj == _other->fParameters.obj; in semanticallyEquivalent()
329 return fPrefix.contentEquals(_other->fPrefix) in semanticallyEquivalent()
330 && fSuffix.contentEquals(_other->fSuffix) in semanticallyEquivalent()
331 && fOverwrite == _other->fOverwrite in semanticallyEquivalent()
332 && fStrong == _other->fStrong; in semanticallyEquivalent()