HomeSort by relevance Sort by last modified time
    Searched refs:colon (Results 1 - 25 of 866) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/macros/
semi.s 5 .macro colon
11 colon
  /toolchain/binutils/binutils-2.27/gprof/
search_list.c 32 const char *beg, *colon;
35 colon = paths - 1;
38 beg = colon + 1;
39 colon = strchr (beg, PATH_SEP_CHAR);
41 if (colon)
42 len = colon - beg;
60 while (colon);
31 const char *beg, *colon; local
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mri/
semi.s 5 colon macro macro
11 colon
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/
test_fail.py 42 '{"Missing colon" null}',
44 '{"Double colon":: null}',
46 '{"Comma instead of colon", null}',
48 '["Colon instead of comma": false]',
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
QName.java 29 int colon = qname.indexOf(':'); local
31 if (colon >= 0)
33 prefix = qname.substring(0, colon);
34 localName = qname.substring(colon + 1);
  /external/python/cpython3/Lib/
macpath.py 43 On the Mac, relative paths begin with a colon,
45 Anything else is absolute (the string up to the first colon is the
48 colon = _get_colon(s)
49 return colon in s and s[:1] != colon
54 colon = _get_colon(s)
57 path[:0] + colon #23780: Ensure compatible data type even if p is null.
62 if t[:1] == colon:
64 if colon not in path:
65 path = colon + pat
    [all...]
  /build/kati/testcase/
double_colon_rule.mk 8 # Merge a double colon rule with target specific variable is OK.
  /external/nist-sip/java/gov/nist/javax/sip/stack/
HopImpl.java 100 int colon = hop.indexOf(':',brack); local
101 int slash = hop.indexOf('/',colon);
103 if (colon>0) {
104 this.host = hop.substring(0,colon);
107 portstr = hop.substring(colon+1,slash);
110 portstr = hop.substring(colon+1);
  /external/iptables/extensions/
libip6t_DNAT.c 49 char *arg, *start, *end = NULL, *colon = NULL, *dash, *error; local
59 /* Lets assume one colon is port information. Otherwise its an IPv6 address */
60 colon = strchr(arg, ':');
61 if (colon && strchr(colon+1, ':'))
62 colon = NULL;
72 colon = strchr(end + 1, ':');
75 if (colon) {
84 port = atoi(colon+1);
87 "Port `%s' not valid\n", colon+1)
    [all...]
libip6t_SNAT.c 52 char *arg, *start, *end = NULL, *colon = NULL, *dash, *error; local
62 /* Lets assume one colon is port information. Otherwise its an IPv6 address */
63 colon = strchr(arg, ':');
64 if (colon && strchr(colon+1, ':'))
65 colon = NULL;
75 colon = strchr(end + 1, ':');
78 if (colon) {
87 port = atoi(colon+1);
90 "Port `%s' not valid\n", colon+1)
    [all...]
libipt_DNAT.c 70 char *arg, *colon, *dash, *error; local
77 colon = strchr(arg, ':');
79 if (colon) {
88 port = atoi(colon+1);
91 "Port `%s' not valid\n", colon+1);
93 error = strchr(colon+1, ':');
98 dash = strchr(colon, '-');
113 "Port range `%s' funky\n", colon+1);
117 /* Starts with a colon? No IP info...*/
118 if (colon == arg)
    [all...]
libipt_SNAT.c 73 char *arg, *colon, *dash, *error; local
80 colon = strchr(arg, ':');
82 if (colon) {
91 port = atoi(colon+1);
94 "Port `%s' not valid\n", colon+1);
96 error = strchr(colon+1, ':');
101 dash = strchr(colon, '-');
116 "Port range `%s' funky\n", colon+1);
120 /* Starts with a colon? No IP info...*/
121 if (colon == arg)
    [all...]
  /external/apache-http/src/org/apache/http/message/
