Lines Matching refs:other
365 bool Uri::Equals(const Uri other) const
367 if (uriData_.port != other.uriData_.port) {
370 if (uriData_.scheme != other.uriData_.scheme) {
373 if (uriData_.userInfo != other.uriData_.userInfo) {
376 if (uriData_.host != other.uriData_.host) {
379 if (uriData_.query != other.uriData_.query) {
382 if (uriData_.fragment != other.uriData_.fragment) {
385 if (uriData_.path != other.uriData_.path) {
388 if (uriData_.authority != other.uriData_.authority) {
391 if (uriData_.SchemeSpecificPart != other.uriData_.SchemeSpecificPart) {