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

1 2 3 4 5 6 7 8

  /external/chromium_org/media/blink/
cache_util_unittest.cc 39 size_t colon = lines[i].find(": "); local
41 WebString::fromUTF8(lines[i].substr(0, colon)),
42 WebString::fromUTF8(lines[i].substr(colon + 2)));
  /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/benchmarks/src/benchmarks/regression/
SchemePrefixBenchmark.java 30 int colon = spec.indexOf(':'); local
32 if (colon < 1) {
36 for (int i = 0; i < colon; i++) {
43 return spec.substring(0, colon).toLowerCase(Locale.US);
  /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) != 0) {
  /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;
  /external/chromium_org/net/proxy/
proxy_server.cc 105 std::string::const_iterator colon = std::find(begin, end, ':'); local
106 if (colon != end &&
107 (end - colon) >= 3 &&
108 *(colon + 1) == '/' &&
109 *(colon + 2) == '/') {
110 scheme = GetSchemeFromURIInternal(begin, colon);
111 begin = colon + 3; // Skip past the "://"
  /external/chromium_org/tools/gn/
label_pattern.cc 124 size_t colon = str.find(':'); local
125 if (colon == std::string::npos) {
128 path = str.substr(0, colon);
129 name = str.substr(colon + 1);
180 if (colon != std::string::npos && name != "*") {
  /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))
  /frameworks/av/media/libstagefright/foundation/
ADebug.cpp 50 char *colon = strchr(current, ':'); local
59 if (errno != 0 || end == current || (end != colon && *end != '\0' && end != next)) {
63 if (colon != NULL) {
65 do { // skip colon and spaces
66 ++colon;
67 } while (isspace(*colon));
68 size_t globLen = (next == NULL ? strlen(colon) : (next - 1 - colon));
69 while (globLen > 0 && isspace(colon[globLen - 1])) {
74 colon, globLen, name, strlen(name), true /* ignoreCase */))
    [all...]
  /packages/apps/Browser/src/com/android/browser/
UrlUtils.java 140 int colon = inUrl.indexOf(':'); local
142 for (int index = 0; index < colon; index++) {
148 if (index == colon - 1 && !allLower) {
149 inUrl = inUrl.substring(0, colon).toLowerCase()
150 + inUrl.substring(colon);
  /bionic/libc/upstream-openbsd/lib/libc/gen/
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/ltrace/
glob.c 31 const char *colon = memchr(glob + from + 2, ':', length - 1); local
32 if (colon == NULL || colon[1] != ']')
34 return colon - glob;
  /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);
  /frameworks/compile/mclinker/include/mcld/Support/
Path.h 36 const char colon = ':'; member in namespace:mcld::sys::fs
  /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);
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
fake_pepper_interface_url_loader.cc 26 // Find the next colon; this separates the key from the value.
27 size_t colon = headers.find(':', offset); local
28 if (colon == std::string::npos)
40 size_t nonspace = headers.find_first_not_of(' ', colon + 1);
  /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/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/
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 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...]
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/libunwind/src/
os-linux.h 209 char perm[16], dash = 0, colon = 0, *cp; local
272 cp = scan_char (cp, &colon);
279 if (dash != '-' || colon != ':')

Completed in 751 milliseconds

1 2 3 4 5 6 7 8