/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/test/ |
D | test_print.py | 16 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 …]
|
D | test_zipimport.py | 47 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/ |
D | posixpath.py | 19 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 …]
|
D | ntpath.py | 14 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/ |
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/googletest/googlemock/src/ |
D | gmock-matchers.cc | 237 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/ |
D | dwelf_strtab.c | 189 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/ |
D | gen_gtest_pred_impl.py | 188 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/ |
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/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/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/grpc-grpc/src/core/lib/slice/ |
D | slice_string_helpers.cc | 40 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/ |
D | cli_simple.c | 178 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/ |
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/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/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/fsverity-utils/ |
D | elide_patch.c | 34 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/ |
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 …]
|
D | DistributionPointName.java | 109 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/ |
D | IssuingDistributionPoint.java | 225 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/ |
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/bcc/src/cc/ |
D | bcc_perf_map.c | 94 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/ |
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/python/cpython2/Lib/plat-mac/ |
D | bgenlocations.py | 53 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
|