Home
last modified time | relevance | path

Searched refs:sep (Results 1 – 25 of 678) sorted by relevance

12345678910>>...28

/third_party/python/Lib/test/
Dtest_print.py16 lambda args, sep, end, file: print(*args),
18 lambda args, sep, end, file: print(file=file, *args),
20 lambda args, sep, end, file: print(end=end, *args),
22 lambda args, sep, end, file: print(end=end, file=file, *args),
24 lambda args, sep, end, file: print(sep=sep, *args),
26 lambda args, sep, end, file: print(sep=sep, file=file, *args),
28 lambda args, sep, end, file: print(sep=sep, end=end, *args),
30 lambda args, sep, end, file: print(sep=sep, end=end, file=file, *args),
47 sep=NotDefined, end=NotDefined, file=NotDefined): argument
54 fn = dispatch[(sep is not NotDefined,
[all …]
Dtest_zipimport.py48 return path.replace(os.sep, '.')
99 if path[-1] == os.sep:
257 packdir = TESTPACK + os.sep
265 packdir = TESTPACK + os.sep
266 packdir2 = packdir + TESTPACK2 + os.sep
275 packdir = TESTPACK + os.sep
276 packdir2 = packdir + TESTPACK2 + os.sep
286 packdir = TESTPACK + os.sep
287 packdir2 = packdir + TESTPACK2 + os.sep
288 packdir3 = packdir2 + TESTPACK + '3' + os.sep
[all …]
/third_party/python/Lib/
Dposixpath.py19 sep = '/' variable
63 sep = _get_sep(s)
64 return s.startswith(sep)
77 sep = _get_sep(a)
81 path[:0] + sep #23780: Ensure compatible data type even if p is null.
83 if b.startswith(sep):
85 elif not path or path.endswith(sep):
88 path += sep + b
104 sep = _get_sep(p)
105 i = p.rfind(sep) + 1
[all …]
Dntpath.py14 sep = '\\' variable
80 sep = b'\\'
84 sep = '\\'
89 path[:0] + sep #23780: Ensure compatible data type even if p is null.
109 result_path = result_path + sep
114 return result_drive + sep + result_path
146 sep = b'\\'
150 sep = '\\'
153 normp = p.replace(altsep, sep)
154 if (normp[0:2] == sep*2) and (normp[2:3] != sep):
[all …]
/third_party/ntfs-3g/libfuse-lite/
Dfuse_opt.c144 const char *sep = strchr(t, '='); in match_template() local
145 sep = sep ? sep : strchr(t, ' '); in match_template()
146 if (sep && (!sep[1] || sep[1] == '%')) { in match_template()
147 int tlen = sep - t; in match_template()
148 if (sep[0] == '=') in match_template()
151 *sepp = sep - t; in match_template()
197 const struct fuse_opt *opt, unsigned sep, in process_opt() argument
205 if (sep && opt->templ[sep + 1]) { in process_opt()
206 const char *param = arg + sep; in process_opt()
207 if (opt->templ[sep] == '=') in process_opt()
[all …]
/third_party/boost/boost/date_time/
Diso_format.hpp106 static bool is_component_sep(charT sep) in is_component_sep() argument
108 switch(sep) { in is_component_sep()
121 static bool is_fractional_time_sep(charT sep) in is_fractional_time_sep() argument
123 switch(sep) { in is_fractional_time_sep()
129 static bool is_timezone_sep(charT sep) in is_timezone_sep() argument
131 switch(sep) { in is_timezone_sep()
235 static bool is_component_sep(wchar_t sep) in is_component_sep() argument
237 switch(sep) { in is_component_sep()
250 static bool is_fractional_time_sep(wchar_t sep) in is_fractional_time_sep() argument
252 switch(sep) { in is_fractional_time_sep()
[all …]
/third_party/googletest/googletest/scripts/
Dgen_gtest_pred_impl.py188 def Iter(n, format, sep=''): argument
201 return sep.join([format % (spec_count * (i,)) for i in OneTo(n)])
210 'vs' : Iter(n, 'v%s', sep=', '),
211 'vts' : Iter(n, '#v%s', sep=', '),
245 << e%s""", sep=' << ", "')
417 'es' : Iter(n, 'e%s', sep=', '),
418 'vs' : Iter(n, 'v%s', sep=', '),
419 'vts' : Iter(n, '#v%s', sep=', '),
420 'tvs' : Iter(n, 'T%s v%s', sep=', '),
421 'int_vs' : Iter(n, 'int v%s', sep=', '),
[all …]
/third_party/boringssl/src/third_party/googletest/scripts/
Dgen_gtest_pred_impl.py188 def Iter(n, format, sep=''): argument
201 return sep.join([format % (spec_count * (i,)) for i in OneTo(n)])
210 'vs' : Iter(n, 'v%s', sep=', '),
211 'vts' : Iter(n, '#v%s', sep=', '),
245 << e%s""", sep=' << ", "')
417 'es' : Iter(n, 'e%s', sep=', '),
418 'vs' : Iter(n, 'v%s', sep=', '),
419 'vts' : Iter(n, '#v%s', sep=', '),
420 'tvs' : Iter(n, 'T%s v%s', sep=', '),
421 'int_vs' : Iter(n, 'int v%s', sep=', '),
[all …]
/third_party/python/Python/
Dpystrhex.c8 const PyObject* sep, int bytes_per_sep_group, in _Py_strhex_impl() argument
14 if (sep) { in _Py_strhex_impl()
15 Py_ssize_t seplen = PyObject_Length((PyObject*)sep); in _Py_strhex_impl()
23 if (PyUnicode_Check(sep)) { in _Py_strhex_impl()
24 if (PyUnicode_READY(sep)) in _Py_strhex_impl()
26 if (PyUnicode_KIND(sep) != PyUnicode_1BYTE_KIND) { in _Py_strhex_impl()
30 sep_char = PyUnicode_READ_CHAR(sep, 0); in _Py_strhex_impl()
32 else if (PyBytes_Check(sep)) { in _Py_strhex_impl()
33 sep_char = PyBytes_AS_STRING(sep)[0]; in _Py_strhex_impl()
162 PyObject * _Py_strhex_with_sep(const char* argbuf, const Py_ssize_t arglen, const PyObject* sep, co… in _Py_strhex_with_sep() argument
[all …]
/third_party/ffmpeg/libavcodec/
Dtiff_common.h85 char *ff_trationals2str(int *rp, int count, const char *sep);
90 char *ff_tlongs2str(int32_t *lp, int count, const char *sep);
95 char *ff_tdoubles2str(double *dp, int count, const char *sep);
100 char *ff_tshorts2str(int16_t *sp, int count, const char *sep);
105 int ff_tadd_rational_metadata(int count, const char *name, const char *sep,
111 int ff_tadd_long_metadata(int count, const char *name, const char *sep,
117 int ff_tadd_doubles_metadata(int count, const char *name, const char *sep,
123 int ff_tadd_shorts_metadata(int count, const char *name, const char *sep,
129 int ff_tadd_bytes_metadata(int count, const char *name, const char *sep,
Dtiff_common.c72 static const char *auto_sep(int count, const char *sep, int i, int columns) in auto_sep() argument
74 if (sep) in auto_sep()
75 return i ? sep : ""; in auto_sep()
82 int ff_tadd_rational_metadata(int count, const char *name, const char *sep, in ff_tadd_rational_metadata() argument
100 av_bprintf(&bp, "%s%7"PRId32":%-7"PRId32, auto_sep(count, sep, i, 4), nom, denom); in ff_tadd_rational_metadata()
116 int ff_tadd_long_metadata(int count, const char *name, const char *sep, in ff_tadd_long_metadata() argument
131 av_bprintf(&bp, "%s%7i", auto_sep(count, sep, i, 8), ff_tget_long(gb, le)); in ff_tadd_long_metadata()
147 int ff_tadd_doubles_metadata(int count, const char *name, const char *sep, in ff_tadd_doubles_metadata() argument
162 av_bprintf(&bp, "%s%.15g", auto_sep(count, sep, i, 4), ff_tget_double(gb, le)); in ff_tadd_doubles_metadata()
178 int ff_tadd_shorts_metadata(int count, const char *name, const char *sep, in ff_tadd_shorts_metadata() argument
[all …]
/third_party/node/deps/npm/node_modules/decamelize/
Dindex.js2 module.exports = function (str, sep) { argument
7 sep = typeof sep === 'undefined' ? '_' : sep;
10 .replace(/([a-z\d])([A-Z])/g, '$1' + sep + '$2')
11 .replace(/([A-Z]+)([A-Z][a-z\d]+)/g, '$1' + sep + '$2')
/third_party/grpc/src/core/lib/slice/
Dslice_string_helpers.cc49 static int slice_find_separator_offset(const grpc_slice str, const char* sep, in slice_find_separator_offset() argument
55 const size_t sep_len = strlen(sep); in slice_find_separator_offset()
61 if (memcmp(str_ptr + i, sep, sep_len) == 0) { in slice_find_separator_offset()
80 static void grpc_slice_split_inner(grpc_slice str, const char* sep, in grpc_slice_split_inner() argument
82 const size_t sep_len = strlen(sep); in grpc_slice_split_inner()
89 if (slice_find_separator_offset(str, sep, 0, &begin, &end) != 0) { in grpc_slice_split_inner()
96 } while (slice_find_separator_offset(str, sep, sep_pos + sep_len, &begin, in grpc_slice_split_inner()
114 void grpc_slice_split(grpc_slice str, const char* sep, grpc_slice_buffer* dst) { in grpc_slice_split() argument
115 grpc_slice_split_inner(str, sep, dst, false); in grpc_slice_split()
118 void grpc_slice_split_without_space(grpc_slice str, const char* sep, in grpc_slice_split_without_space() argument
[all …]
/third_party/boost/libs/icl/test/cmp_clang_ttp_passing_/
Dcmp_clang_ttp_passing.cpp14 namespace sep namespace
21 template<class>class Less = sep::less
32 template<class>class Less = sep::less,
33 class I = typename sep::interv<T,Less>::type
47 template<class>class _Less = sep::less,
48 class I = typename sep::interv<_T,_Less>::type
62 bool result = test_ttp<sep::cont, int>(); in BOOST_AUTO_TEST_CASE()
/third_party/uboot/u-boot-2020.01/common/
Dcli_simple.c180 char *sep; /* end of token (separator) in cmdbuf */ in cli_simple_run_command() local
216 for (inquotes = 0, sep = str; *sep; sep++) { in cli_simple_run_command()
217 if ((*sep == '\'') && in cli_simple_run_command()
218 (*(sep - 1) != '\\')) in cli_simple_run_command()
222 (*sep == ';') && /* separator */ in cli_simple_run_command()
223 (sep != str) && /* past string start */ in cli_simple_run_command()
224 (*(sep - 1) != '\\')) /* and NOT escaped */ in cli_simple_run_command()
232 if (*sep) { in cli_simple_run_command()
233 str = sep + 1; /* start of command for next pass */ in cli_simple_run_command()
234 *sep = '\0'; in cli_simple_run_command()
[all …]
/third_party/googletest/googlemock/src/
Dgmock-matchers.cc347 const char* sep = ""; in LogElementMatcherPairVec() local
349 os << sep << "\n (" in LogElementMatcherPairVec()
352 sep = ","; in LogElementMatcherPairVec()
382 const char* sep = ""; in DebugString() local
384 ss << sep; in DebugString()
388 sep = ";"; in DebugString()
417 const char* sep = ""; in DescribeToImpl() local
419 *os << sep; in DescribeToImpl()
427 sep = ", and\n"; in DescribeToImpl()
429 sep = "\n"; in DescribeToImpl()
[all …]
/third_party/boost/boost/range/adaptor/
Dformatted.hpp51 const separator_t& sep, in formatted_holder()
54 : m_sep(sep) in formatted_holder()
134 formatted(const Sep& sep, const Prefix& prefix, const Postfix& postfix) in formatted() argument
137 sep, prefix, postfix); in formatted()
142 formatted(const Sep& sep, const Prefix& prefix) in formatted() argument
144 return range_detail::formatted_holder<Sep, Prefix, char>(sep, prefix, '}'); in formatted()
149 formatted(const Sep& sep) in formatted() argument
151 return range_detail::formatted_holder<Sep, char, char>(sep, '{', '}'); in formatted()
170 const Sep& sep, in format() argument
185 holder_t(sep, prefix, postfix)); in format()
[all …]
/third_party/python/Tools/c-analyzer/c_analyzer/parser/
Dsource.py9 _, sep, line = line.partition('*/')
10 if sep:
14 line, sep, remainder = line.partition('/*')
15 if sep:
16 _, sep, after = remainder.partition('*/')
17 if not sep:
/third_party/icu/icu4c/source/data/translit/
DLatin_ConjoiningJamo.txt139 $sep = \-;
168 $sep $sep ↔ $sep;
173 $sep ← $latinMedialEnd s {} $SSi;
184 …case is a chain, like aeoeu. Normally interpreted as ae oe u. So for a-eoeu, we have to insert $sep
196 $sep ← a {} [$E $EO $EU];
197 $sep ← [^aow] e {} [$O $OE];
198 $sep ← [^aowy] e {} [$U $UI];
199 $sep ← [^ey] o {} [$E $EO $EU];
200 $sep ← [^y] u {} [$I];
202 $sep ← [^$latinMedial] [y] e {} $IEUNG [$O $OE];
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/data/translit/
DLatin_ConjoiningJamo.txt139 $sep = \-;
168 $sep $sep ↔ $sep;
173 $sep ← $latinMedialEnd s {} $SSi;
184 …case is a chain, like aeoeu. Normally interpreted as ae oe u. So for a-eoeu, we have to insert $sep
196 $sep ← a {} [$E $EO $EU];
197 $sep ← [^aow] e {} [$O $OE];
198 $sep ← [^aowy] e {} [$U $UI];
199 $sep ← [^ey] o {} [$E $EO $EU];
200 $sep ← [^y] u {} [$I];
202 $sep ← [^$latinMedial] [y] e {} $IEUNG [$O $OE];
[all …]
/third_party/skia/third_party/externals/icu/source/data/translit/
DLatin_ConjoiningJamo.txt140 $sep = \-;
169 $sep $sep ↔ $sep;
174 $sep ← $latinMedialEnd s {} $SSi;
185 …case is a chain, like aeoeu. Normally interpreted as ae oe u. So for a-eoeu, we have to insert $sep
197 $sep ← a {} [$E $EO $EU];
198 $sep ← [^aow] e {} [$O $OE];
199 $sep ← [^aowy] e {} [$U $UI];
200 $sep ← [^ey] o {} [$E $EO $EU];
201 $sep ← [^y] u {} [$I];
203 $sep ← [^$latinMedial] [y] e {} $IEUNG [$O $OE];
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/span/
Dparse.go33 if suf.sep == "#" {
37 if suf.sep == ":" {
44 case suf.sep == ":":
46 case suf.sep == "-":
60 if suf.sep == "#" {
64 if suf.sep != ":" {
71 if suf.sep != ":" {
84 sep string member
/third_party/gstreamer/gstplugins_good/tests/check/elements/
Dmatroskaparse.c29 GstElement *src, *sep, *sink, *matroskaparse, *pipeline; in run_check_for_file() local
42 sep = gst_element_factory_make ("queue", "queue"); in run_check_for_file()
43 fail_unless (sep != NULL, "Failed to create 'queue' element"); in run_check_for_file()
45 sep = gst_element_factory_make ("identity", "identity"); in run_check_for_file()
46 fail_unless (sep != NULL, "Failed to create 'identity' element"); in run_check_for_file()
55 gst_bin_add_many (GST_BIN (pipeline), src, sep, matroskaparse, sink, NULL); in run_check_for_file()
57 fail_unless (gst_element_link (src, sep)); in run_check_for_file()
58 fail_unless (gst_element_link (sep, matroskaparse)); in run_check_for_file()
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/span/
Dparse.go33 if suf.sep == "#" {
37 if suf.sep == ":" {
44 case suf.sep == ":":
46 case suf.sep == "-":
60 if suf.sep == "#" {
64 if suf.sep != ":" {
71 if suf.sep != ":" {
84 sep string member
/third_party/python/Objects/clinic/
Dbytesobject.c.h23 bytes_split_impl(PyBytesObject *self, PyObject *sep, Py_ssize_t maxsplit);
33 PyObject *sep = Py_None; in bytes_split() local
44 sep = args[0]; in bytes_split()
67 return_value = bytes_split_impl(self, sep, maxsplit); in bytes_split()
90 bytes_partition_impl(PyBytesObject *self, Py_buffer *sep);
96 Py_buffer sep = {NULL, NULL}; in bytes_partition() local
98 if (PyObject_GetBuffer(arg, &sep, PyBUF_SIMPLE) != 0) { in bytes_partition()
101 if (!PyBuffer_IsContiguous(&sep, 'C')) { in bytes_partition()
105 return_value = bytes_partition_impl(self, &sep); in bytes_partition()
109 if (sep.obj) { in bytes_partition()
[all …]

12345678910>>...28