BufferedHeader.java 89 int colon = buffer.indexOf(':'); local
90 if (colon == -1) {
94 String s = buffer.substringTrimmed(0, colon);
101 this.valuePos = colon + 1;
  /libcore/benchmarks/src/benchmarks/regression/
SchemePrefixBenchmark.java 29 int colon = spec.indexOf(':'); local
31 if (colon < 1) {
35 for (int i = 0; i < colon; i++) {
42 return spec.substring(0, colon).toLowerCase(Locale.US);
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/multicast/
MulticastAddress.java 88 int colon = components[0].lastIndexOf(':'); local
89 if ((colon < 1) || (colon > (len-2)))
91 String groupString = target.substring(0, colon);
94 port = Integer.parseInt(target.substring(colon+1, len));
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/multicast/
MulticastAddress.java 88 int colon = components[0].lastIndexOf(':'); local
89 if ((colon < 1) || (colon > (len-2)))
91 String groupString = target.substring(0, colon);
94 port = Integer.parseInt(target.substring(colon+1, len));
  /frameworks/av/media/libstagefright/foundation/
ADebug.cpp 52 const char *colon = strchr(current, ':'); local
61 if (errno != 0 || end == current || (end != colon && *end != '\0' && end != next)) {
65 if (colon != NULL) {
67 do { // skip colon and spaces
68 ++colon;
69 } while (isspace(*colon));
70 size_t globLen = (next == NULL ? strlen(colon) : (next - 1 - colon));
71 while (globLen > 0 && isspace(colon[globLen - 1])) {
76 colon, globLen, name, strlen(name), true /* ignoreCase */))
    [all...]
  /external/harfbuzz_ng/src/
hb-buffer-deserialize-json.rl 73 colon = space* ':' space*;
81 glyph = "\"g\"" colon (glyph_string | glyph_number);
82 cluster = "\"cl\"" colon (unum >tok %parse_cluster);
83 xoffset = "\"dx\"" colon (num >tok %parse_x_offset);
84 yoffset = "\"dy\"" colon (num >tok %parse_y_offset);
85 xadvance= "\"ax\"" colon (num >tok %parse_x_advance);
86 yadvance= "\"ay\"" colon (num >tok %parse_y_advance);
  /external/ant-glob/src/org/apache/tools/ant/util/
FileUtils.java 136 int colon = filename.indexOf(':'); local
137 return (Character.isLetter(c) && colon == 1
139 || (ON_NETWARE && colon > 0);
158 int colon = path.indexOf(':'); local
159 if (colon > 0 && (ON_DOS || ON_NETWARE)) {
161 int next = colon + 1;
  /art/tools/ahat/src/main/com/android/ahat/proguard/
ProguardMap.java 222 int colon = type.indexOf(':'); local
223 if (colon != -1) {
224 obfuscatedLine = Integer.parseInt(type.substring(0, colon));
225 type = type.substring(colon + 1);
227 colon = type.indexOf(':');
228 if (colon != -1) {
229 type = type.substring(colon + 1);
242 colon = clearName.lastIndexOf(':');
243 if (colon != -1) {
244 clearLine = Integer.parseInt(clearName.substring(colon + 1))
    [all...]
  /external/libnl/lib/route/
classid.c 156 char *colon, *end; local
175 h = strtoul(str, &colon, 16);
178 if (colon == str) {
180 if (*colon == ':') {
187 if (!(colon = strpbrk(str, ":"))) {
192 len = colon - str;
206 if (colon[1] == '\0')
214 if (':' == *colon) {
220 if ('\0' == colon[1]) {
228 l = strtoul(colon+1, &end, 16)
    [all...]
  /external/valgrind/tests/
s390x_features.c 207 char *colon; local
253 colon = strchr(cpu, ':');
255 if (colon == NULL) {
258 } else if (colon == cpu) {
262 } else if (colon[1] == '\0') {
264 *colon = '\0';
267 *colon = ':';
270 *colon = '\0';
272 to = locate_model(colon + 1);
273 *colon = ':'
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ElementType.java 70 int colon = name.indexOf(':'); local
71 if (colon == -1) {
74 String prefix = name.substring(0, colon);
89 int colon = name.indexOf(':'); local
90 if (colon == -1) {
94 return name.substring(colon+1).intern();
  /hardware/interfaces/compatibility_matrices/
compatibility_matrix.mk 83 $(wildcard $(call word-colon,2,$(pair))/android-base*.cfg))
85 --kernel=$(call word-colon,1,$(pair)):$(call normalize-path-list,\
86 $(wildcard $(call word-colon,2,$(pair))/android-base*.cfg)))
  /external/curl/docs/cmdline-opts/
user.d 11 The user name and passwords are split up on the first colon, which makes it
12 impossible to use a colon in the user name with this option. The password can,
30 the user name and password from your environment by specifying a single colon

Completed in 939 milliseconds

1 2 3 4 5 6 7 8 91011>>