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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mri/
semi.s 5 colon macro macro
11 colon
  /toolchain/binutils/binutils-2.25/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
  /external/libmicrohttpd/src/examples/
mhd2spdy_structures.c 74 char *colon; local
95 colon = strrchr((*uri)->host_and_port, ':');
96 if(NULL == colon)
104 port = atoi(colon + 1);
111 asprintf(&((*uri)->host), "%.*s", (int)(colon - (*uri)->host_and_port), (*uri)->host_and_port);
  /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 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);
  /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;
  /bionic/libc/upstream-openbsd/lib/libc/gen/
fnmatch.c 102 const char *colon; local
114 if ((colon = strchr(pattern, ':')) == NULL || colon[1] != ']') {
118 *ep = colon + 2;
119 len = (size_t)(colon - pattern);
  /external/iproute2/ip/
iplink_vlan.c 61 char *colon = strchr(*argv, ':'); local
63 if (!colon)
65 *colon = '\0';
69 if (get_u32(&m.to, colon + 1, 0))
  /external/libvncserver/libvncclient/
vncviewer.c 330 char* colon=strchr(argv[i+1],':'); local
337 if(colon) {
338 client->destHost[(int)(colon-argv[i+1])] = '\0';
339 client->destPort = atoi(colon+1);
343 char* colon=strchr(argv[i],':'); local
348 if(colon) {
350 client->serverHost[(int)(colon-argv[i])] = '\0';
351 client->serverPort = atoi(colon+1);
  /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/vogar/src/vogar/
SshTarget.java 43 int colon = hostAndPort.indexOf(":"); local
44 if (colon != -1) {
45 host = hostAndPort.substring(0, colon);
46 port = Integer.parseInt(hostAndPort.substring(colon + 1));
  /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...]
  /frameworks/compile/mclinker/include/mcld/Support/
Path.h 37 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/iproute2/misc/
lnstat_util.c 303 const char *colon = strchr(name, ':'); local
307 if (colon) {
308 file = strndup(name, colon-name);
309 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 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...]
  /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 != ':')
  /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/coregrind/
launcher-linux.c 90 const char *colon; local
105 if ((colon = strchr(path, ':')) == NULL)
112 strncpy(fullname, path, colon - path);
113 fullname[colon - path] = '\0';
114 path = colon + 1;
  /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...]
  /frameworks/base/tools/bit/
aapt.cpp 195 size_t colon = str.find(':'); local
196 if (colon == string::npos) {
199 element->ns = scope->namespaces[string(str, 0, colon)];
200 element->name.assign(str, colon+1, string::npos);
220 size_t colon = str.find(':'); local
221 if (colon == string::npos) {
224 attr.ns = scope->namespaces[string(str, 0, colon)];
225 attr.name.assign(str, colon+1, string::npos);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttributeInfo.java 255 int colon = url.lastIndexOf(':', typeEnd); local
256 if (colon != -1) {
257 typeBegin = colon + 1;
264 // Also validate that the prefix before the colon is either

Completed in 818 milliseconds

1 2 3 4 5 6 7 8 91011>>