Lines Matching refs:sep_chars
23823 …var sep = nil, sep_chars = nil, new_parts = nil, $ret_or_1 = nil, path_abs = nil, basedir_abs = ni…
23828 sep_chars = $sep_chars();
23837 parts = path.$split($regexp(["[", sep_chars, "]"]));
23838 …leading_sep = windows_root_rx.test(path) ? '' : path.$sub($regexp(["^([", sep_chars, "]+).*$"]), "…
23842 …parts = $rb_plus(basedir.$split($regexp(["[", sep_chars, "]"])), path.$split($regexp(["[", sep_cha…
23843 …leading_sep = windows_root_rx.test(basedir) ? '' : basedir.$sub($regexp(["^([", sep_chars, "]+).*$…
23877 …var self = this, sep = nil, sep_chars = nil, home = nil, leading_sep = nil, home_path_regexp = nil;
23882 sep_chars = $sep_chars();
23889 …leading_sep = windows_root_rx.test(home) ? '' : home.$sub($regexp(["^([", sep_chars, "]+).*$"]), "…
23925 var self = this, sep_chars = nil;
23935 sep_chars = $sep_chars();
23938 var absolute = path.match(new RegExp("^[" + (sep_chars) + "]")), out;
23940 … path = path.replace(new RegExp("[" + (sep_chars) + "]+$"), ''); // remove trailing separators
23941 path = path.replace(new RegExp("[^" + (sep_chars) + "]+$"), ''); // remove trailing basename
23942 …path = path.replace(new RegExp("[" + (sep_chars) + "]+$"), ''); // remove final trailing separators
23961 var sep_chars = nil;
23965 sep_chars = $sep_chars();
23978 name = name.replace(new RegExp("(.)[" + (sep_chars) + "]*$"), '$1');
23979 … name = name.replace(new RegExp("^(?:.*[" + (sep_chars) + "])?([^" + (sep_chars) + "]+)$"), '$1');