Searched defs:delim (Results 1 - 25 of 50) sorted by relevance

12

/external/chromium/net/tools/flip_server/
H A Dsplit.cc16 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) {
15 SplitStringPieceToVector(const base::StringPiece& full, const char* delim, std::vector<base::StringPiece>* vec, bool omit_empty_strings) argument
/external/tcpdump/missing/
H A Dstrsep.c49 * strings separated by characters from delim.
52 * delim need not remain constant from call to call.
59 strsep(char **stringp, const char *delim) argument
70 spanp = delim;
/external/clearsilver/util/
H A Dmissing.c31 char * strtok_r (char *s,const char * delim, char **save_ptr) argument
39 s += strspn (s, delim);
48 s = strpbrk (token, delim);
/external/qemu/android/utils/
H A Dsystem.c100 win32_strsep(char** pline, const char* delim) argument
110 const char* q = delim;
/external/chromium/third_party/icu/source/tools/pkgdata/
H A Dpkgtypes.c27 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quote) argument
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) argument
107 if(l->next && delim)
109 T_FileStream_write(s, delim, (int32_t)uprv_strlen(delim));
/external/icu4c/tools/pkgdata/
H A Dpkgtypes.c27 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quote) argument
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) argument
107 if(l->next && delim)
109 T_FileStream_write(s, delim, (int32_t)uprv_strlen(delim));
/external/nist-sip/java/gov/nist/core/
H A DStringTokenizer.java174 public String getNextToken(char delim) throws ParseException { argument
178 if (la == delim)
/external/iptables/extensions/
H A Dlibip6t_limit.c42 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
[all...]
H A Dlibipt_limit.c42 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
[all...]
H A Dlibip6t_hashlimit.c64 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
[all...]
H A Dlibipt_hashlimit.c64 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
[all...]
/external/oprofile/daemon/
H A Dopd_events.c44 static char * copy_token(char ** c, char delim) argument
53 while (*tmp2 && *tmp2 != delim)
67 static unsigned long copy_ulong(char ** c, char delim) argument
70 char * str = copy_token(c, delim);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dcompat.cpp110 void SplitToVector(char* full, const char* delim, vector<char*>* vec, argument
113 while((next = strsep(&full, delim)) != NULL) {
/external/chromium/third_party/icu/source/test/intltest/
H A Dpunyref.c55 /* delim(cp) tests whether cp is a delimiter: */
56 #define delim(cp) ((cp) == delimiter) macro
236 for (b = j = 0; j < input_length; ++j) if (delim(input[j])) b = j;
/external/e2fsprogs/debugfs/
H A Dset_fields.c188 char *arg, *delim, *idx, *tmp; local
209 delim = idx + strlen(idx) - 1;
210 if (!*idx || *delim != ']')
213 *delim = 0;
/external/icu4c/test/intltest/
H A Dpunyref.c55 /* delim(cp) tests whether cp is a delimiter: */
56 #define delim(cp) ((cp) == delimiter) macro
236 for (b = j = 0; j < input_length; ++j) if (delim(input[j])) b = j;
/external/openssl/crypto/evp/
H A Devp_test.c96 static char *sstrsep(char **string, const char *delim) argument
107 while (*delim)
109 isdelim[(unsigned char)(*delim)] = 1;
110 delim++;
/external/protobuf/src/google/protobuf/stubs/
H A Dstrutil.h168 LIBPROTOBUF_EXPORT void SplitStringUsing(const string& full, const char* delim,
174 // the C-string "delim" as a separator between components. There are two
180 const char* delim, string* result);
183 const char* delim) {
185 JoinStrings(components, delim, &result);
182 JoinStrings(const vector<string>& components, const char* delim) argument
/external/qemu/distrib/sdl-1.2.12/src/cdrom/aix/
H A DSDL_syscdrom.c306 char *cdpath, *delim; local
313 delim = SDL_strchr(SDLcdrom, ':');
314 if ( delim ) {
315 *delim++ = '\0';
323 if ( delim ) {
324 SDLcdrom = delim;
/external/qemu/distrib/sdl-1.2.12/src/cdrom/freebsd/
H A DSDL_syscdrom.c156 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/
H A DSDL_syscdrom.c165 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/osf/
H A DSDL_syscdrom.c176 char *cdpath, *delim; local
183 delim = SDL_strchr(SDLcdrom, ':');
184 if ( delim ) {
185 *delim++ = '\0';
190 if ( delim ) {
191 SDLcdrom = delim;
/external/qemu/distrib/sdl-1.2.12/src/cdrom/qnx/
H A DSDL_syscdrom.c173 char *cdpath, *delim; local
181 delim = SDL_strchr(SDLcdrom, ':');
182 if (delim)
184 *delim++ = '\0';
190 if (delim)
192 SDLcdrom = delim;
/external/chromium/third_party/icu/source/tools/ctestfw/
H A Duperf.cpp17 static const char delim = '/'; variable
284 pos = strchr( name, delim ); // check if name contains path (by looking for '/')
304 *pos = delim; // restore original value at pos
/external/icu4c/tools/ctestfw/
H A Duperf.cpp17 static const char delim = '/'; variable
284 pos = strchr( name, delim ); // check if name contains path (by looking for '/')
304 *pos = delim; // restore original value at pos

Completed in 260 milliseconds

12