Home
last modified time | relevance | path

Searched refs:colon (Results 1 – 25 of 226) sorted by relevance

12345678910

/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/data/tokenization/
DnamedEntities.test5 "description": "Named entity: AElig without a semi-colon",
16 "description": "Named entity: AElig; with a semi-colon",
26 "description": "Named entity: AMP without a semi-colon",
37 "description": "Named entity: AMP; with a semi-colon",
47 "description": "Named entity: Aacute without a semi-colon",
58 "description": "Named entity: Aacute; with a semi-colon",
68 "description": "Bad named entity: Abreve without a semi-colon",
79 "description": "Named entity: Abreve; with a semi-colon",
89 "description": "Named entity: Acirc without a semi-colon",
100 "description": "Named entity: Acirc; with a semi-colon",
[all …]
/external/iptables/extensions/
Dlibip6t_DNAT.c49 char *arg, *start, *end = NULL, *colon = NULL, *dash, *error; in parse_to() local
60 colon = strchr(arg, ':'); in parse_to()
61 if (colon && strchr(colon+1, ':')) in parse_to()
62 colon = NULL; in parse_to()
72 colon = strchr(end + 1, ':'); in parse_to()
75 if (colon) { in parse_to()
84 port = atoi(colon+1); in parse_to()
87 "Port `%s' not valid\n", colon+1); in parse_to()
89 error = strchr(colon+1, ':'); in parse_to()
94 dash = strchr(colon, '-'); in parse_to()
[all …]
Dlibip6t_SNAT.c49 char *arg, *start, *end = NULL, *colon = NULL, *dash, *error; in parse_to() local
60 colon = strchr(arg, ':'); in parse_to()
61 if (colon && strchr(colon+1, ':')) in parse_to()
62 colon = NULL; in parse_to()
72 colon = strchr(end + 1, ':'); in parse_to()
75 if (colon) { in parse_to()
84 port = atoi(colon+1); in parse_to()
87 "Port `%s' not valid\n", colon+1); in parse_to()
89 error = strchr(colon+1, ':'); in parse_to()
94 dash = strchr(colon, '-'); in parse_to()
[all …]
Dlibipt_DNAT.c70 char *arg, *colon, *dash, *error; in parse_to() local
77 colon = strchr(arg, ':'); in parse_to()
79 if (colon) { in parse_to()
88 port = atoi(colon+1); in parse_to()
91 "Port `%s' not valid\n", colon+1); in parse_to()
93 error = strchr(colon+1, ':'); in parse_to()
98 dash = strchr(colon, '-'); in parse_to()
113 "Port range `%s' funky\n", colon+1); in parse_to()
118 if (colon == arg) { in parse_to()
122 *colon = '\0'; in parse_to()
[all …]
/external/valgrind/tests/
Ds390x_features.c206 char *colon; in go() local
250 colon = strchr(cpu, ':'); in go()
252 if (colon == NULL) { in go()
255 } else if (colon == cpu) { in go()
259 } else if (colon[1] == '\0') { in go()
261 *colon = '\0'; in go()
264 *colon = ':'; in go()
267 *colon = '\0'; in go()
269 to = locate_model(colon + 1); in go()
270 *colon = ':'; in go()
/external/tcpdump/
Dprint-esp.c231 char *colon, *p; in espprint_decode_encalgo() local
233 colon = strchr(decode, ':'); in espprint_decode_encalgo()
234 if (colon == NULL) { in espprint_decode_encalgo()
238 *colon = '\0'; in espprint_decode_encalgo()
266 colon++; in espprint_decode_encalgo()
267 if (colon[0] == '0' && colon[1] == 'x') { in espprint_decode_encalgo()
270 colon += 2; in espprint_decode_encalgo()
271 sa->secretlen = espprint_decode_hex(ndo, sa->secret, sizeof(sa->secret), colon); in espprint_decode_encalgo()
274 i = strlen(colon); in espprint_decode_encalgo()
277 memcpy(sa->secret, colon, i); in espprint_decode_encalgo()
[all …]
/external/nist-sip/java/gov/nist/javax/sip/stack/
DHopImpl.java100 int colon = hop.indexOf(':',brack); in HopImpl() local
101 int slash = hop.indexOf('/',colon); in HopImpl()
103 if (colon>0) { in HopImpl()
104 this.host = hop.substring(0,colon); in HopImpl()
107 portstr = hop.substring(colon+1,slash); in HopImpl()
110 portstr = hop.substring(colon+1); in HopImpl()
/external/libxml2/result/
Dent_738805.xml.rde9 something should appear after colon: something
10 something should appear after colon: something
11 something should appear after colon: something
12 something should appear after colon: something
Dent_738805.xml.rdr11 1 3 #text 0 1 should appear after colon:
16 1 3 #text 0 1 should appear after colon:
21 1 3 #text 0 1 should appear after colon:
26 1 3 #text 0 1 should appear after colon:
Dent_738805.xml.sax23 SAX.characters( should appear after colon: , 28)
34 SAX.characters( should appear after colon: , 28)
43 SAX.characters( should appear after colon: , 28)
56 SAX.characters( should appear after colon: , 28)
Dent_738805.xml.sax223 SAX.characters( should appear after colon: , 28)
34 SAX.characters( should appear after colon: , 28)
43 SAX.characters( should appear after colon: , 28)
56 SAX.characters( should appear after colon: , 28)
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DQName.java29 int colon = qname.indexOf(':'); in QName() local
31 if (colon >= 0) in QName()
33 prefix = qname.substring(0, colon); in QName()
34 localName = qname.substring(colon + 1); in QName()
/external/ant-glob/src/org/apache/tools/ant/util/
DFileUtils.java136 int colon = filename.indexOf(':'); in isAbsolutePath() local
137 return (Character.isLetter(c) && colon == 1 in isAbsolutePath()
139 || (ON_NETWARE && colon > 0); in isAbsolutePath()
158 int colon = path.indexOf(':'); in dissect() local
159 if (colon > 0 && (ON_DOS || ON_NETWARE)) { in dissect()
161 int next = colon + 1; in dissect()
/external/smali/baksmali/src/test/resources/LocalTest/
DLocalTest.smali9 ….local v0, "blah! This local name has some spaces, a colon, even a \nnewline!":I, "some sig info:\…
10 ….local v1, "blah! This local name has some spaces, a colon, even a \nnewline!":V, "some sig info:\…
11 .local v2, "blah! This local name has some spaces, a colon, even a \nnewline!":I
12 .local v3, "blah! This local name has some spaces, a colon, even a \nnewline!":V
24 .param p0, "blah! This local name has some spaces, a colon, even a \nnewline!" # I
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DTreeWalker.java331 final int colon = attrName.indexOf(':'); in startNode() local
340 if (colon < 0) in startNode()
343 prefix = attrName.substring(colon + 1); in startNode()
348 else if (colon > 0) { in startNode()
349 prefix = attrName.substring(0,colon); in startNode()
478 final int colon = attrName.indexOf(':'); in endNode() local
486 if (colon < 0) in endNode()
489 prefix = attrName.substring(colon + 1); in endNode()
493 else if (colon > 0) { in endNode()
494 prefix = attrName.substring(0, colon); in endNode()
/external/tagsoup/src/org/ccil/cowan/tagsoup/
DElementType.java70 int colon = name.indexOf(':'); in namespace() local
71 if (colon == -1) { in namespace()
74 String prefix = name.substring(0, colon); in namespace()
89 int colon = name.indexOf(':'); in localName() local
90 if (colon == -1) { in localName()
94 return name.substring(colon+1).intern(); in localName()
/external/jetty/src/java/org/eclipse/jetty/client/
DAddress.java35 int colon = hostAndPort.indexOf(':'); in from() local
36 if (colon >= 0) in from()
38 host = hostAndPort.substring(0, colon); in from()
39 port = Integer.parseInt(hostAndPort.substring(colon + 1)); in from()
/external/apache-http/src/org/apache/http/message/
DBufferedHeader.java89 int colon = buffer.indexOf(':'); in BufferedHeader() local
90 if (colon == -1) { in BufferedHeader()
94 String s = buffer.substringTrimmed(0, colon); in BufferedHeader()
101 this.valuePos = colon + 1; in BufferedHeader()
/external/harfbuzz_ng/src/
Dhb-buffer-deserialize-json.rl73 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/apache-xml/src/main/java/org/apache/xml/utils/
DXML11Char.java415 final int colon = str.indexOf(':'); in isXML11ValidQName() local
417 if (colon == 0 || colon == str.length() - 1) { in isXML11ValidQName()
421 if (colon > 0) { in isXML11ValidQName()
422 final String prefix = str.substring(0,colon); in isXML11ValidQName()
423 final String localPart = str.substring(colon+1); in isXML11ValidQName()
DXMLChar.java652 final int colon = str.indexOf(':'); in isValidQName() local
654 if (colon == 0 || colon == str.length() - 1) { in isValidQName()
658 if (colon > 0) { in isValidQName()
659 final String prefix = str.substring(0,colon); in isValidQName()
660 final String localPart = str.substring(colon+1); in isValidQName()
/external/vogar/src/vogar/
DSshTarget.java40 int colon = hostAndPort.indexOf(":"); in SshTarget() local
41 if (colon != -1) { in SshTarget()
42 host = hostAndPort.substring(0, colon); in SshTarget()
43 port = Integer.parseInt(hostAndPort.substring(colon + 1)); in SshTarget()
/external/owasp/sanitizer/src/tests/org/owasp/html/
DCssTokensTest.java202 int colon = golden.lastIndexOf(':'); in testIdentReencoding() local
203 if (colon >= 0) { // Unambiguous since : not allowed in identifier. in testIdentReencoding()
204 type = TokenType.valueOf(golden.substring(colon + 1)); in testIdentReencoding()
205 golden = golden.substring(0, colon); in testIdentReencoding()
402 int colon = golden.lastIndexOf(':'); in assertTokens() local
404 golden.substring(0, colon) + ":" in assertTokens()
405 + CssTokens.TokenType.valueOf(golden.substring(colon+1)).name()); in assertTokens()
/external/libnl/lib/route/
Dtc.c522 char *colon, *end; in rtnl_tc_str2handle() local
535 h = strtoul(name, &colon, 16); in rtnl_tc_str2handle()
537 if (colon == name) { in rtnl_tc_str2handle()
540 if (':' != *colon) in rtnl_tc_str2handle()
544 if (':' == *colon) { in rtnl_tc_str2handle()
550 if ('\0' == colon[1]) { in rtnl_tc_str2handle()
555 uint32_t l = strtoul(colon+1, &end, 16); in rtnl_tc_str2handle()
566 } else if ('\0' == *colon) { in rtnl_tc_str2handle()
/external/libvncserver/libvncclient/
Dvncviewer.c297 char* colon=strchr(argv[i+1],':'); in rfbInitClient() local
304 if(colon) { in rfbInitClient()
305 client->destHost[(int)(colon-argv[i+1])] = '\0'; in rfbInitClient()
306 client->destPort = atoi(colon+1); in rfbInitClient()
310 char* colon=strchr(argv[i],':'); in rfbInitClient() local
315 if(colon) { in rfbInitClient()
317 client->serverHost[(int)(colon-argv[i])] = '\0'; in rfbInitClient()
318 client->serverPort = atoi(colon+1); in rfbInitClient()

12345678910