/inferno-os/appl/lib/ |
H A D | url.b | 50 (sch, url) := split(surl, ":"); 85 (up,hp) := split(netloc, "@"); 89 (user, passwd) = split(up, ":"); 90 (host, port) = split(hp, ":"); 106 (path, frag) = split(path, "#"); 107 (path, query) = split(path, "?"); 186 split(s, c: string) : (string, string)
|
H A D | smtp.b | 68 (user, dom) := split(fromwho, '@'); 95 (line, msg) = split(msg, '\n'); # BUG: too much copying for larger messages 212 split(s : string, c : int) : (string, string)
|
H A D | dbm.b | 141 if(!split(db, key, dat)) 150 split(db: ref Dbf, key: Datum, dat: Datum): int 164 sys->fprint(sys->fildes(2), "dbm: split not paired\n"); 165 raise "dbm: split not paired";
|
H A D | tcl_list.b | 35 "split" 70 "split" => 288 return notify(1,"split string ?splitChars?");
|
/inferno-os/utils/mv/ |
H A D | mv.c | 3 void split(char *, char **, char **); 26 split(argv[argc-1], &todir, &toelem); in main() 32 split(argv[argc-1], &todir, &toelem); in main() 61 split(from, &fromdir, &fromelem); in mv() 162 split(char *name, char **pdir, char **pelem) in split() function
|
/inferno-os/appl/charon/ |
H A D | url.b | 67 (up,hp) := split(netloc, "@"); 71 (user, passwd) = split(up, ":"); 72 (host, port) = split(hp, ":"); 82 (path, frag) = split(path, "#"); 83 (path, query) = split(path, "?"); 84 (path, params) = split(path, ";"); 184 split(s, c: string) : (string, string)
|
/inferno-os/utils/mk/ |
H A D | archive.c | 7 static char *split(char*, char**); 16 archive = split(name, &member); in atimeof() 52 archive = split(name, &member); in atouch() 150 split(char *name, char **member) in split() function
|
H A D | archive-AIX.c | 7 static char *split(char*, char**); 16 archive = split(name, &member); in atimeof() 50 archive = split(name, &member); in atouch() 184 split(char *name, char **member) in split() function
|
/inferno-os/appl/cmd/ |
H A D | mv.b | 46 (todir,toelem)=split(arr[len arr-1]); 52 (todir,toelem)=split(arr[len arr-1]); 72 (fromdir,fromelem):=split(from); 152 split(name : string): (string,string)
|
H A D | archfs.b | 387 split(p: string): (string, string) 390 fatal("nil string in split"); 392 fatal("p0 not / in split"); 484 (elem, path) = split(path);
|
H A D | tarfs.b | 226 split(s: string): (string, string) 242 (d, rest) := split(n);
|
/inferno-os/module/ |
H A D | string.m | 9 # splitl splits just before first char in class; (s, "") if no split 10 # splitr splits just after last char in class; ("", s) if no split
|
H A D | lists.m | 27 #split
|
/inferno-os/appl/cmd/install/ |
H A D | ckproto.b | 141 (elem, path) = split(path); 208 split(p : string) : (string, string) 211 fatal("nil string in split"); 213 fatal("p0 notg / in split");
|
H A D | archfs.b | 389 split(p : string) : (string, string) 392 fatal("nil string in split", 1); 394 fatal("p0 not / in split", 1); 488 (elem, path) = split(path);
|
/inferno-os/dis/demo/cpupool/ |
H A D | runrstyx | 7 parts=${split / $d}
|
/inferno-os/appl/demo/cpupool/ |
H A D | runrstyx.sh | 7 parts=${split / $d}
|
/inferno-os/utils/awk/ |
H A D | proctab.c | 183 split, /* SPLIT */
|
H A D | proto.h | 175 extern Cell *split(Node **, int);
|
H A D | FIXES | 157 could split $0 on every character, a misleading diversion. 259 split using the value of FS at the time of input; it used to be 293 enhanced split(), as in gawk, etc: split(s, a, "") splits s into
|
/inferno-os/libtk/ |
H A D | tmark.c | 134 int deleted, split; in tktmarkmove() local 176 split = (ixnew->pos > 0); in tktmarkmove() 185 if(strcmp(m->name, "insert") == 0 || split) { in tktmarkmove()
|
/inferno-os/appl/spree/other/ |
H A D | tstlines.sh | 21 args:=${split ${recv show}}
|
/inferno-os/emu/port/ |
H A D | mkroot | 53 ncomp = split(dst[i], comp, "/");
|
/inferno-os/os/port/ |
H A D | mkroot | 51 ncomp = split(dst[i], comp, "/");
|
/inferno-os/appl/cmd/sh/ |
H A D | std.b | 23 "hd", "tl", "index", "split", "join", "pid", "parse", "env", "pipe", 131 "split" => 214 # usage: split [separators] value 219 builtinusage(ctxt, "split [separators] value"); 224 ctxt.fail("usage", "split: $ifs not set");
|