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

1 2 3 45 6 7 8 91011>>

  /system/core/logd/
main.cpp 152 static const char sep[] = ",:;|+ \t\f"; local
153 if ((cp != prop) && !strchr(sep, cp[-1])) {
157 return !*cp || !!strchr(sep, *cp);
  /bionic/libc/upstream-netbsd/lib/libc/regex/
engine.c 370 const char *sep; /* end of string matched by subsubRE */ local
467 sep = slow(m, ssp, rest, ssub, esub);
468 if (sep == NULL || sep == ssp)
471 ssp = sep;
473 if (sep == NULL) {
475 sep = ssp;
478 assert(sep == rest); /* must exhaust substring */
479 assert(slow(m, ssp, sep, ssub, esub) == rest);
485 dissect(m, ssp, sep, ssub, esub)
    [all...]
  /device/asus/fugu/recovery/
fw_version_check.cpp 96 const char *sep = " "; local
113 p = strtok_r(buf, sep, &save);
120 p = strtok_r(NULL, sep, &save);
  /external/chromium-trace/catapult/third_party/typ/typ/
host.py 39 sep = os.sep variable in class:Host
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 340 const char* nl, const char *sep) override;
682 const char* nl, const char *sep) {
687 Out << nl << sep << "Ranges are empty." << nl;
691 Out << nl << sep << "Ranges of symbol values:"; local
  /external/curl/lib/
cookie.c 419 bool sep; local
428 sep = (*endofn == '=')?TRUE:FALSE;
449 else if(sep)
    [all...]
transfer.c 1557 char *sep = strchr(protsep, '?'); local
    [all...]
x509asn1.c 445 const char * sep = ""; local
489 sep = " ";
498 sep, tzl, tzp);
    [all...]
  /external/curl/src/
tool_operate.c 755 char sep = '?'; local
769 sep='&';
775 urlbuffer = aprintf("%s%c%s", this_url, sep, httpgetfields);
    [all...]
  /external/dbus/dbus/
dbus-sysdeps-util-unix.c 1029 int sep; local
1036 sep = _dbus_string_get_length (filename);
1037 if (sep == 0)
1040 while (sep > 0 && _dbus_string_get_byte (filename, sep - 1) == '/')
1041 --sep;
1043 _dbus_assert (sep >= 0);
1045 if (sep == 0)
1049 _dbus_string_find_byte_backward (filename, sep, '/', &sep);
    [all...]
dbus-sysdeps-util-win.c 702 int sep; local
709 sep = _dbus_string_get_length (filename);
710 if (sep == 0)
713 while (sep > 0 &&
714 (_dbus_string_get_byte (filename, sep - 1) == '/' ||
715 _dbus_string_get_byte (filename, sep - 1) == '\\'))
716 --sep;
718 _dbus_assert (sep >= 0);
720 if (sep == 0 ||
721 (sep == 2 &
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
TransliteratorIDParser.java 471 int sep = id.indexOf(TARGET_SEP); local
478 if (sep < 0) {
482 } else if (sep < var) {
484 if (sep > 0) {
485 source = id.substring(0, sep);
488 target = id.substring(++sep, var);
496 variant = id.substring(var, sep++);
497 target = id.substring(sep);
  /external/icu/icu4c/source/i18n/
tridpars.cpp 557 int32_t sep = id.indexOf(TARGET_SEP); local
564 if (sep < 0) {
568 } else if (sep < var) {
570 if (sep > 0) {
571 id.extractBetween(0, sep, source);
574 id.extractBetween(++sep, var, target);
582 id.extractBetween(var, sep++, variant);
583 id.extractBetween(sep, id.length(), target);
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TransliteratorIDParser.java 470 int sep = id.indexOf(TARGET_SEP); local
477 if (sep < 0) {
481 } else if (sep < var) {
483 if (sep > 0) {
484 source = id.substring(0, sep);
487 target = id.substring(++sep, var);
495 variant = id.substring(var, sep++);
496 target = id.substring(sep);
  /external/sl4a/Common/src/org/apache/commons/codec/binary/
Base64Codec.java 335 String sep = StringUtils.newStringUtf8(lineSeparator); local
336 throw new IllegalArgumentException("lineSeperator must not contain base64 characters: [" + sep + "]");
    [all...]
  /libcore/ojluni/src/main/java/java/io/
UnixFileSystem.java 201 char sep = File.separatorChar; local
213 } else if (c == sep) {
220 path.charAt(idx - 1) == sep) {
  /ndk/sources/host-tools/nawk-20071023/
lib.c 184 int sep, c; local
191 if ((sep = **RS) == 0) {
192 sep = '\n';
199 for (; (c=getc(inf)) != sep && c != EOF; ) {
205 if (**RS == sep || c == EOF)
259 char *r, *fr, sep; local
279 } else if ((sep = *inputFS) == ' ') { /* default whitespace */
298 } else if ((sep = *inputFS) == 0) { /* new: FS="" => 1 char/field */
328 while (*r != sep && *r != rtest && *r != '\0') /* \n is always a separator */
  /ndk/sources/host-tools/ndk-stack/regex/
engine.c 303 char *sep; /* end of string matched by subsubRE */ local
389 sep = slow(m, ssp, rest, ssub, esub);
390 if (sep == NULL || sep == ssp)
393 ssp = sep;
395 if (sep == NULL) {
397 sep = ssp;
400 assert(sep == rest); /* must exhaust substring */
401 assert(slow(m, ssp, sep, ssub, esub) == rest);
402 if (dissect(m, ssp, sep, ssub, esub) != sep)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
os.py 9 - os.sep is the (or a most common) pathname separator ('/' or ':' or '\\')
31 __all__ = ["altsep", "curdir", "pardir", "sep", "extsep", "pathsep", "linesep",
120 from os.path import (curdir, pardir, sep, pathsep, defpath, extsep, altsep, namespace
  /prebuilts/gdb/linux-x86/lib/python2.7/
os.py 9 - os.sep is the (or a most common) pathname separator ('/' or ':' or '\\')
31 __all__ = ["altsep", "curdir", "pardir", "sep", "extsep", "pathsep", "linesep",
120 from os.path import (curdir, pardir, sep, pathsep, defpath, extsep, altsep, namespace
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
os.py 9 - os.sep is the (or a most common) pathname separator ('/' or ':' or '\\')
31 __all__ = ["altsep", "curdir", "pardir", "sep", "extsep", "pathsep", "linesep",
120 from os.path import (curdir, pardir, sep, pathsep, defpath, extsep, altsep, namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
os.py 9 - os.sep is the (or a most common) pathname separator ('/' or ':' or '\\')
31 __all__ = ["altsep", "curdir", "pardir", "sep", "extsep", "pathsep", "linesep",
120 from os.path import (curdir, pardir, sep, pathsep, defpath, extsep, altsep, namespace
  /prebuilts/tools/common/m2/repository/com/android/tools/external/ant-glob/1.0/
ant-glob-1.0.jar 
  /build/kati/
parser.cc 186 size_t sep = FindThreeOutsideParen(line, ':', '=', ';'); local
187 if (sep == string::npos || line[sep] == ';') {
189 } else if (line[sep] == '=') {
190 ParseAssign(line, sep);
191 } else if (line.get(sep+1) == '=') {
192 ParseAssign(line, sep+1);
193 } else if (line[sep] == ':') {
194 ParseRule(line, sep);
200 void ParseRule(StringPiece line, size_t sep) {
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/testing/
system_stub.py 382 sep = os.sep variable in class:OsModuleStub

Completed in 2783 milliseconds

1 2 3 45 6 7 8 91011>>