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

1 2 3 4 5 6 7 8 9

  /external/toybox/toys/other/
printenv.c 25 char delim = '\n'; local
27 if (toys.optflags) delim = 0;
38 xprintf("%s%c", out, delim);
  /external/libnetfilter_conntrack/src/expect/
snprintf_default.c 47 const char *delim = ""; local
102 delim = ",";
105 ret = snprintf(buf+offset, len, "%sINACTIVE", delim);
107 delim = ",";
110 ret = snprintf(buf+offset, len, "%sUSERSPACE", delim);
  /test/vts-testcase/security/poc/target/
poc_test.cpp 65 size_t delim = key_value.find('='); local
66 if (delim == string::npos) {
71 string key = key_value.substr(0, delim);
72 string value = key_value.substr(delim + 1);
  /external/llvm/lib/Support/
Statistic.cpp 166 const char *delim = ""; local
168 OS << delim; local
174 delim = ",\n";
  /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 != ',')
  /system/update_engine/payload_generator/
mapfile_filesystem.cc 97 size_t delim, last_delim = line.size(); local
98 while ((delim = line.rfind(' ', last_delim - 1)) != string::npos) {
100 line.substr(delim + 1, last_delim - (delim + 1)).as_string();
129 last_delim = delim;
  /external/bison/src/
location.c 221 char *delim = mbsrchr (loc_str, '.'); local
222 aver (delim);
223 *delim = '\0';
224 bound->column = atoi (delim+1);
225 delim = mbsrchr (loc_str, ':');
226 aver (delim);
227 *delim = '\0';
228 bound->line = atoi (delim+1);
  /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...]
libip6t_LOG.c 212 const char *delim = " "; local
217 delim = ",";
220 xt_xlate_add(xl, "%soptions", delim);
libipt_LOG.c 212 const char *delim = " "; local
217 delim = ",";
220 xt_xlate_add(xl, "%soptions", delim);
  /external/iw/
link.c 178 char *delim = ""; local
182 delim = " ";
185 printf("%sshort-preamble", delim);
186 delim = " ";
189 printf("%sshort-slot-time", delim);
  /external/selinux/libsemanage/src/
users_base_file.c 106 char delim; local
119 delim = *(info->ptr);
125 if (delim && !isspace(delim)) {
126 if (islist && delim == '}')
128 else if (!islist && delim == ';')
  /external/swiftshader/third_party/LLVM/lib/Support/
Path.cpp 240 const char* delim = strchr(at, PathSeparator); local
242 while (delim != 0) {
243 std::string tmp(at, size_t(delim-at));
247 at = delim + 1;
248 delim = strchr(at, PathSeparator);
  /hardware/qcom/display/msm8996/libqdutils/
qd_utils.cpp 38 const char *delim = ", =\n"; local
42 tmpToken = strtok_r(input, delim, &tmpPtr);
45 tmpToken = strtok_r(NULL, delim, &tmpPtr);
  /external/guava/guava-tests/benchmark/com/google/common/base/
JoinerBenchmark.java 145 String delim = ""; local
147 sb.append(delim);
149 delim = DELIMITER_STRING;
  /external/icu/icu4c/source/test/intltest/
punyref.c 57 /* delim(cp) tests whether cp is a delimiter: */
58 #define delim(cp) ((cp) == delimiter) macro
238 for (b = j = 0; j < input_length; ++j) if (delim(input[j])) b = j;
  /hardware/qcom/display/msm8998/libqdutils/
qd_utils.cpp 40 const char *delim = ", =\n"; local
44 tmpToken = strtok_r(input, delim, &tmpPtr);
47 tmpToken = strtok_r(NULL, delim, &tmpPtr);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
getpath.c 51 #ifdef DELIM
433 directories separated by the DELIM character.
464 static char delimiter[2] = {DELIM, '\0'};
493 char *delim = strchr(path, DELIM); local
495 if (delim) {
496 size_t len = delim - path;
509 if (!delim) {
513 path = delim + 1;
592 char *delim = strchr(defpath, DELIM); local
637 char *delim = strchr(defpath, DELIM); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
getpath.c 58 #ifdef DELIM
364 directories separated by the DELIM character.
395 static char delimiter[2] = {DELIM, '\0'};
424 char *delim = strchr(path, DELIM); local
426 if (delim) {
427 size_t len = delim - path;
440 if (!delim) {
444 path = delim + 1;
523 char *delim = strchr(defpath, DELIM); local
568 char *delim = strchr(defpath, DELIM); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
getpath.c 269 char *delim; local
271 delim = strchr(prefix, DELIM);
272 if (delim)
273 *delim = '\0';
327 char *delim; local
328 delim = strchr(home, DELIM);
329 if (delim)
330 strncpy(exec_prefix, delim+1, MAXPATHLEN);
423 char *delim = strchr(path, DELIM); local
559 char *delim = strchr(defpath, DELIM); local
604 char *delim = strchr(defpath, DELIM); local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
ConformanceTest.java 457 int delim = s.indexOf(delimiter, pos); local
458 if (delim < 0) {
461 // Our field is from pos..delim-1.
464 String toHex = s.substring(pos,delim);
465 pos = delim;
487 ++pos; // Skip over delim
UnicodeNormalizerConformanceTest.java 209 int delim = s.indexOf(delimiter, pos); local
210 if (delim < 0) {
213 // Our field is from pos..delim-1.
216 String toHex = s.substring(pos,delim);
217 pos = delim;
239 ++pos; // Skip over delim
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
PunycodeReference.java 65 /* delim(cp) tests whether cp is a delimiter: */
66 private static boolean delim(int cp){ method in class:PunycodeReference
318 if (delim(input[j])==true){
  /external/icu/icu4c/source/tools/ctestfw/
uperf.cpp 23 static const char delim = '/'; variable
296 pos = strchr( name, delim ); // check if name contains path (by looking for '/')
316 *pos = delim; // restore original value at pos

Completed in 525 milliseconds

1 2 3 4 5 6 7 8 9