Searched defs:sep (Results 1 - 8 of 8) sorted by relevance

/ndk/sources/cxx-stl/stlport/src/
H A Dnum_get.cpp88 bool _STLP_CALL __get_fdigit_or_sep(wchar_t& c, wchar_t sep, argument
90 if (c == sep) {
/ndk/sources/host-tools/gdb-stub/
H A Dgdb-stub.c82 char *envbuf, *sep, *resbuf, *cmdbuf; local
106 (sep = strrchr(cmdbuf, '\\'))
108 *(sep+1) = 0;
110 dbg_printf("sep: %s\n", cmdbuf);
129 *(sep+1) = 0;
136 *(sep+1) = 0;
/ndk/sources/host-tools/make-3.81/w32/
H A Dpathstuff.c134 char sep; /* what flavor of separator used in old path */ local
187 sep = *etok;
212 *etok = sep;
/ndk/sources/host-tools/make-3.81/
H A Dvmsjobs.c474 char *sep; local
509 p = sep = q = cmd;
527 p = sep = q;
534 sep = q;
538 sep = q;
542 sep = q - 1;
547 if (sep - p > 78)
550 fwrite (p, 1, sep - p, outfile);
551 p = sep;
552 if (*sep)
[all...]
/ndk/sources/host-tools/nawk-20071023/
H A Dlib.c184 int sep, c; local
191 if ((sep = **RS) == 0) {
192 sep = '\n';
199 for (; (c=getc(inf)) != sep && c != EOF; ) {
205 if (**RS == sep || c == EOF)
259 char *r, *fr, sep; local
279 } else if ((sep = *inputFS) == ' ') { /* default whitespace */
298 } else if ((sep = *inputFS) == 0) { /* new: FS="" => 1 char/field */
328 while (*r != sep && *r != rtest && *r != '\0') /* \n is always a separator */
H A Drun.c1213 int sep; local
1229 sep = *fs;
1232 dprintf( ("split: s=|%s|, a=%s, sep=|%s|\n", s, NN(ap->nval), fs) );
1278 } else if (sep == ' ') {
1300 } else if (sep == 0) { /* new: split(s, a, "") => 1 char/elem */
1316 while (*s != sep && *s != '\n' && *s != '\0')
/ndk/sources/host-tools/ndk-stack/regex/
H A Dengine.c303 char *sep; /* end of string matched by subsubRE */ local
389 sep = slow(m, ssp, rest, ssub, esub);
390 if (sep == NULL || sep == ssp)
393 ssp = sep;
395 if (sep == NULL) {
397 sep = ssp;
400 assert(sep == rest); /* must exhaust substring */
401 assert(slow(m, ssp, sep, ssub, esub) == rest);
402 if (dissect(m, ssp, sep, ssu
[all...]
/ndk/sources/host-tools/ndk-depends/
H A Dndk-depends.cc203 size_t sep; local
205 sep = sep_backslash;
207 sep = sep_slash;
209 sep = std::max(sep_slash, sep_backslash);
211 size_t sep = filepath.rfind(_T('/'));
213 return sep;
218 size_t sep = path_last_dirsep(filepath); local
219 if (sep == std::string::npos)
221 else if (sep == 0)
224 return filepath.substr(0, sep);
229 size_t sep = path_last_dirsep(filepath); local
[all...]

Completed in 192 milliseconds