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

12 3 4

  /external/chromium/net/http/
http_util.cc 24 static size_t FindStringEnd(const string& line, size_t start, char delim) {
25 DCHECK(start < line.length() && line[start] == delim &&
26 (delim == '"' || delim == '\''));
28 const char set[] = { delim, '\\', '\0' };
  /external/protobuf/src/google/protobuf/stubs/
strutil.h 168 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);
strutil.cc 153 const char* delim,
155 // Optimize the common case where delim is a single character.
156 if (delim[0] != '\0' && delim[1] == '\0') {
157 char c = delim[0];
173 begin_index = full.find_first_not_of(delim);
175 end_index = full.find_first_of(delim, begin_index);
181 begin_index = full.find_first_not_of(delim, end_index);
186 const char* delim,
189 SplitStringToIteratorUsing(full, delim, it)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_upnp.c 337 char *delim; local
361 delim = os_strchr(domain_and_port, '/');
362 if (delim) {
363 *delim++ = 0; /* null terminate domain and port */
364 path = delim;
370 delim = strchr(domain, ':');
371 if (delim) {
372 *delim++ = 0; /* null terminate domain */
373 if (isdigit(*delim))
374 port = atol(delim);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/aix/
SDL_syscdrom.c 306 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/bsdi/
SDL_syscdrom.c 269 char *cdpath, *delim; local
276 delim = SDL_strchr(SDLcdrom, ':');
277 if ( delim ) {
278 *delim++ = '\0';
283 if ( delim ) {
284 SDLcdrom = delim;
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/linux/
SDL_syscdrom.c 285 char *cdpath, *delim; local
292 delim = SDL_strchr(SDLcdrom, ':');
293 if ( delim ) {
294 *delim++ = '\0';
302 if ( delim ) {
303 SDLcdrom = delim;
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/osf/
SDL_syscdrom.c 176 char *cdpath, *delim; local
183 delim = SDL_strchr(SDLcdrom, ':');
184 if ( delim ) {
185 *delim++ = '\0';
190 if ( delim ) {
191 SDLcdrom = delim;
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
shell.js 191 var delim = CHAR_COMMA + CHAR_SPACE;
214 ret += delim;
  /external/openssl/crypto/evp/
evp_test.c 96 static char *sstrsep(char **string, const char *delim)
107 while (*delim)
109 isdelim[(unsigned char)(*delim)] = 1;
110 delim++;
  /device/samsung/crespo/alsa-lib/src/control/
namehint.c 625 const char *hint1 = (const char *)hint, *delim; local
632 delim = strchr(hint1, '|');
634 if (delim == NULL)
636 hint1 = delim + 1;
639 if (delim == NULL)
641 size = delim - hint1 - 4;
  /frameworks/base/libs/camera/
CameraParameters.cpp 268 static int parse_pair(const char *str, int *first, int *second, char delim,
275 if (*end != delim) {
276 LOGE("Cannot find delimeter (%c) in str=%s", delim, str);
  /external/clearsilver/util/
neo_misc.h 70 char * strtok_r (char *s,const char * delim, char **save_ptr);
  /external/qemu/android/utils/
system.h 93 extern char* win32_strsep(char** pline, const char* delim);
  /external/qemu/
qemu-option.h 50 const char *get_opt_name(char *buf, int buf_size, const char *p, char delim);
  /external/sqlite/android/
sqlite3_android.cpp 353 const UChar * delim = (const UChar *)sqlite3_value_text16(argv[3]); local
354 if (delim == NULL) {
410 u_strtok_r(origData, delim, &state);
412 } while ((token = u_strtok_r(NULL, delim, &state)) != NULL);
  /external/chromium/third_party/icu/source/test/intltest/
punyref.c 55 /* 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;
intltest.cpp 164 UnicodeString delim(", ");
167 s.append(delim);
427 static const char delim = '/'; variable
596 pos = strchr( name, delim ); // check if name contains path (by looking for '/')
616 *pos = delim; // restore original value at pos
    [all...]
  /external/icu4c/test/intltest/
punyref.c 55 /* 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/chromium/third_party/icu/source/tools/ctestfw/
uperf.cpp 17 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/
uperf.cpp 17 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/e2fsprogs/debugfs/
set_fields.c 188 char *arg, *delim, *idx, *tmp; local
209 delim = idx + strlen(idx) - 1;
210 if (!*idx || *delim != ']')
213 *delim = 0;
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java 287 * @param delim the delimiter to use
290 public static String join(List<?> things, String delim) {
297 builder.append(delim);
  /external/bluetooth/glib/gobject/
gparam.c 1043 gchar *delim; local
1053 delim = pool->type_prefixing ? strchr (param_name, ':') : NULL;
1056 if (!delim)
1065 if (pool->type_prefixing && delim[1] == ':')
1067 guint l = delim - param_name;
1071 strncpy (buffer, param_name, delim - param_name);
    [all...]
  /external/expat/xmlwf/
xmlwf.c 775 const XML_Char * delim = T("/"); local
779 const XML_Char * lastDelim = tcsrchr(file, delim[0]);
788 delim = winDelim;
796 tcscat(outName, delim);

Completed in 468 milliseconds

12 3 4