HomeSort by relevance Sort by last modified time
    Searched refs:colon (Results 51 - 75 of 801) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/syslinux/com32/gdbstub/
gdbstub.c 414 int colon; local
416 (stub, args, sizeof args / sizeof args[0], &colon) || colon >= stub->len
417 || stub->payload[colon] != ':' || (stub->len - colon - 1) % 2 != 0) {
421 gdbstub_from_hex_buf((char *)args[0], &stub->payload[colon + 1],
422 (stub->len - colon - 1) / 2);
  /external/kmod/tools/
modinfo.c 91 const char *colon = strchr(value, ':'); local
92 if (colon == NULL) {
99 namelen = colon - value;
101 param = colon + 1;
108 type = colon + 1;
  /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/valgrind/coregrind/
launcher-darwin.c 107 const char *colon; local
111 if ((colon = strchr(path, ':')) == NULL)
118 memcpy(fullname, path, colon - path);
119 fullname[colon - path] = '\0';
120 path = colon + 1;
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;
  /frameworks/opt/net/voip/src/java/android/net/sip/
SimpleSessionDescription.java 434 int colon = encryption.indexOf(':'); local
435 return (colon == -1) ? encryption : encryption.substring(0, colon);
446 int colon = encryption.indexOf(':'); local
447 return (colon == -1) ? null : encryption.substring(0, colon + 1);
  /external/wpa_supplicant_8/src/wps/
upnp_xml.c 50 * (and ?), but may have an inner structure of <namespace><colon><plain_label>.
73 * colon) and then the tag name itself.
183 * s: might be some other namespace name followed by colon
184 * u: might be some other namespace name followed by colon
  /prebuilts/go/darwin-x86/src/html/template/
attr.go 146 } else if colon := strings.IndexRune(name, ':'); colon != -1 {
147 if name[:colon] == "xmlns" {
151 name = name[colon+1:]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug274.go 10 // statements and because the last token is a colon ":", no semicolon is
  /prebuilts/go/linux-x86/src/html/template/
attr.go 146 } else if colon := strings.IndexRune(name, ':'); colon != -1 {
147 if name[:colon] == "xmlns" {
151 name = name[colon+1:]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug274.go 10 // statements and because the last token is a colon ":", no semicolon is
  /external/swiftshader/third_party/LLVM/lib/TableGen/
TGLexer.h 39 colon, semi, // : ; enumerator in enum:llvm::tgtok::TokKind
  /external/webrtc/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;
  /prebuilts/tools/common/m2/repository/com/android/tools/external/ant-glob/1.0/
ant-glob-1.0.jar 
  /build/make/core/
dex_preopt_libart.mk 21 PRELOADED_CLASSES := $(call word-colon,1,$(firstword \
25 COMPILED_CLASSES := $(call word-colon,1,$(firstword \
29 DIRTY_IMAGE_OBJECTS := $(call word-colon,1,$(firstword \
  /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 != ':')
  /libcore/ojluni/src/main/java/java/io/
UnixFileSystem.java 37 private final char colon; field in class:UnixFileSystem
43 colon = AccessController.doPrivileged(
57 return colon;
  /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
  /external/boringssl/src/crypto/bio/
connect.c 139 const char *colon = strchr(name, ':'); local
140 if (colon == NULL || strchr(colon + 1, ':') != NULL) { /* IPv6 address */
145 host_len = colon - name;
146 port = colon + 1;
  /external/clang/lib/Parse/
ParseOpenMP.cpp 184 P.SkipUntil(tok::colon, tok::r_paren, tok::annot_pragma_openmp_end,
219 bool IsCorrect = !ExpectAndConsume(tok::colon);
226 if (Tok.is(tok::colon) || Tok.is(tok::annot_pragma_openmp_end)) {
248 SkipUntil(tok::comma, tok::colon, tok::annot_pragma_openmp_end,
252 if (Tok.is(tok::colon) || Tok.is(tok::annot_pragma_openmp_end))
274 if (ExpectAndConsume(tok::colon))
    [all...]
ParseStmt.cpp 182 if (Next.is(tok::colon)) { // C99 6.8.1: labeled-statement
413 if (Tok.is(tok::colon) && getCurScope()->isSwitchScope() &&
415 // If a constant expression is followed by a colon inside a switch block,
571 assert(Tok.is(tok::colon) && "Not a label!");
686 // current case statement (moving to the colon that ends it).
687 if (SkipUntil(tok::colon, tok::r_brace, StopAtSemi | StopBeforeMatch)) {
688 TryConsumeToken(tok::colon, ColonLoc);
705 if (SkipUntil(tok::colon, tok::r_brace, StopAtSemi | StopBeforeMatch)) {
706 TryConsumeToken(tok::colon, ColonLoc);
715 if (TryConsumeToken(tok::colon, ColonLoc))
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDocumentImpl.java 482 int colon=qName.indexOf(':'); local
483 if(colon>0)
484 prefix=qName.substring(0,colon);
503 colon=qName.indexOf(':');
504 if(colon>0)
506 prefix=qName.substring(0,colon);
531 colon=qName.indexOf(':');
532 if(colon>0)
534 prefix=qName.substring(0,colon);
535 localName=qName.substring(colon+1)
    [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/boringssl/src/crypto/err/
err.c 389 /* output may be truncated; make sure we always have 5 colon-separated
402 char *colon = strchr(s, ':'); local
405 if (colon == NULL || colon > last_pos) {
406 /* set colon |i| at last possible position (buf[len-1] is the
407 * terminating 0). If we're setting this colon, then all whole of the
414 s = colon + 1;

Completed in 3409 milliseconds

1 23 4 5 6 7 8 91011>>