Lines Matching refs:authority

36359 …ror("[UriError]: Scheme is missing: {scheme: \"\", authority: \"" + ret.authority + "\", path: \""…
36372 if (ret.authority) {
36437 function URI(schemeOrData, authority, path, query, fragment, _strict) { argument
36441 this.authority = schemeOrData.authority || _empty;
36451 this.authority = authority || _empty;
36465 return typeof thing.authority === 'string'
36514 …var scheme = change.scheme, authority = change.authority, path = change.path, query = change.query…
36521 if (authority === undefined) {
36522 authority = this.authority;
36524 else if (authority === null) {
36525 authority = _empty;
36546 && authority === this.authority
36552 return new _URI(scheme, authority, path, query, fragment);
36591 var authority = _empty;
36598 // check for authority as used in UNC shares
36603 authority = path.substring(2);
36607 authority = path.substring(2, idx);
36611 return new _URI('file', authority, path, _empty, _empty);
36614 …return new _URI(components.scheme, components.authority, components.path, components.query, compon…
36723 if (this.authority) {
36724 res.authority = this.authority;
36832 if (uri.authority && uri.path.length > 1 && uri.scheme === 'file') {
36834 value = "//" + uri.authority + uri.path;
36864 …var scheme = uri.scheme, authority = uri.authority, path = uri.path, query = uri.query, fragment =…
36869 if (authority || scheme === 'file') {
36873 if (authority) {
36874 var idx = authority.indexOf('@');
36877 var userinfo = authority.substr(0, idx);
36878 authority = authority.substr(idx + 1);
36891 authority = authority.toLowerCase();
36892 idx = authority.indexOf(':');
36894 res += encoder(authority, false);
36898 res += encoder(authority.substr(0, idx), false);
36899 res += authority.substr(idx);