/external/icu/icu4c/source/data/translit/ |
D | Latin_ConjoiningJamo.txt | 82 $sep = \-; 83 $sep $sep ↔ $sep; 84 $sep ← $latinMedialEnd s {} $SSi; 85 $sep ← a {} [$E $EO $EU]; 86 $sep ← [^aow] e {} [$O $OE]; 87 $sep ← [^aowy] e {} [$U $UI]; 88 $sep ← [^ey] o {} [$E $EO $EU]; 89 $sep ← [^y] u {} [$I]; 90 $sep ← [^$latinMedial] [y] e {} $IEUNG [$O $OE]; 91 $sep ← [^$latinMedial] e {} $IEUNG [$O $OE $U]; [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/src/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/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/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/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
D | IssuingDistributionPoint.java | 222 String sep = System.getProperty("line.separator"); in toString() local 226 buf.append(sep); in toString() 229 appendObject(buf, sep, "distributionPoint", distributionPoint.toString()); in toString() 233 appendObject(buf, sep, "onlyContainsUserCerts", booleanToString(onlyContainsUserCerts)); in toString() 237 appendObject(buf, sep, "onlyContainsCACerts", booleanToString(onlyContainsCACerts)); in toString() 241 appendObject(buf, sep, "onlySomeReasons", onlySomeReasons.toString()); in toString() 245 … appendObject(buf, sep, "onlyContainsAttributeCerts", booleanToString(onlyContainsAttributeCerts)); in toString() 249 appendObject(buf, sep, "indirectCRL", booleanToString(indirectCRL)); in toString() 252 buf.append(sep); in toString() 256 private void appendObject(StringBuffer buf, String sep, String name, String value) in appendObject() argument [all …]
|
D | DistributionPoint.java | 124 String sep = System.getProperty("line.separator"); in toString() local 127 buf.append(sep); in toString() 130 appendObject(buf, sep, "distributionPoint", distributionPoint.toString()); in toString() 134 appendObject(buf, sep, "reasons", reasons.toString()); in toString() 138 appendObject(buf, sep, "cRLIssuer", cRLIssuer.toString()); in toString() 141 buf.append(sep); in toString() 145 private void appendObject(StringBuffer buf, String sep, String name, String value) in appendObject() argument 152 buf.append(sep); in appendObject() 156 buf.append(sep); in appendObject()
|
D | DistributionPointName.java | 108 String sep = System.getProperty("line.separator"); in toString() local 111 buf.append(sep); in toString() 114 appendObject(buf, sep, "fullName", name.toString()); in toString() 118 appendObject(buf, sep, "nameRelativeToCRLIssuer", name.toString()); in toString() 121 buf.append(sep); in toString() 125 private void appendObject(StringBuffer buf, String sep, String name, String value) in appendObject() argument 132 buf.append(sep); in appendObject() 136 buf.append(sep); in appendObject()
|
/external/linux-tools-perf/src/tools/perf/ui/tui/ |
D | util.c | 82 const char *sep = strchr(t, '\n'); in ui_browser__input_window() local 84 if (sep == NULL) in ui_browser__input_window() 85 sep = strchr(t, '\0'); in ui_browser__input_window() 86 len = sep - t; in ui_browser__input_window() 90 if (*sep == '\0') in ui_browser__input_window() 92 t = sep + 1; in ui_browser__input_window() 163 const char *sep = strchr(t, '\n'); in ui__question_window() local 166 if (sep == NULL) in ui__question_window() 167 sep = strchr(t, '\0'); in ui__question_window() 168 len = sep - t; in ui__question_window() [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/strace/ |
D | open.c | 46 char sep; in sprint_open_modes() local 50 sep = ' '; in sprint_open_modes() 54 *p++ = sep; in sprint_open_modes() 59 sep = '|'; in sprint_open_modes() 64 *p++ = sep; in sprint_open_modes() 69 sep = '|'; in sprint_open_modes() 73 *p++ = sep; in sprint_open_modes()
|
/external/iproute2/lib/ |
D | ipx_pton.c | 67 char *sep = (char *)src; in ipx_pton1() local 72 while(*sep && (*sep != '.')) in ipx_pton1() 73 sep++; in ipx_pton1() 75 if (*sep != '.') in ipx_pton1() 86 if (ipx_getnode(addr->ipx_node, sep + 1)) in ipx_pton1()
|
/external/mesa3d/src/gallium/tests/unit/ |
D | u_format_test.c | 62 const char *sep = ""; in print_packed() local 66 printf("%s%02x", sep, packed[i]); in print_packed() 67 sep = " "; in print_packed() 81 const char *sep = ""; in print_unpacked_rgba_doubl() local 86 …printf("%s{%f, %f, %f, %f}", sep, unpacked[i][j][0], unpacked[i][j][1], unpacked[i][j][2], unpacke… in print_unpacked_rgba_doubl() 87 sep = ", "; in print_unpacked_rgba_doubl() 89 sep = ",\n"; in print_unpacked_rgba_doubl() 103 const char *sep = ""; in print_unpacked_rgba_float() local 108 …printf("%s{%f, %f, %f, %f}", sep, unpacked[i][j][0], unpacked[i][j][1], unpacked[i][j][2], unpacke… in print_unpacked_rgba_float() 109 sep = ", "; in print_unpacked_rgba_float() [all …]
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver_roboswitch.c | 210 char *sep; in wpa_driver_roboswitch_set_param() local 213 sep = drv->ifname + os_strlen(drv->ifname); in wpa_driver_roboswitch_set_param() 214 *sep = '.'; in wpa_driver_roboswitch_set_param() 223 *sep = '\0'; in wpa_driver_roboswitch_set_param() 352 char *sep; in wpa_driver_roboswitch_init() local 361 sep = drv->ifname + in wpa_driver_roboswitch_init() 364 while (sep > drv->ifname && *sep != '.') sep--; in wpa_driver_roboswitch_init() 365 if (sep <= drv->ifname) { in wpa_driver_roboswitch_init() 371 *sep = '\0'; in wpa_driver_roboswitch_init() 372 while (*++sep) { in wpa_driver_roboswitch_init() [all …]
|
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/_setup/py3/ |
D | setup.py | 181 sep = _os.path.sep 183 sep = _os.path.join('1', '2')[1:-1] 190 _os.path.normpath(dirpath).replace(sep, '.') 271 result.append(_posixpath.sep.join( 272 _os.path.normpath(item).split(_os.path.sep) 279 result.append(_posixpath.sep.join( 280 _os.path.normpath(item).split(_os.path.sep) 284 result.extend([_posixpath.sep.join( 285 _os.path.normpath(item).split(_os.path.sep) 293 result.append(_posixpath.sep.join( [all …]
|
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/_setup/py3/ |
D | setup.py | 181 sep = _os.path.sep 183 sep = _os.path.join('1', '2')[1:-1] 190 _os.path.normpath(dirpath).replace(sep, '.') 271 result.append(_posixpath.sep.join( 272 _os.path.normpath(item).split(_os.path.sep) 279 result.append(_posixpath.sep.join( 280 _os.path.normpath(item).split(_os.path.sep) 284 result.extend([_posixpath.sep.join( 285 _os.path.normpath(item).split(_os.path.sep) 293 result.append(_posixpath.sep.join( [all …]
|
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/_setup/py2/ |
D | setup.py | 180 sep = _os.path.sep 182 sep = _os.path.join('1', '2')[1:-1] 189 _os.path.normpath(dirpath).replace(sep, '.') 270 result.append(_posixpath.sep.join( 271 _os.path.normpath(item).split(_os.path.sep) 278 result.append(_posixpath.sep.join( 279 _os.path.normpath(item).split(_os.path.sep) 283 result.extend([_posixpath.sep.join( 284 _os.path.normpath(item).split(_os.path.sep) 292 result.append(_posixpath.sep.join( [all …]
|
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/_setup/py2/ |
D | setup.py | 180 sep = _os.path.sep 182 sep = _os.path.join('1', '2')[1:-1] 189 _os.path.normpath(dirpath).replace(sep, '.') 270 result.append(_posixpath.sep.join( 271 _os.path.normpath(item).split(_os.path.sep) 278 result.append(_posixpath.sep.join( 279 _os.path.normpath(item).split(_os.path.sep) 283 result.extend([_posixpath.sep.join( 284 _os.path.normpath(item).split(_os.path.sep) 292 result.append(_posixpath.sep.join( [all …]
|
/external/mesa3d/src/gallium/tools/trace/ |
D | model.py | 174 sep = '' 176 self.formatter.text(sep) 178 sep = ', ' 183 sep = '' 185 self.formatter.text(sep) 189 sep = ', ' 202 sep = '' 204 self.formatter.text(sep) 208 sep = ', '
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_format_table.py | 113 sep = "," 115 sep = "" 117 …annel.type], bool_map(channel.norm), bool_map(channel.pure), channel.size, sep, "xyzw"[i], channel… 119 print " {0, 0, 0, 0}%s" % (sep,) 125 sep = "," 127 sep = "" 132 print " %s%s\t/* %s */" % (swizzle_map[swizzle], sep, comment)
|
/external/linux-tools-perf/src/tools/perf/util/ |
D | intlist.c | 78 char *sep; in intlist__parse_list() local 82 long value = strtol(s, &sep, 10); in intlist__parse_list() 84 if (*sep != ',' && *sep != '\0') in intlist__parse_list() 89 s = sep + 1; in intlist__parse_list() 90 } while (*sep != '\0'); in intlist__parse_list()
|
/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 …]
|