HomeSort by relevance Sort by last modified time
    Searched refs:delim (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /bionic/libc/string/
strtok.c 33 strtok(char *s, const char *delim)
37 return strtok_r(s, delim, &last);
41 strtok_r(char *s, const char *delim, char **last)
52 * Skip (span) leading delimiters (s += strspn(s, delim), sort of).
56 for (spanp = (char *)delim; (sc = *spanp++) != 0;) {
68 * Scan token (scan for delimiters: s += strcspn(s, delim), sort of).
69 * Note that delim must have one NUL; we stop if we see that, too.
73 spanp = (char *)delim;
strsep.c 37 * strings separated by characters from delim.
40 * delim need not remain constant from call to call.
47 strsep(char **stringp, const char *delim)
58 spanp = delim;
  /external/chromium/net/tools/flip_server/
split.h 16 const char* delim,
split.cc 16 const char* delim,
20 if (full.size() == 0 || delim[0] == '\0')
23 if (delim[1] == '\0') {
27 if (*e == delim[0]) {
46 for (const char *d = delim; *d != '\0'; ++d) {
  /external/tcpdump/missing/
strsep.c 49 * strings separated by characters from delim.
52 * delim need not remain constant from call to call.
59 strsep(char **stringp, const char *delim)
70 spanp = delim;
  /bionic/libc/wchar/
wcstok.c 41 wcstok(wchar_t * __restrict s, const wchar_t * __restrict delim,
52 * Skip (span) leading delimiters (s += wcsspn(s, delim), sort of).
56 for (spanp = delim; (sc = *spanp++) != L'\0';) {
68 * Scan token (scan for delimiters: s += wcscspn(s, delim), sort of).
69 * Note that delim must have one NUL; we stop if we see that, too.
73 spanp = delim;
  /external/clearsilver/util/
missing.c 20 /* Parse S into tokens separated by characters in DELIM.
31 char * strtok_r (char *s,const char * delim, char **save_ptr)
39 s += strspn (s, delim);
48 s = strpbrk (token, delim);
  /external/iptables/extensions/
libip6t_limit.c 42 const char *delim; local
46 delim = strchr(rate, '/');
47 if (delim) {
48 if (strlen(delim+1) == 0)
51 if (strncasecmp(delim+1, "second", strlen(delim+1)) == 0)
53 else if (strncasecmp(delim+1, "minute", strlen(delim+1)) == 0)
55 else if (strncasecmp(delim+1, "hour", strlen(delim+1)) == 0
    [all...]
libipt_limit.c 42 const char *delim; local
46 delim = strchr(rate, '/');
47 if (delim) {
48 if (strlen(delim+1) == 0)
51 if (strncasecmp(delim+1, "second", strlen(delim+1)) == 0)
53 else if (strncasecmp(delim+1, "minute", strlen(delim+1)) == 0)
55 else if (strncasecmp(delim+1, "hour", strlen(delim+1)) == 0
    [all...]
libip6t_hashlimit.c 64 const char *delim; local
68 delim = strchr(rate, '/');
69 if (delim) {
70 if (strlen(delim+1) == 0)
73 if (strncasecmp(delim+1, "second", strlen(delim+1)) == 0)
75 else if (strncasecmp(delim+1, "minute", strlen(delim+1)) == 0)
77 else if (strncasecmp(delim+1, "hour", strlen(delim+1)) == 0
    [all...]
libipt_hashlimit.c 64 const char *delim; local
68 delim = strchr(rate, '/');
69 if (delim) {
70 if (strlen(delim+1) == 0)
73 if (strncasecmp(delim+1, "second", strlen(delim+1)) == 0)
75 else if (strncasecmp(delim+1, "minute", strlen(delim+1)) == 0)
77 else if (strncasecmp(delim+1, "hour", strlen(delim+1)) == 0
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Expressions/
shell.js 74 var delim = CHAR_COMMA + CHAR_SPACE;
97 ret += delim;
  /external/chromium/third_party/icu/source/tools/pkgdata/
pkgtypes.c 27 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quote)
59 if(l->next && delim)
65 T_FileStream_write(s, delim, (int32_t)uprv_strlen(delim));
73 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quote)
107 if(l->next && delim)
109 T_FileStream_write(s, delim, (int32_t)uprv_strlen(delim));
pkgtypes.h 37 * write CharList 'l' into stream 's' using deliminter 'delim' (delim can be NULL). quoted: -1 remove, 0 as is, 1 add quotes
39 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quoted);
44 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quoted);
  /external/icu4c/tools/pkgdata/
pkgtypes.c 27 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quote)
59 if(l->next && delim)
65 T_FileStream_write(s, delim, (int32_t)uprv_strlen(delim));
73 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quote)
107 if(l->next && delim)
109 T_FileStream_write(s, delim, (int32_t)uprv_strlen(delim));
pkgtypes.h 37 * write CharList 'l' into stream 's' using deliminter 'delim' (delim can be NULL). quoted: -1 remove, 0 as is, 1 add quotes
39 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quoted);
44 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quoted);
  /external/oprofile/daemon/
opd_events.c 44 static char * copy_token(char ** c, char delim)
53 while (*tmp2 && *tmp2 != delim)
67 static unsigned long copy_ulong(char ** c, char delim)
70 char * str = copy_token(c, delim);
  /external/qemu/android/utils/
system.c 100 win32_strsep(char** pline, const char* delim)
110 const char* q = delim;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
AbstractPropertiesFieldsPart.java 146 String delim = null; local
148 delim = numLines > 0 ? doc.getLineDelimiter(0) : null;
152 if (delim == null || delim.length() == 0) {
153 delim = SdkConstants.CURRENT_PLATFORM == SdkConstants.PLATFORM_WINDOWS ?
216 line = delim + line;
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/beos/
SDL_syscdrom.cc 171 char *cdpath, *delim; local
178 delim = SDL_strchr(SDLcdrom, ':');
179 if ( delim ) {
180 *delim++ = '\0';
185 if ( delim ) {
186 SDLcdrom = delim;
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/freebsd/
SDL_syscdrom.c 156 char *cdpath, *delim; local
163 delim = SDL_strchr(SDLcdrom, ':');
164 if ( delim ) {
165 *delim++ = '\0';
170 if ( delim ) {
171 SDLcdrom = delim;
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/openbsd/
SDL_syscdrom.c 165 char *cdpath, *delim; local
172 delim = SDL_strchr(SDLcdrom, ':');
173 if ( delim ) {
174 *delim++ = '\0';
179 if ( delim ) {
180 SDLcdrom = delim;
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/qnx/
SDL_syscdrom.c 173 char *cdpath, *delim; local
181 delim = SDL_strchr(SDLcdrom, ':');
182 if (delim)
184 *delim++ = '\0';
190 if (delim)
192 SDLcdrom = delim;
  /external/nist-sip/java/gov/nist/core/
StringTokenizer.java 174 public String getNextToken(char delim) throws ParseException {
178 if (la == delim)
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
compat.cpp 110 void SplitToVector(char* full, const char* delim, vector<char*>* vec,
113 while((next = strsep(&full, delim)) != NULL) {

Completed in 473 milliseconds

1 2 3 4