Lines Matching refs:res

28780         var res = this.children[idx - 1];
28781 if (res.offset <= offset && res.offset + res.length >= offset + length) {
28782 return res.findInScope(offset, length);
35879 var res = newParts.join('/');
35881 res = '/' + res;
35883 return res;
36705 var res = { class in _URI.toJSON
36710 res.fsPath = this._fsPath;
36711 res._sep = _pathSepMarker;
36714 res.external = this._formatted;
36718 res.path = this.path;
36721 res.scheme = this.scheme;
36724 res.authority = this.authority;
36727 res.query = this.query;
36730 res.fragment = this.fragment;
36732 return res;
36759 var res = undefined;
36774 res += encodeURIComponent(uriComponent.substring(nativeEncodePos, pos));
36778 if (res !== undefined) {
36779 res += uriComponent.charAt(pos);
36784 if (res === undefined) {
36785 res = uriComponent.substr(0, pos);
36792 res += encodeURIComponent(uriComponent.substring(nativeEncodePos, pos));
36796 res += escaped;
36805 res += encodeURIComponent(uriComponent.substring(nativeEncodePos));
36807 return res !== undefined ? res : uriComponent;
36810 var res = undefined;
36814 if (res === undefined) {
36815 res = path.substr(0, pos);
36817 res += encodeTable[code];
36820 if (res !== undefined) {
36821 res += path[pos];
36825 return res !== undefined ? res : path;
36863 var res = '';
36866 res += scheme;
36867 res += ':';
36870 res += _slash;
36871 res += _slash;
36881 res += encoder(userinfo, false);
36885 res += encoder(userinfo.substr(0, idx), false);
36886 res += ':';
36887 res += encoder(userinfo.substr(idx + 1), false);
36889 res += '@';
36894 res += encoder(authority, false);
36898 res += encoder(authority.substr(0, idx), false);
36899 res += authority.substr(idx);
36917 res += encoder(path, true);
36920 res += '?';
36921 res += encoder(query, false);
36924 res += '#';
36925 res += !skipEncoding ? encodeURIComponentFast(fragment, false) : fragment;
36927 return res;