/external/python/cpython3/Lib/test/ |
D | test_print.py | 15 lambda args, sep, end, file: print(*args), 17 lambda args, sep, end, file: print(file=file, *args), 19 lambda args, sep, end, file: print(end=end, *args), 21 lambda args, sep, end, file: print(end=end, file=file, *args), 23 lambda args, sep, end, file: print(sep=sep, *args), 25 lambda args, sep, end, file: print(sep=sep, file=file, *args), 27 lambda args, sep, end, file: print(sep=sep, end=end, *args), 29 lambda args, sep, end, file: print(sep=sep, end=end, file=file, *args), 46 sep=NotDefined, end=NotDefined, file=NotDefined): argument 53 fn = dispatch[(sep is not NotDefined, [all …]
|
D | test_zipimport.py | 43 return path.replace(os.sep, '.') 94 if path[-1] == os.sep: 220 packdir = TESTPACK + os.sep 228 packdir = TESTPACK + os.sep 229 packdir2 = packdir + TESTPACK2 + os.sep 238 packdir = TESTPACK + os.sep 239 packdir2 = packdir + TESTPACK2 + os.sep 249 packdir = TESTPACK + os.sep 250 packdir2 = packdir + TESTPACK2 + os.sep 251 packdir3 = packdir2 + TESTPACK + '3' + os.sep [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_print.py | 22 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/ |
D | posixpath.py | 33 sep = '/' variable 65 sep = _get_sep(s) 66 return s.startswith(sep) 79 sep = _get_sep(a) 83 path[:0] + sep #23780: Ensure compatible data type even if p is null. 85 if b.startswith(sep): 87 elif not path or path.endswith(sep): 90 path += sep + b 106 sep = _get_sep(p) 107 i = p.rfind(sep) + 1 [all …]
|
D | ntpath.py | 27 sep = '\\' variable 77 sep = b'\\' 81 sep = '\\' 86 path[:0] + sep #23780: Ensure compatible data type even if p is null. 106 result_path = result_path + sep 111 return result_drive + sep + result_path 143 sep = b'\\' 147 sep = '\\' 150 normp = p.replace(altsep, sep) 151 if (normp[0:2] == sep*2) and (normp[2:3] != sep): [all …]
|
/external/ant-glob/src/org/apache/tools/ant/util/ |
D | FileUtils.java | 121 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/elfutils/libebl/ |
D | eblwstrtab.c | 195 searchstring (struct Ebl_WStrent **sep, struct Ebl_WStrent *newstr) in searchstring() argument 200 if (*sep == NULL) in searchstring() 202 *sep = newstr; in searchstring() 203 return sep; in searchstring() 207 cmpres = wmemcmp ((*sep)->reverse, newstr->reverse, in searchstring() 208 MIN ((*sep)->len, newstr->len) - 1); in searchstring() 211 return sep; in searchstring() 213 return searchstring (&(*sep)->left, newstr); in searchstring() 215 return searchstring (&(*sep)->right, newstr); in searchstring() 224 struct Ebl_WStrent **sep; in ebl_wstrtabadd() local [all …]
|
D | eblgstrtab.c | 195 searchstring (struct Ebl_GStrent **sep, struct Ebl_GStrent *newstr) in searchstring() argument 200 if (*sep == NULL) in searchstring() 202 *sep = newstr; in searchstring() 203 return sep; in searchstring() 207 cmpres = memcmp ((*sep)->reverse, newstr->reverse, in searchstring() 208 (MIN ((*sep)->len, newstr->len) - 1) * (*sep)->width); in searchstring() 211 return sep; in searchstring() 213 return searchstring (&(*sep)->left, newstr); in searchstring() 215 return searchstring (&(*sep)->right, newstr); in searchstring() 224 struct Ebl_GStrent **sep; in ebl_gstrtabadd() local [all …]
|
D | eblstrtab.c | 194 searchstring (struct Ebl_Strent **sep, struct Ebl_Strent *newstr) in searchstring() argument 197 if (*sep == NULL) in searchstring() 199 *sep = newstr; in searchstring() 200 return sep; in searchstring() 204 int cmpres = memcmp ((*sep)->reverse, newstr->reverse, in searchstring() 205 MIN ((*sep)->len, newstr->len) - 1); in searchstring() 208 return sep; in searchstring() 210 return searchstring (&(*sep)->left, newstr); in searchstring() 212 return searchstring (&(*sep)->right, newstr); in searchstring() 237 struct Ebl_Strent **sep = searchstring (&st->root, newstr); in ebl_strtabadd() local [all …]
|
/external/v8/testing/gtest/scripts/ |
D | gen_gtest_pred_impl.py | 189 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/googletest/googletest/scripts/ |
D | gen_gtest_pred_impl.py | 189 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/protobuf/gtest/scripts/ |
D | gen_gtest_pred_impl.py | 189 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=', '), 247 << e%s""", sep=' << ", "') 419 'es' : Iter(n, 'e%s', sep=', '), 420 'vs' : Iter(n, 'v%s', sep=', '), 421 'vts' : Iter(n, '#v%s', sep=', '), 422 'tvs' : Iter(n, 'T%s v%s', sep=', '), 423 'int_vs' : Iter(n, 'int v%s', sep=', '), [all …]
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/scripts/ |
D | gen_gtest_pred_impl.py | 189 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/google-breakpad/src/testing/gtest/scripts/ |
D | gen_gtest_pred_impl.py | 189 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/v8/testing/gmock/src/ |
D | gmock-matchers.cc | 317 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/googletest/googlemock/src/ |
D | gmock-matchers.cc | 317 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/python/cpython3/Objects/clinic/ |
D | bytesobject.c.h | 23 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/libcups/cups/ |
D | encode.c | 375 *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/google-breakpad/src/client/linux/minidump_writer/ |
D | proc_cpuinfo_reader.h | 77 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/ |
D | Latin_ConjoiningJamo.txt | 139 $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/syslinux/utils/ |
D | gethostip.c | 52 char *sep; in main() local 89 sep = ""; in main() 105 printf("%s%s", sep, host->h_name); in main() 106 sep = " "; in main() 110 printf("%s%u.%u.%u.%u", sep, in main() 115 sep = " "; in main() 119 printf("%s%02X%02X%02X%02X", sep, in main() 124 sep = " "; in main()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
D | IssuingDistributionPoint.java | 223 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 …]
|
/external/iptables/extensions/ |
D | libxt_conntrack.c | 580 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/eigen/doc/snippets/ |
D | IOFormat.cpp | 1 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/curl/src/ |
D | tool_formparse.c | 194 char sep; in get_param_part() local 216 sep = *p; in get_param_part() 218 while(sep == ';') { in get_param_part() 240 sep = *p; in get_param_part() 255 sep = *p; in get_param_part() 278 sep = *p; in get_param_part() 306 sep = *p; in get_param_part() 328 sep = *p; in get_param_part() 336 sep = *p; in get_param_part() 342 sep = *p; in get_param_part() [all …]
|