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

1 2 3 4 56 7 8 91011

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
string2.h     [all...]
  /system/core/sh/
eval.c 763 char sep = 0; local
766 if (sep != 0)
767 outc(sep, &errout);
769 sep = ' ';
772 if (sep != 0)
773 outc(sep, &errout);
775 sep = ' ';
expand.c 828 char sep; local
880 sep = ifsval()[0];
882 sep = ' ';
885 if (*ap && sep)
886 STPUTC(sep, expdest);
  /external/icu4c/i18n/
tzfmt.cpp 304 UChar *sep = u_strchr(hourFormats, (UChar)0x003B /* ';' */); local
305 if (sep != NULL) {
306 fGMTOffsetPatterns[UTZFMT_PAT_POSITIVE_HM].setTo(FALSE, hourFormats, (int32_t)(sep - hourFormats));
307 fGMTOffsetPatterns[UTZFMT_PAT_NEGATIVE_HM].setTo(TRUE, sep + 1, -1);
    [all...]
locdspnm.cpp 276 UnicodeString sep; member in class:LocaleDisplayNamesImpl
378 langData.getNoFallback("localeDisplayPattern", "separator", sep);
379 if (sep.isBogus()) {
380 sep = UnicodeString(", ", -1, US_INV);
645 buffer.append(sep);
    [all...]
  /external/tcpdump/
print-ip.c 201 const char *sep = ""; local
206 printf("%s", sep);
207 sep = ",";
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 321 const char* nl, const char *sep);
572 const char* nl, const char *sep) {
577 Out << nl << sep << "Ranges are empty." << nl;
581 Out << nl << sep << "Ranges of symbol values:"; local
  /external/skia/tools/
download_baselines.py 211 baseline_subdirs.append(arg.rstrip(os.sep))
  /external/v8/test/mozilla/
testcfg.py 106 root_path = root[len(self.root):].split(os.path.sep)
  /external/v8/test/test262/
testcfg.py 90 root_path = root[len(self.root):].split(os.path.sep)
  /sdk/eclipse/scripts/
collect_sources_for_sdk.py 117 pkg = pkg.replace(".", os.path.sep) # e.g. android.view => android/view
  /external/wpa_supplicant_8/wpa_supplicant/
interworking.c 668 const char *sep, *msin; local
683 sep = os_strchr(imsi, '-');
684 if (sep) {
685 plmn_len = sep - imsi;
686 msin = sep + 1;
1339 char *sep; local
1356 sep = os_strchr(cred->imsi, '-');
1357 if (sep == NULL ||
1358 (sep - cred->imsi != 5 && sep - cred->imsi != 6)
    [all...]
  /external/icu4c/tools/tzcode/
icuzdump.cpp 123 void setLineSeparator(const char* sep) {
124 linesep = sep;
311 << "\t-l <sep> : New line code type used in file outputs. CR or LF (default)"
  /external/llvm/utils/lit/lit/
TestFormats.py 182 if suffix.startswith(os.sep):
185 path_in_suite + tuple(suffix.split(os.sep)),
  /external/nist-sip/java/gov/nist/core/
GenericObjectList.java 381 * @param sep
384 public void setSeparator(String sep) {
385 separator = sep;
  /external/openssl/crypto/evp/
evp_test.c 127 static unsigned char *ustrsep(char **p,const char *sep)
128 { return (unsigned char *)sstrsep(p,sep); }