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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
execfile.py 17 def rsplit1(s, sep):
18 """The same as s.rsplit(sep, 1), but works in 2.3"""
19 parts = s.split(sep)
20 return sep.join(parts[:-1]), parts[-1]
  /external/chromium_org/third_party/re2/re2/testing/
dump.cc 134 string sep; local
138 s->append(sep);
143 sep = " ";
regexp_generator.h 64 // Splits string everywhere sep is found, returning
66 vector<string> Split(const StringPiece& sep, const StringPiece& s);
regexp_generator.cc 244 vector<string> Split(const StringPiece& sep, const StringPiece& s) {
247 if (sep.size() == 0)
251 for (const char *q = s.begin(); q + sep.size() <= s.end(); q++) {
252 if (StringPiece(q, sep.size()) == sep) {
254 p = q + sep.size();
  /external/regex-re2/re2/testing/
dump.cc 134 string sep; local
138 s->append(sep);
143 sep = " ";
regexp_generator.h 64 // Splits string everywhere sep is found, returning
66 vector<string> Split(const StringPiece& sep, const StringPiece& s);
regexp_generator.cc 244 vector<string> Split(const StringPiece& sep, const StringPiece& s) {
247 if (sep.size() == 0)
251 for (const char *q = s.begin(); q + sep.size() <= s.end(); q++) {
252 if (StringPiece(q, sep.size()) == sep) {
254 p = q + sep.size();
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
malloc-tree 85 sep = line.find('|')
86 if sep < 0:
90 childName = line[:sep].strip()
91 line = line[sep+1:]
  /external/chromium_org/tools/swig/
swig.py 40 args = [x.replace('/', os.sep) for x in args]
  /external/qemu/android/utils/
bufprint.c 139 char* sep; local
151 sep = strrchr(appDir, '\\');
152 if (sep)
153 *sep = 0;
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_getenv.c 43 const char *sep; local
45 sep = SDL_strchr(variable, '=');
46 if ( sep == NULL ) {
59 value = SDL_envmem + (sep - variable);
  /system/core/adb/
adb_auth_client.c 57 char *sep; local
74 sep = strpbrk(buf, " \t");
75 if (sep)
76 *sep = '\0';
  /external/iptables/extensions/
libxt_set.c 450 const char *sep)
454 printf(" %s%s-eq %llu", sep, name, c->value);
457 printf(" ! %s%s-eq %llu", sep, name, c->value);
460 printf(" %s%s-lt %llu", sep, name, c->value);
463 printf(" %s%s-gt %llu", sep, name, c->value);
470 const char *opt, const char *sep)
474 printf(" %sreturn-nomatch", sep);
476 printf(" ! %supdate-counters", sep);
478 printf(" ! %supdate-subcounters", sep);
479 set_printv3_counter(&info->packets, "packets", sep);
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
getdelim.c 46 int sep, FILE *__restrict fp)
75 p = memchr(fp->_p, sep, (size_t)fp->_r);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
systemhost_mock.py 59 sep = kwargs.get('sep', ' ')
65 file.write(sep.join([str(arg) for arg in args]) + end)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
genericpath.py 85 def _splitext(p, sep, altsep, extsep):
91 sepIndex = p.rfind(sep)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_imgfile.py 36 parts = ourname.split(os.sep)
38 name = os.sep.join(parts)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
genericpath.py 85 def _splitext(p, sep, altsep, extsep):
91 sepIndex = p.rfind(sep)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_imgfile.py 36 parts = ourname.split(os.sep)
38 name = os.sep.join(parts)
  /external/chromium_org/chrome/common/extensions/
PRESUBMIT.py 38 os.path.join(path, filename)[len(LOCAL_PUBLIC_TEMPLATES_PATH + os.sep):]
52 if unix_name == _UnixName(template.split(os.sep)[-1]):
63 if not api_path.endswith(os.sep):
64 api_path += os.sep
65 filename = os.path.splitext(name)[0][len(api_path):].replace(os.sep, '_')
81 args.extend(_FindMatchingTemplates(name.split(os.sep)[-1],
  /external/e2fsprogs/misc/
logsave.c 120 char buffer[4096], *cp, *sep; local
138 sep = strchr(cp, '\001');
139 if (sep)
140 *sep = 0;
142 if (sep) {
143 cp = sep + 1;
  /external/tcpdump/
print-sctp.c 99 const char *sep; local
158 sep = "\n\t";
160 sep = " (";
179 printf("%s%d) [Bad chunk length %u]", sep, chunkCount+1, chunkLength);
192 printf("%s%d) ", sep, chunkCount+1);
393 sep = ", (";
  /external/chromium_org/chrome/browser/resources/cryptotoken/
util.js 38 function UTIL_BytesToHexWithSeparator(b, sep) {
40 var stride = 2 + (sep ? 1 : 0);
44 if (sep) hexrep[i * stride + 0] = sep;
48 return (sep ? hexrep.slice(1) : hexrep).join('');
  /external/chromium_org/third_party/skia/third_party/lua/src/
llex.c 267 static void read_long_string (LexState *ls, SemInfo *seminfo, int sep) {
278 if (skip_sep(ls) == sep) {
297 seminfo->ts = luaX_newstring(ls, luaZ_buffer(ls->buff) + (2 + sep),
298 luaZ_bufflen(ls->buff) - 2*(2 + sep));
416 int sep = skip_sep(ls); local
418 if (sep >= 0) {
419 read_long_string(ls, NULL, sep); /* skip long comment */
430 int sep = skip_sep(ls); local
431 if (sep >= 0) {
432 read_long_string(ls, seminfo, sep);
    [all...]
  /external/fonttools/Lib/fontTools/
afmLib.py 191 def write(self, path, sep='\r'):
258 writelines(path, lines, sep)
343 sep = ""
345 sep = sep + '\r' # mac or dos
347 sep = sep + '\n' # unix or dos
348 return data.split(sep)
350 def writelines(path, lines, sep='\r'):
353 f.write(line + sep)
    [all...]

Completed in 971 milliseconds

1 2 3 45 6 7 8 91011>>