Home
last modified time | relevance | path

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

12345678910>>...32

/external/python/cpython2/Lib/test/
Dtest_print.py22 lambda args, sep, end, file: print(*args),
24 lambda args, sep, end, file: print(file=file, *args),
26 lambda args, sep, end, file: print(end=end, *args),
28 lambda args, sep, end, file: print(end=end, file=file, *args),
30 lambda args, sep, end, file: print(sep=sep, *args),
32 lambda args, sep, end, file: print(sep=sep, file=file, *args),
34 lambda args, sep, end, file: print(sep=sep, end=end, *args),
36 lambda args, sep, end, file: print(sep=sep, end=end, file=file, *args),
48 sep=NotDefined, end=NotDefined, file=NotDefined): argument
55 fn = dispatch[(sep is not NotDefined,
[all …]
/external/python/cpython3/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.py47 return path.replace(os.sep, '.')
98 if path[-1] == os.sep:
238 packdir = TESTPACK + os.sep
246 packdir = TESTPACK + os.sep
247 packdir2 = packdir + TESTPACK2 + os.sep
256 packdir = TESTPACK + os.sep
257 packdir2 = packdir + TESTPACK2 + os.sep
267 packdir = TESTPACK + os.sep
268 packdir2 = packdir + TESTPACK2 + os.sep
269 packdir3 = packdir2 + TESTPACK + '3' + os.sep
[all …]
/external/python/cpython3/Lib/
Dposixpath.py19 sep = '/' variable
67 sep = _get_sep(s)
68 return s.startswith(sep)
81 sep = _get_sep(a)
85 path[:0] + sep #23780: Ensure compatible data type even if p is null.
87 if b.startswith(sep):
89 elif not path or path.endswith(sep):
92 path += sep + b
108 sep = _get_sep(p)
109 i = p.rfind(sep) + 1
[all …]
Dntpath.py14 sep = '\\' variable
78 sep = b'\\'
82 sep = '\\'
87 path[:0] + sep #23780: Ensure compatible data type even if p is null.
107 result_path = result_path + sep
112 return result_drive + sep + result_path
144 sep = b'\\'
148 sep = '\\'
151 normp = p.replace(altsep, sep)
152 if (normp[0:2] == sep*2) and (normp[2:3] != sep):
[all …]
/external/ant-glob/src/org/apache/tools/ant/util/
DFileUtils.java121 char sep = File.separatorChar; in isAbsolutePath() local
122 filename = filename.replace('/', sep).replace('\\', sep); in isAbsolutePath()
125 return (c == sep); in isAbsolutePath()
127 if (c == sep) { in isAbsolutePath()
129 if (!(ON_DOS && len > 4 && filename.charAt(1) == sep)) { in isAbsolutePath()
133 int nextsep = filename.indexOf(sep, 2); in isAbsolutePath()
138 && filename.length() > 2 && filename.charAt(2) == sep) in isAbsolutePath()
150 char sep = File.separatorChar; in dissect() local
151 path = path.replace('/', sep).replace('\\', sep); in dissect()
164 root += sep; in dissect()
[all …]
/external/googletest/googlemock/src/
Dgmock-matchers.cc237 const char* sep = ""; in LogElementMatcherPairVec() local
239 os << sep << "\n (" in LogElementMatcherPairVec()
242 sep = ","; in LogElementMatcherPairVec()
272 const char* sep = ""; in DebugString() local
274 ss << sep; in DebugString()
278 sep = ";"; in DebugString()
307 const char* sep = ""; in DescribeToImpl() local
309 *os << sep; in DescribeToImpl()
317 sep = ", and\n"; in DescribeToImpl()
319 sep = "\n"; in DescribeToImpl()
[all …]
/external/elfutils/libdwelf/
Ddwelf_strtab.c189 searchstring (Dwelf_Strent **sep, Dwelf_Strent *newstr) in searchstring() argument
192 if (*sep == NULL) in searchstring()
194 *sep = newstr; in searchstring()
195 return sep; in searchstring()
199 int cmpres = memcmp ((*sep)->reverse, newstr->reverse, in searchstring()
200 MIN ((*sep)->len, newstr->len) - 1); in searchstring()
203 return sep; in searchstring()
205 return searchstring (&(*sep)->left, newstr); in searchstring()
207 return searchstring (&(*sep)->right, newstr); in searchstring()
228 Dwelf_Strent **sep = searchstring (&st->root, newstr); in strtab_add() local
[all …]
/external/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 …]
/external/google-breakpad/src/testing/gtest/scripts/
Dgen_gtest_pred_impl.py189 def Iter(n, format, sep=''): argument
202 return sep.join([format % (spec_count * (i,)) for i in OneTo(n)])
211 'vs' : Iter(n, 'v%s', sep=', '),
212 'vts' : Iter(n, '#v%s', sep=', '),
246 << 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 …]
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/src/
Dgmock-matchers.cc317 const char *sep = ""; in LogElementMatcherPairVec() local
319 os << sep << "\n (" in LogElementMatcherPairVec()
322 sep = ","; in LogElementMatcherPairVec()
348 const char *sep = "where:\n"; in FindPairing() local
350 *listener << sep << " - element #" << matches[mi].first in FindPairing()
352 sep = ",\n"; in FindPairing()
384 const char *sep = ""; in DebugString() local
386 ss << sep; in DebugString()
390 sep = ";"; in DebugString()
408 const char* sep = ""; in DescribeToImpl() local
[all …]
/external/grpc-grpc/src/core/lib/slice/
Dslice_string_helpers.cc40 static int slice_find_separator_offset(const grpc_slice str, const char* sep, in slice_find_separator_offset() argument
46 const size_t sep_len = strlen(sep); in slice_find_separator_offset()
52 if (memcmp(str_ptr + i, sep, sep_len) == 0) { in slice_find_separator_offset()
71 static void grpc_slice_split_inner(grpc_slice str, const char* sep, in grpc_slice_split_inner() argument
73 const size_t sep_len = strlen(sep); in grpc_slice_split_inner()
80 if (slice_find_separator_offset(str, sep, 0, &begin, &end) != 0) { in grpc_slice_split_inner()
87 } while (slice_find_separator_offset(str, sep, sep_pos + sep_len, &begin, in grpc_slice_split_inner()
105 void grpc_slice_split(grpc_slice str, const char* sep, grpc_slice_buffer* dst) { in grpc_slice_split() argument
106 grpc_slice_split_inner(str, sep, dst, false); in grpc_slice_split()
109 void grpc_slice_split_without_space(grpc_slice str, const char* sep, in grpc_slice_split_without_space() argument
[all …]
/external/u-boot/common/
Dcli_simple.c178 char *sep; /* end of token (separator) in cmdbuf */ in cli_simple_run_command() local
214 for (inquotes = 0, sep = str; *sep; sep++) { in cli_simple_run_command()
215 if ((*sep == '\'') && in cli_simple_run_command()
216 (*(sep - 1) != '\\')) in cli_simple_run_command()
220 (*sep == ';') && /* separator */ in cli_simple_run_command()
221 (sep != str) && /* past string start */ in cli_simple_run_command()
222 (*(sep - 1) != '\\')) /* and NOT escaped */ in cli_simple_run_command()
230 if (*sep) { in cli_simple_run_command()
231 str = sep + 1; /* start of command for next pass */ in cli_simple_run_command()
232 *sep = '\0'; in cli_simple_run_command()
[all …]
/external/libcups/cups/
Dencode.c375 *sep, /* Option separator */ in cupsEncodeOptions2() local
526 for (count = 1, sep = option->value, quote = 0; *sep; sep ++) in cupsEncodeOptions2()
528 if (*sep == quote) in cupsEncodeOptions2()
530 else if (!quote && (*sep == '\'' || *sep == '\"')) in cupsEncodeOptions2()
536 quote = *sep++; in cupsEncodeOptions2()
538 else if (*sep == ',' && !quote) in cupsEncodeOptions2()
540 else if (*sep == '\\' && sep[1]) in cupsEncodeOptions2()
541 sep += 2; in cupsEncodeOptions2()
597 for (j = 0, sep = val; j < count; val = sep, j ++) in cupsEncodeOptions2()
605 for (quote = 0; *sep; sep ++) in cupsEncodeOptions2()
[all …]
/external/python/cpython3/Objects/clinic/
Dbytesobject.c.h23 bytes_split_impl(PyBytesObject *self, PyObject *sep, Py_ssize_t maxsplit);
31 PyObject *sep = Py_None; in bytes_split() local
35 &sep, &maxsplit)) { in bytes_split()
38 return_value = bytes_split_impl(self, sep, maxsplit); in bytes_split()
61 bytes_partition_impl(PyBytesObject *self, Py_buffer *sep);
67 Py_buffer sep = {NULL, NULL}; in bytes_partition() local
69 if (!PyArg_Parse(arg, "y*:partition", &sep)) { in bytes_partition()
72 return_value = bytes_partition_impl(self, &sep); in bytes_partition()
76 if (sep.obj) { in bytes_partition()
77 PyBuffer_Release(&sep); in bytes_partition()
[all …]
/external/google-breakpad/src/client/linux/minidump_writer/
Dproc_cpuinfo_reader.h77 char* sep = static_cast<char*>(my_memchr(line, ':', line_len)); in GetNextField() local
78 if (sep == NULL) in GetNextField()
83 const char* val = sep+1; in GetNextField()
92 while (sep > line && my_isspace(sep[-1])) in GetNextField()
93 sep--; in GetNextField()
95 if (sep == line) in GetNextField()
99 *sep = '\0'; in GetNextField()
/external/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 …]
/external/fsverity-utils/
Delide_patch.c34 char *sep, *end; in parse_elide_option() local
38 sep = strchr(optarg, ','); in parse_elide_option()
39 if (!sep || sep == optarg) in parse_elide_option()
42 *sep = '\0'; in parse_elide_option()
44 *sep = ','; in parse_elide_option()
45 if (errno || end != sep) in parse_elide_option()
47 length = strtoull(sep + 1, &end, 10); in parse_elide_option()
71 char *sep, *end; in parse_patch_option() local
75 sep = strchr(optarg, ','); in parse_patch_option()
76 if (!sep || sep == optarg) in parse_patch_option()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
DIssuingDistributionPoint.java223 String sep = Strings.lineSeparator(); in toString() local
227 buf.append(sep); in toString()
230 appendObject(buf, sep, "distributionPoint", distributionPoint.toString()); in toString()
234 appendObject(buf, sep, "onlyContainsUserCerts", booleanToString(onlyContainsUserCerts)); in toString()
238 appendObject(buf, sep, "onlyContainsCACerts", booleanToString(onlyContainsCACerts)); in toString()
242 appendObject(buf, sep, "onlySomeReasons", onlySomeReasons.toString()); in toString()
246 … appendObject(buf, sep, "onlyContainsAttributeCerts", booleanToString(onlyContainsAttributeCerts)); in toString()
250 appendObject(buf, sep, "indirectCRL", booleanToString(indirectCRL)); in toString()
253 buf.append(sep); in toString()
257 private void appendObject(StringBuffer buf, String sep, String name, String value) in appendObject() argument
[all …]
DDistributionPointName.java109 String sep = Strings.lineSeparator(); in toString() local
112 buf.append(sep); in toString()
115 appendObject(buf, sep, "fullName", name.toString()); in toString()
119 appendObject(buf, sep, "nameRelativeToCRLIssuer", name.toString()); in toString()
122 buf.append(sep); in toString()
126 private void appendObject(StringBuffer buf, String sep, String name, String value) in appendObject() argument
133 buf.append(sep); in appendObject()
137 buf.append(sep); in appendObject()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/
DIssuingDistributionPoint.java225 String sep = Strings.lineSeparator(); in toString() local
229 buf.append(sep); in toString()
232 appendObject(buf, sep, "distributionPoint", distributionPoint.toString()); in toString()
236 appendObject(buf, sep, "onlyContainsUserCerts", booleanToString(onlyContainsUserCerts)); in toString()
240 appendObject(buf, sep, "onlyContainsCACerts", booleanToString(onlyContainsCACerts)); in toString()
244 appendObject(buf, sep, "onlySomeReasons", onlySomeReasons.toString()); in toString()
248 … appendObject(buf, sep, "onlyContainsAttributeCerts", booleanToString(onlyContainsAttributeCerts)); in toString()
252 appendObject(buf, sep, "indirectCRL", booleanToString(indirectCRL)); in toString()
255 buf.append(sep); in toString()
259 private void appendObject(StringBuffer buf, String sep, String name, String value) in appendObject() argument
[all …]
/external/iptables/extensions/
Dlibxt_conntrack.c580 const char *sep = " "; in print_state() local
583 printf("%sINVALID", sep); in print_state()
584 sep = ","; in print_state()
587 printf("%sNEW", sep); in print_state()
588 sep = ","; in print_state()
591 printf("%sRELATED", sep); in print_state()
592 sep = ","; in print_state()
595 printf("%sESTABLISHED", sep); in print_state()
596 sep = ","; in print_state()
599 printf("%sUNTRACKED", sep); in print_state()
[all …]
/external/bcc/src/cc/
Dbcc_perf_map.c94 char *newline, *sep; in bcc_perf_map_foreach_sym() local
96 begin = strtoull(cursor, &sep, 16); in bcc_perf_map_foreach_sym()
97 if (begin == 0 || *sep != ' ' || (begin == ULLONG_MAX && errno == ERANGE)) in bcc_perf_map_foreach_sym()
99 cursor = sep; in bcc_perf_map_foreach_sym()
102 len = strtoull(cursor, &sep, 16); in bcc_perf_map_foreach_sym()
103 if (*sep != ' ' || in bcc_perf_map_foreach_sym()
104 (sep == cursor && len == 0) || in bcc_perf_map_foreach_sym()
107 cursor = sep; in bcc_perf_map_foreach_sym()
/external/eigen/doc/snippets/
DIOFormat.cpp1 std::string sep = "\n----------------------------------------\n"; variable
10 std::cout << m1 << sep;
11 std::cout << m1.format(CommaInitFmt) << sep;
12 std::cout << m1.format(CleanFmt) << sep;
13 std::cout << m1.format(OctaveFmt) << sep;
14 std::cout << m1.format(HeavyFmt) << sep;
/external/python/cpython2/Lib/plat-mac/
Dbgenlocations.py53 if BGENDIR[-1] != os.sep:
54 BGENDIR = BGENDIR + os.sep
55 if INCLUDEDIR[-1] != os.sep:
56 INCLUDEDIR = INCLUDEDIR + os.sep
57 if TOOLBOXDIR[-1] != os.sep:
58 TOOLBOXDIR = TOOLBOXDIR + os.sep

12345678910>>...32