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

12 3 4 5 6 7 8

  /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 86 const char *colon; local
101 if ((colon = strchr(path, ':')) == NULL)
108 strncpy(fullname, path, colon - path);
109 fullname[colon - path] = '\0';
110 path = colon + 1;
launcher-darwin.c 103 const char *colon; local
107 if ((colon = strchr(path, ':')) == NULL)
114 memcpy(fullname, path, colon - path);
115 fullname[colon - path] = '\0';
116 path = colon + 1;
  /external/valgrind/main/tests/
s390x_features.c 205 char *colon; local
249 colon = strchr(cpu, ':');
251 if (colon == NULL) {
254 } else if (colon == cpu) {
258 } else if (colon[1] == '\0') {
260 *colon = '\0';
263 *colon = ':';
266 *colon = '\0';
268 to = locate_model(colon + 1);
269 *colon = ':'
    [all...]
  /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
  /art/runtime/
parsed_options.cc 857 std::string::size_type colon = s.find(c); local
868 std::string::size_type colon = s.find(after_char); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
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/chromium_org/third_party/WebKit/Source/core/xml/
XPathParser.cpp 453 size_t colon = qName.find(':'); local
454 if (colon != kNotFound) {
457 namespaceURI = m_resolver->lookupNamespaceURI(qName.left(colon));
460 localName = AtomicString(qName.substring(colon + 1));
  /external/chromium_org/third_party/skia/tools/
bench_pictures_main.cpp 261 const char* colon = strchr(filters, ':'); local
262 if (colon) {
264 size_t typeLen = colon - filters;
282 && !strncmp(colon + 1, gFilterFlags[fIndex], flagLen)) {
302 err.printf("Unknown arg for --filter %s : missing colon\n", filters);
  /external/chromium_org/third_party/webrtc/base/
socketaddress.cc 185 std::string::size_type colon = str.find(':', closebracket); local
186 if (colon != std::string::npos && colon > closebracket) {
187 SetPort(strtoul(str.substr(colon + 1).c_str(), NULL, 10));
win32.cc 229 const char* colon = rtc::strchr(addrstart, "::"); local
230 if (colon) {
240 addrstart = colon + 1;
  /external/libnl/lib/route/
tc.c 522 char *colon, *end; local
535 h = strtoul(name, &colon, 16);
537 if (colon == name) {
540 if (':' != *colon)
544 if (':' == *colon) {
550 if ('\0' == colon[1]) {
555 uint32_t l = strtoul(colon+1, &end, 16);
566 } else if ('\0' == *colon) {
  /external/libunwind/tests/
test-coredump-unwind.c 316 char *colon; local
317 long vaddr = strtol(*argv, &colon, 16);
318 if (*colon != ':')
320 if (_UCD_add_backing_file_at_vaddr(ui, vaddr, colon + 1) < 0)
321 error_msg_and_die("Can't add backing file '%s'", colon + 1);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
help.c 172 char *paths, *path, *colon; local
175 if ((colon = strchr(path, PATH_SEP)))
176 *colon = 0;
180 if (!colon)
182 path = colon + 1;
  /external/skia/tools/
bench_pictures_main.cpp 237 const char* colon = strchr(filters, ':'); local
238 if (colon) {
240 size_t typeLen = colon - filters;
258 && !strncmp(colon + 1, gFilterFlags[fIndex], flagLen)) {
278 err.printf("Unknown arg for --filter %s : missing colon\n", filters);
  /external/smack/src/org/xbill/DNS/
APLRecord.java 191 int colon = s.indexOf(':', start); local
192 if (colon < 0)
194 int slash = s.indexOf('/', colon);
198 String familyString = s.substring(start, colon);
199 String addressString = s.substring(colon + 1, slash);
  /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/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_org/extensions/browser/api/cast_channel/
cast_channel_api.cc 281 size_t colon = path.find_last_of(':'); local
282 if (colon == std::string::npos || colon < 3 || colon > path.size() - 2) {
285 const std::string& ip_address_str = path.substr(2, colon - 2);
286 const std::string& port_str = path.substr(colon + 1);
  /external/chromium_org/net/websockets/
websocket_handshake_handler.cc 72 std::string::const_iterator colon = std::find(line_begin, line_end, ':'); local
73 if (colon == line_end) {
77 *name_end = colon;
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
MediaQueryTokenizer.cpp 170 MediaQueryToken MediaQueryTokenizer::colon(UChar cc) function in class:blink::MediaQueryTokenizer
  /external/chromium_org/third_party/boringssl/src/crypto/err/
err.c 365 /* output may be truncated; make sure we always have 5 colon-separated
378 char *colon = strchr(s, ':'); local
381 if (colon == NULL || colon > last_pos) {
382 /* set colon |i| at last possible position (buf[len-1] is the
383 * terminating 0). If we're setting this colon, then all whole of the
390 s = colon + 1;
  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
call_main.cc 375 int colon = server.find(':'); local
376 if (colon == -1) {
380 host = server.substr(0, colon);
381 port = atoi(server.substr(colon + 1).c_str());
  /external/chromium_org/url/third_party/mozilla/
url_parse.cc 74 // Find the first colon in the user section, which separates the username and
111 int colon = -1; local
113 // Find the last right-bracket, and the last colon.
120 colon = i;
125 if (colon > ipv6_terminator) {
127 *hostname = MakeRange(serverinfo.begin, colon);
130 *port_num = MakeRange(colon + 1, serverinfo.end());
257 // Find the first colon character.
264 return false; // No colon found: no scheme
271 // colon) where we'll begin parsing
    [all...]
  /external/llvm/lib/TableGen/
TGLexer.h 40 colon, semi, // : ; enumerator in enum:llvm::tgtok::TokKind

Completed in 876 milliseconds

12 3 4 5 6 7 8