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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/macros/
semi.s 5 .macro colon
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
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mri/
semi.s 5 colon macro macro
11 colon
  /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);
  /build/kati/testcase/
double_colon_rule.mk 8 # Merge a double colon rule with target specific variable is OK.
  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
tm1637.js 26 var colon = true; variable
45 display.setColon(colon = !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/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/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/jetty/src/java/org/eclipse/jetty/client/
Address.java 35 int colon = hostAndPort.indexOf(':'); local
36 if (colon >= 0)
38 host = hostAndPort.substring(0, colon);
39 port = Integer.parseInt(hostAndPort.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);
  /frameworks/av/media/libstagefright/foundation/
ADebug.cpp 52 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...]
  /external/harfbuzz_ng/src/
hb-buffer-deserialize-json.rl 73 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/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/tcpdump/
print-esp.c 260 char *colon, *p; local
262 colon = strchr(decode, ':');
263 if (colon == NULL) {
267 *colon = '\0';
295 colon++;
296 if (colon[0] == '0' && colon[1] == 'x') {
299 colon += 2;
300 sa->secretlen = espprint_decode_hex(ndo, sa->secret, sizeof(sa->secret), colon);
303 i = strlen(colon);
326 char *colon; local
    [all...]
  /external/valgrind/tests/
s390x_features.c 206 char *colon; local
250 colon = strchr(cpu, ':');
252 if (colon == NULL) {
255 } else if (colon == cpu) {
259 } else if (colon[1] == '\0') {
261 *colon = '\0';
264 *colon = ':';
267 *colon = '\0';
269 to = locate_model(colon + 1);
270 *colon = ':'
    [all...]
  /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/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));
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/elf/
file.d 13 0+ l[ ]*df \*ABS\*[ ]+0+ :colon
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ilp32/elf/
file.d 14 0+ l[ ]*df \*ABS\*[ ]+0+ :colon
  /bootable/recovery/applypatch/
main.cpp 57 char* colon = strchr(argv[i], ':'); local
58 if (colon == nullptr) {
62 *colon = '\0';
63 ++colon;
71 if (LoadFileContents(colon, &fc) != 0) {
  /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);

Completed in 386 milliseconds

1 2 3 4 5 6 7 8 91011>>