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

1 2 3 4 5

  /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);
  /libcore/luni/src/main/java/libcore/net/url/
UrlUtils.java 102 int colon = spec.indexOf(':'); local
104 if (colon < 1) {
108 for (int i = 0; i < colon; i++) {
115 return spec.substring(0, colon).toLowerCase(Locale.US);
  /bootable/recovery/applypatch/
main.c 61 char* colon = strchr(argv[i], ':'); local
62 if (colon != NULL) {
63 *colon = '\0';
64 ++colon;
73 if (colon == NULL) {
77 if (LoadFileContents(colon, &fc, RETOUCH_DONT_MASK) != 0) {
  /external/apache-http/src/org/apache/http/message/
BufferedHeader.java 84 int colon = buffer.indexOf(':'); local
85 if (colon == -1) {
89 String s = buffer.substringTrimmed(0, colon);
96 this.valuePos = colon + 1;
  /external/chromium/net/proxy/
proxy_server.cc 109 std::string::const_iterator colon = std::find(begin, end, ':'); local
110 if (colon != end &&
111 (end - colon) >= 3 &&
112 *(colon + 1) == '/' &&
113 *(colon + 2) == '/') {
114 scheme = GetSchemeFromURIInternal(begin, colon);
115 begin = colon + 3; // Skip past the "://"
  /external/iproute2/ip/
iplink_vlan.c 54 char *colon = strchr(*argv, ':'); local
56 if (!colon)
58 *colon = '\0';
62 if (get_u32(&m.to, colon + 1, 0))
  /packages/apps/Browser/src/com/android/browser/
UrlUtils.java 139 int colon = inUrl.indexOf(':'); local
141 for (int index = 0; index < colon; index++) {
147 if (index == colon - 1 && !allLower) {
148 inUrl = inUrl.substring(0, colon).toLowerCase()
149 + inUrl.substring(colon);
  /bionic/libc/unistd/
fnmatch.c 103 const char *colon; local
115 if ((colon = strchr(pattern, ':')) == NULL || colon[1] != ']') {
119 *ep = colon + 2;
120 len = (size_t)(colon - pattern);
  /external/clang/test/Analysis/
ptr-arith.c 30 const char *colon = memchr (domain_b, ':', domain_e - domain_b); local
32 for (p = colon + 1; p < domain_e ; p++)
  /external/dropbear/
scpmisc.c 116 colon(char *cp) function
120 if (*cp == ':') /* Leading colon is part of file name. */
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
AssetConfig.java 67 String colon = scan.next(); local
68 if (!colon.equals(":")){
69 throw new IOException("Expected ':', got '"+colon+"'");
  /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/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;
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XML11Char.java 415 final int colon = str.indexOf(':'); local
417 if (colon == 0 || colon == str.length() - 1) {
421 if (colon > 0) {
422 final String prefix = str.substring(0,colon);
423 final String localPart = str.substring(colon+1);
XMLChar.java 652 final int colon = str.indexOf(':'); local
654 if (colon == 0 || colon == str.length() - 1) {
658 if (colon > 0) {
659 final String prefix = str.substring(0,colon);
660 final String localPart = str.substring(colon+1);
  /external/iproute2/misc/
lnstat_util.c 299 const char *colon = strchr(name, ':'); local
303 if (colon) {
304 file = strndup(name, colon-name);
305 field = colon+1;
  /external/iptables/extensions/
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 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...]
  /external/quake/quake/src/QW/client/
net_udp.c 123 char *colon; local
134 for (colon = copy ; *colon ; colon++)
135 if (*colon == ':')
137 *colon = 0;
138 sadr.sin_port = htons(atoi(colon+1));
net_wins.c 99 char *colon; local
110 for (colon = copy ; *colon ; colon++)
111 if (*colon == ':')
113 *colon = 0;
114 sadr.sin_port = htons((short)atoi(colon+1));
  /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();
  /external/valgrind/main/coregrind/
launcher-linux.c 90 const char *colon; local
94 if ((colon = strchr(path, ':')) == NULL)
101 memcpy(fullname, path, colon - path);
102 fullname[colon - path] = '\0';
103 path = colon + 1;
  /external/valgrind/main/tests/
s390x_features.c 197 char *colon; local
233 colon = strchr(cpu, ':');
235 if (colon == NULL) {
238 } else if (colon == cpu) {
242 } else if (colon[1] == '\0') {
244 *colon = '\0';
247 *colon = ':';
250 *colon = '\0';
252 to = locate_model(colon + 1);
253 *colon = ':'
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttributeInfo.java 249 int colon = url.lastIndexOf(':', typeEnd); local
250 if (colon != -1) {
251 typeBegin = colon + 1;
258 // Also validate that the prefix before the colon is either
  /external/chromium/googleurl/src/
url_parse.cc 72 // Find the first colon in the user section, which separates the username and
109 int colon = -1; local
111 // Find the last right-bracket, and the last colon.
118 colon = i;
123 if (colon > ipv6_terminator) {
125 *hostname = MakeRange(serverinfo.begin, colon);
128 *port_num = MakeRange(colon + 1, serverinfo.end());
255 // Find the first colon character.
262 return false; // No colon found: no scheme
269 // colon) where we'll begin parsing
    [all...]

Completed in 542 milliseconds

1 2 3 4 5