Searched refs:sep (Results 51 - 75 of 340) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dsystemhost.py52 sep = kwargs.get('sep', ' ')
55 stream.write(sep.join([str(arg) for arg in args]) + end)
H A Dsystemhost_mock.py62 sep = kwargs.get('sep', ' ')
65 stream.write(sep.join([str(arg) for arg in args]) + end)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dfiles.py12 self.relative_dir = self.abs_file(os.curdir) + os.sep
65 markers = ['.zip'+os.sep, '.egg'+os.sep]
100 if fpath[len(d)] == os.sep:
122 def sep(s): function
123 """Find the path separator used in this string, or os.sep if none."""
128 the_sep = os.sep
166 pattern_sep = sep(pattern)
181 result_sep = sep(result)
H A Dexecfile.py17 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/icu/source/test/intltest/
H A Dtestutil.cpp40 UnicodeString TestUtility::hex(const UnicodeString& s, UChar sep) { argument
47 result.append(sep);
/external/chromium_org/tools/git/
H A Dgraph.sh36 data = read.delim("$datafile", sep=' ')
/external/icu/icu4c/source/test/intltest/
H A Dtestutil.cpp40 UnicodeString TestUtility::hex(const UnicodeString& s, UChar sep) { argument
47 result.append(sep);
/external/skia/tools/pyutils/
H A Durl_utils_test.py32 '%sdir%sfile' % (os.path.sep, os.path.sep)),
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
H A Dprint_layout_test_times.py121 sep = Port.TEST_PATH_SEPARATOR
123 return sep.join(path.split(sep)[:-1][:forward])
125 return sep.join(path.split(sep)[:-backward])
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dstrlist.c120 char *sep; local
123 while ((sep = strchr(s, ',')) != NULL) {
124 *sep = '\0';
126 *sep = ',';
129 s = sep + 1;
/external/fonttools/Lib/fontTools/
H A DafmLib.py191 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...]
/external/fonttools/Tools/fontTools/
H A DafmLib.py191 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...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
H A Dfinder.py40 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)
/external/iproute2/tc/
H A Df_flow.c65 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/iptables/extensions/
H A Dlibxt_conntrack.c580 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/chromium_org/third_party/re2/re2/testing/
H A Ddump.cc134 string sep; local
138 s->append(sep);
143 sep = " ";
H A Dregexp_generator.h64 // Splits string everywhere sep is found, returning
66 vector<string> Split(const StringPiece& sep, const StringPiece& s);
/external/regex-re2/re2/testing/
H A Ddump.cc134 string sep; local
138 s->append(sep);
143 sep = " ";
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Ddocs_server_utils.py21 filename = os.path.splitext(name)[0].replace(os.sep, '_')
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dmalloc-tree85 sep = line.find('|')
86 if sep < 0:
90 childName = line[:sep].strip()
91 line = line[sep+1:]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
H A Dlayout_test_finder.py61 if path.startswith(self.LAYOUT_TESTS_DIRECTORY + self._filesystem.sep):
62 return path[len(self.LAYOUT_TESTS_DIRECTORY + self._filesystem.sep):]
70 if test_path_separator != fs.sep:
71 filename = filename.replace(test_path_separator, fs.sep)
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dconf.h119 /* CONF_parse_list takes a list separated by 'sep' and calls |list_cb| giving
124 int CONF_parse_list(const char *list, char sep, int remove_whitespace,
/external/chromium_org/tools/swig/
H A Dswig.py40 args = [x.replace('/', os.sep) for x in args]
/external/qemu/android/utils/
H A Dbufprint.c139 char* sep; local
151 sep = strrchr(appDir, '\\');
152 if (sep)
153 *sep = 0;
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_getenv.c43 const char *sep; local
45 sep = SDL_strchr(variable, '=');
46 if ( sep == NULL ) {
59 value = SDL_envmem + (sep - variable);

Completed in 559 milliseconds

1234567891011>>