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

1 2 3 4 5 6 7 8 91011>>

  /external/syslinux/com32/lib/
strtok.c 7 char *strtok(char *s, const char *delim)
14 return strsep(&holder, delim);
strsep.c 7 char *strsep(char **stringp, const char *delim)
15 e = strpbrk(s, delim);
  /external/libcups/cups/
array-private.h 39 char delim) _CUPS_API_1_5;
40 extern cups_array_t *_cupsArrayNewStrings(const char *s, char delim)
  /external/toybox/toys/other/
printenv.c 25 char delim = '\n'; local
27 if (toys.optflags) delim = 0;
38 xprintf("%s%c", out, delim);
  /external/curl/lib/
strtok.h 28 char *Curl_strtok_r(char *s, const char *delim, char **last);
  /external/libtextclassifier/util/strings/
split.h 28 std::vector<StringPiece> Split(const StringPiece &text, char delim);
split.cc 22 std::vector<StringPiece> Split(const StringPiece &text, char delim) {
27 if ((i == text.size()) || (text[i] == delim)) {
  /external/fio/oslib/
strsep.c 3 char *strsep(char **stringp, const char *delim)
16 spanp = delim;
  /bionic/libc/upstream-openbsd/lib/libc/string/
strtok.c 33 strtok(char *s, const char *delim)
37 return strtok_r(s, delim, &last);
42 strtok_r(char *s, const char *delim, char **last)
52 * Skip (span) leading delimiters (s += strspn(s, delim), sort of).
56 for (spanp = 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 = delim;
strsep.c 36 * strings separated by characters from delim.
39 * delim need not remain constant from call to call.
46 strsep(char **stringp, const char *delim)
57 spanp = delim;
  /external/iproute2/lib/
fs.c 104 char *dir, *delim; local
107 delim = dir = strdup(path);
114 if (*delim == '/')
115 delim++;
118 delim = strchr(delim, '/');
119 if (delim)
120 *delim = '\0';
129 if (delim == NULL)
132 *delim = '/'
    [all...]
  /external/libpcap/missing/
strtok_r.c 44 pcap_strtok_r(char *s, const char *delim, char **last)
53 * Skip (span) leading delimiters (s += strspn(s, delim), sort of).
57 for (spanp = (char *)delim; (sc = *spanp++) != 0;) {
69 * Scan token (scan for delimiters: s += strcspn(s, delim), sort of).
70 * Note that delim must have one NUL; we stop if we see that, too.
74 spanp = (char *)delim;
  /device/linaro/bootloader/edk2/StdLib/LibC/String/
strsep.c 45 * strings separated by characters from delim.
48 * delim need not remain constant from call to call.
57 register const char *delim
69 spanp = delim;
  /external/tcpdump/missing/
strsep.c 46 * strings separated by characters from delim.
49 * delim need not remain constant from call to call.
56 strsep(char **stringp, const char *delim)
67 spanp = delim;
  /external/icu/android_icu4j/src/main/java/android/icu/util/
StringTokenizer.java 105 * characters in the delim argument are the delimiters for separating
112 * @param delim the delimiters.
117 public StringTokenizer(String str, UnicodeSet delim, boolean returndelims)
119 this(str, delim, returndelims, false);
124 * characters in the delim argument are the delimiters for separating
134 * @param delim the delimiters.
145 public StringTokenizer(String str, UnicodeSet delim, boolean returndelims, boolean coalescedelims)
149 if (delim == null) {
153 m_delimiters_ = delim;
173 * characters in the delim argument are the delimiters for separating
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
StringTokenizer.java 104 * characters in the delim argument are the delimiters for separating
111 * @param delim the delimiters.
117 public StringTokenizer(String str, UnicodeSet delim, boolean returndelims)
119 this(str, delim, returndelims, false);
124 * characters in the delim argument are the delimiters for separating
134 * @param delim the delimiters.
145 public StringTokenizer(String str, UnicodeSet delim, boolean returndelims, boolean coalescedelims)
149 if (delim == null) {
153 m_delimiters_ = delim;
173 * characters in the delim argument are the delimiters for separating
    [all...]
  /external/jline/src/src/main/java/jline/
ArgumentCompletor.java 57 final ArgumentDelimiter delim; field in class:ArgumentCompletor
97 * @param delim the delimiter for parsing arguments
100 final ArgumentDelimiter delim) {
103 }, delim);
111 * @param delim the delimiter for parsing arguments
114 final ArgumentDelimiter delim) {
116 this.delim = delim;
137 ArgumentList list = delim.delimit(buffer, cursor);
191 if ((cursor != buffer.length()) && delim.isDelimiter(buffer, cursor))
    [all...]
  /bionic/libc/upstream-freebsd/lib/libc/string/
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/iptables/extensions/
libebt_limit.c 52 const char *delim; local
56 delim = strchr(rate, '/');
57 if (delim) {
58 if (strlen(delim+1) == 0)
61 if (strncasecmp(delim+1, "second", strlen(delim+1)) == 0)
63 else if (strncasecmp(delim+1, "minute", strlen(delim+1)) == 0)
65 else if (strncasecmp(delim+1, "hour", strlen(delim+1)) == 0
    [all...]
libxt_limit.c 46 const char *delim; local
50 delim = strchr(rate, '/');
51 if (delim) {
52 if (strlen(delim+1) == 0)
55 if (strncasecmp(delim+1, "second", strlen(delim+1)) == 0)
57 else if (strncasecmp(delim+1, "minute", strlen(delim+1)) == 0)
59 else if (strncasecmp(delim+1, "hour", strlen(delim+1)) == 0
    [all...]
  /external/selinux/libsepol/include/sepol/policydb/
util.h 41 extern int tokenize(char *line_buf, char delim, int num_args, ...);
  /system/core/logcat/
logcat_system.cpp 28 static std::string unquote(const char*& cp, const char*& delim) {
33 delim = strchr(cp, quote);
34 if (!delim) delim = cp + strlen(cp);
35 std::string str(cp, delim);
36 if (*delim) ++delim;
39 delim = strpbrk(cp, " \t\f\r\n");
40 if (!delim) delim = cp + strlen(cp)
    [all...]
  /external/selinux/mcstrans/src/
mls_level.c 7 char delim; local
22 delim = *p;
23 if (delim != 0)
30 if (delim == ':') {
36 delim = *p;
37 if (delim != 0)
65 if (delim != ',')
  /external/libcxx/test/std/strings/string.view/string.view.nonmem/
quoted.pass.cpp 58 void round_trip_d ( const char *p, char delim ) {
62 ss << std::quoted(sv, delim);
64 ss >> std::quoted(s, delim);
80 std::string quote ( const char *p, char delim='"', char escape='\\' ) {
82 ss << std::quoted(p, delim, escape);
88 std::string unquote ( const char *p, char delim='"', char escape='\\' ) {
92 ss >> std::quoted(s, delim, escape);
123 void round_trip_d ( const wchar_t *p, wchar_t delim ) {
127 ss << std::quoted(sv, delim);
129 ss >> std::quoted(s, delim);
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/string.view/string.view.nonmem/
quoted.pass.cpp 58 void round_trip_d ( const char *p, char delim ) {
62 ss << std::quoted(sv, delim);
64 ss >> std::quoted(s, delim);
80 std::string quote ( const char *p, char delim='"', char escape='\\' ) {
82 ss << std::quoted(p, delim, escape);
88 std::string unquote ( const char *p, char delim='"', char escape='\\' ) {
92 ss >> std::quoted(s, delim, escape);
123 void round_trip_d ( const wchar_t *p, wchar_t delim ) {
127 ss << std::quoted(sv, delim);
129 ss >> std::quoted(s, delim);
    [all...]

Completed in 364 milliseconds

1 2 3 4 5 6 7 8 91011>>