HomeSort by relevance Sort by last modified time
    Searched refs:sep (Results 76 - 100 of 524) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/linux-tools-perf/util/
hist.c 604 const char *sep = symbol_conf.field_sep; local
631 sep ? "%.2f" : " %6.2f%%",
634 ret = snprintf(s, size, sep ? "%.2f" : " %6.2f%%",
638 sep ? "%.2f" : " %6.2f%%",
641 sep ? "%.2f" : " %6.2f%%",
646 sep ? "%.2f" : " %6.2f%%",
651 sep ? "%.2f" : " %6.2f%%",
657 ret = snprintf(s, size, sep ? "%" PRIu64 : "%12" PRIu64 " ", period);
660 if (sep)
661 ret += snprintf(s + ret, size - ret, "%c%" PRIu64, *sep, nr_events)
749 const char *sep = symbol_conf.field_sep; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
finder.py 40 self.top_package = starting_subdirectory.replace(filesystem.sep, '.') + '.'
56 return path.replace(self.top_directory + self.filesystem.sep, '').replace(self.filesystem.sep, '.')[:-3]
61 if realpath.startswith(self.top_directory + self.filesystem.sep):
62 return realpath.replace(self.top_directory + self.filesystem.sep, '')
95 relpath = name.replace('.', self.filesystem.sep) + '.py'
126 names = self._find_in_trees(arg.replace('.', self.filesystem.sep), suffixes)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stringold.py 104 def split(s, sep=None, maxsplit=0):
105 """split(str [,sep [,maxsplit]]) -> list of strings
107 Return a list of the words in the string s, using sep as the
109 maxsplit words If sep is not specified, any whitespace string
115 return s.split(sep, maxsplit)
119 def join(words, sep = ' '):
120 """join(list [,sep]) -> string
123 intervening occurrences of sep. The default separator is a
129 return sep.join(words)
369 def capwords(s, sep=None)
    [all...]
genericpath.py 85 def _splitext(p, sep, altsep, extsep):
91 sepIndex = p.rfind(sep)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stringold.py 104 def split(s, sep=None, maxsplit=0):
105 """split(str [,sep [,maxsplit]]) -> list of strings
107 Return a list of the words in the string s, using sep as the
109 maxsplit words If sep is not specified, any whitespace string
115 return s.split(sep, maxsplit)
119 def join(words, sep = ' '):
120 """join(list [,sep]) -> string
123 intervening occurrences of sep. The default separator is a
129 return sep.join(words)
369 def capwords(s, sep=None)
    [all...]
genericpath.py 85 def _splitext(p, sep, altsep, extsep):
91 sepIndex = p.rfind(sep)
  /external/iproute2/tc/
f_flow.c 65 char *s, *sep; local
72 sep = strchr(s, ',');
73 if (sep)
74 *sep = '\0';
87 s = sep ? sep + 1 : NULL;
299 char *sep = ""; local
304 fprintf(f, "%s%s", sep, flow_keys[i]);
305 sep = ",";
  /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);
  /external/iptables/extensions/
libxt_conntrack.c 538 const char *sep = " "; local
541 printf("%sINVALID", sep);
542 sep = ",";
545 printf("%sNEW", sep);
546 sep = ",";
549 printf("%sRELATED", sep);
550 sep = ",";
553 printf("%sESTABLISHED", sep);
554 sep = ",";
557 printf("%sUNTRACKED", sep);
573 const char *sep = " "; local
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
local_file_system.py 13 return path.replace('/', os.sep)
16 return path.replace(os.sep, '/')
78 _ConvertToFilepath(path).lstrip(os.sep))
87 _ConvertToFilepath(path).lstrip(os.sep))
  /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';
  /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/test/
test_imgfile.py 36 parts = ourname.split(os.sep)
38 name = os.sep.join(parts)
  /external/chromium_org/chrome/common/extensions/
PRESUBMIT.py 36 os.path.join(path, filename)[len(LOCAL_PUBLIC_TEMPLATES_PATH + os.sep):]
50 if unix_name == _UnixName(template.split(os.sep)[-1]):
55 if not api_path.endswith(os.sep):
56 api_path += os.sep
57 filename = os.path.splitext(name)[0][len(api_path):].replace(os.sep, '_')
73 args.extend(_FindMatchingTemplates(name.split(os.sep)[-1],
  /external/chromium_org/ppapi/
PRESUBMIT.py 30 name_parts = filename.split(os.sep)
51 name_parts = name.split(os.sep)
89 name_parts = name.split(os.sep)
122 name_parts = name.split(os.sep)
166 name_parts = name.split(os.sep)
205 name_parts = filename.split(os.sep)
  /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;

Completed in 1000 milliseconds

1 2 34 5 6 7 8 91011>>