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

1 2 3 4 5

  /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/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;
  /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/tcpdump/
print-esp.c 221 char *colon, *p; local
232 colon = strchr(decode, ':');
233 if (colon == NULL) {
237 *colon = '\0';
239 len = colon - decode;
265 colon++;
266 if (colon[0] == '0' && colon[1] == 'x') {
268 colon += 2;
269 len = strlen(colon) / 2
    [all...]
  /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);
  /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/webkit/Source/WebKit/mac/Misc/
WebNSDataExtras.m 355 const UInt8 *colon;
356 for (colon = line; *colon != ':' && colon != eol; colon ++) {
359 if (colon == eol) {
364 lastKey = (NSString *)CFMakeCollectable(CFStringCreateWithBytes(NULL, line, colon - line, kCFStringEncodingISOLatin1, FALSE));
368 for (colon++; colon != eol; colon++)
    [all...]
  /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);
  /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/apache-xml/src/main/java/org/apache/xml/serializer/
TreeWalker.java 331 final int colon = attrName.indexOf(':'); local
340 if (colon < 0)
343 prefix = attrName.substring(colon + 1);
348 else if (colon > 0) {
349 prefix = attrName.substring(0,colon);
478 final int colon = attrName.indexOf(':'); local
486 if (colon < 0)
489 prefix = attrName.substring(colon + 1);
493 else if (colon > 0) {
494 prefix = attrName.substring(0, colon);
    [all...]
  /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/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/dropbear/
scpmisc.h 25 char *colon(char *);
  /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))
  /external/ipsec-tools/src/libipsec/
policy_token.l 77 colon \:
140 unique{colon}{decstring} {
  /external/webkit/LayoutTests/fast/url/script-tests/
port.js 10 // Empty ports (just a colon) should also be removed
  /ndk/sources/host-tools/make-3.81/
expand.c 251 char *end, *colon;
302 colon = lindex (beg, end, ':');
303 if (colon)
308 subst_beg = colon + 1;
313 a colon, in the code below. */
314 colon = 0;
320 /* Extract the variable name before the colon
322 v = lookup_variable (beg, colon - beg);
324 warn_undefined (beg, colon - beg);
375 if (colon == 0
249 char *end, *colon; local
    [all...]
  /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);
  /external/bluetooth/glib/gio/xdgmime/
xdgmimeglob.c 573 char *colon, *colon2; local
580 colon = strchr (line, ':');
581 if (colon == NULL)
583 *(colon++) = '\0';
584 colon[strlen (colon) -1] = '\0';
585 colon2 = strchr (colon, ':');
590 mimetype = colon;
597 glob = colon;
  /external/valgrind/main/coregrind/
launcher-linux.c 96 const char *colon; local
100 if ((colon = strchr(path, ':')) == NULL)
107 memcpy(fullname, path, colon - path);
108 fullname[colon - path] = '\0';
109 path = colon + 1;
  /external/chromium/third_party/libjingle/source/talk/base/
httpcommon-inl.h 63 if (const CTYPE* colon = strchrn(val, len, static_cast<CTYPE>(':'))) {
64 host_.assign(val, colon - val);
65 // Note: In every case, we're guaranteed that colon is followed by a null,
67 port_ = static_cast<uint16>(::strtoul(colon + 1, NULL, 10));
  /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;
  /build/core/tasks/
sdk-addon.mk 44 $(eval _src := $(call module-stubs-files,$(call word-colon,1,$(cf)))) \
47 $(if $(_src),,$(eval $(error Unknown or unlinkable module: $(call word-colon,1,$(cf)). Requested by $(INTERNAL_PRODUCT)))) \
48 $(eval _dest := $(call word-colon,2,$(cf))) \
66 $(eval _src := $(call word-colon,1,$(cf))) \
67 $(eval _dest := $(call append-path,$(staging),$(call word-colon,2,$(cf)))) \

Completed in 1543 milliseconds

1 2 3 4 5