Lines Matching defs:newUri
2124 URI newUri;
2126 newUri.scheme = scheme;
2127 newUri.schemeStr = schemeStr;
2128 newUri.query = other.query;
2129 newUri.fragment = other.fragment;
2134 newUri.absolute = true;
2135 newUri.authority = other.authority;
2136 newUri.port = other.port;//part of authority
2137 newUri.path = other.path;
2144 newUri.absolute = true;
2145 newUri.path = other.path;
2154 newUri.path = tpath;
2157 newUri.path = other.path;
2161 newUri.normalize();
2162 return newUri;