HomeSort by relevance Sort by last modified time
    Searched defs:sep (Results 126 - 150 of 349) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/fio/engines/
rdma.c 1055 char *sep, *portp, *modep; local
1072 sep = strchr(buf, '/');
1073 if (!sep)
1076 *sep = '\0';
1077 sep++;
1083 portp = sep;
1084 sep = strchr(portp, '/');
1085 if (sep) {
1086 *sep = '\0';
1087 modep = sep + 1
    [all...]
  /external/icu/icu4c/source/i18n/
locdspnm.cpp 396 UnicodeString sep; local
397 langData.getNoFallback("localeDisplayPattern", "separator", sep);
398 if (sep.isBogus()) {
399 sep = UnicodeString("{0}, {1}", -1, US_INV);
402 separatorFormat = new MessageFormat(sep, status);
    [all...]
tzfmt.cpp 373 UChar *sep = u_strchr(hourFormats, (UChar)0x003B /* ';' */); local
374 if (sep != NULL) {
376 fGMTOffsetPatterns[UTZFMT_PAT_POSITIVE_HM].setTo(FALSE, hourFormats, (int32_t)(sep - hourFormats));
377 fGMTOffsetPatterns[UTZFMT_PAT_NEGATIVE_HM].setTo(TRUE, sep + 1, -1);
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
package.cpp 282 char *sep; local
289 sep=strchr(filename, 0)-strlen(name);
290 while((sep=strchr(sep, U_FILE_SEP_CHAR))!=NULL) {
291 if(sep!=filename) {
292 *sep=0; // truncate temporarily
299 *sep++=U_FILE_SEP_CHAR; // restore file separator character
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timezone/
ICUZDump.java 39 String sep = System.getProperty("line.separator"); typedefs
40 DEFAULT_LINE_SEP = (sep == null) ? "\n" : sep;
77 public void setLineSeparator(String sep) {
78 this.linesep = sep;
230 * java -cp icu4j.jar com.ibm.icu.dev.tool.timezone [-j] [-a] [-c[<low_year>,]<high_year>] [-d<dir>] [-l<sep>] [<zone_name> [<zone_name>]]
239 * -l<sep> : New line code type CR/LF/CRLF.
  /external/iproute2/lib/
utils.c 886 char *sep = ":"; local
892 sep = "";
894 ret = snprintf(&buff[written], len - written, "%x%s", v, sep);
  /external/iptables/extensions/
libxt_conntrack.c 580 const char *sep = " "; local
583 printf("%sINVALID", sep);
584 sep = ",";
587 printf("%sNEW", sep);
588 sep = ",";
591 printf("%sRELATED", sep);
592 sep = ",";
595 printf("%sESTABLISHED", sep);
596 sep = ",";
599 printf("%sUNTRACKED", sep);
615 const char *sep = " "; local
1116 const char *sep = ""; local
    [all...]
  /external/iptables/libxtables/
xtoptions.c 292 char sep = ':'; local
307 if (*arg == '\0' || *arg == sep) {
317 if (*end != '\0' && *end != sep)
    [all...]