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

12 3 4 5

  /external/valgrind/main/coregrind/
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/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapeBrowserFuncs.cpp 183 const char* colon = line; local
184 while (*colon != ':' && colon != endOfLine)
185 colon++;
187 if (colon == endOfLine) {
192 lastHeaderKey = capitalizeRFC822HeaderFieldName(String(line, colon - line));
195 for (colon++; colon != endOfLine; colon++) {
196 if (*colon != ' ' && *colon != '\t'
    [all...]
  /frameworks/base/voip/java/android/net/sip/
SimpleSessionDescription.java 433 int colon = encryption.indexOf(':'); local
434 return (colon == -1) ? encryption : encryption.substring(0, colon);
445 int colon = encryption.indexOf(':'); local
446 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
  /external/chromium/third_party/libjingle/source/talk/examples/call/
call_main.cc 331 int colon = server.find(':'); local
332 if (colon == -1) {
336 host = server.substr(0, colon);
337 port = atoi(server.substr(colon + 1).c_str());
  /external/llvm/lib/TableGen/
TGLexer.h 39 colon, semi, // : ; enumerator in enum:llvm::tgtok::TokKind
  /external/quake/quake/src/WinQuake/
net_udp.cpp 144 char *colon; local
186 colon = Q_strrchr (my_tcpip_address, ':');
187 if (colon)
188 *colon = 0;
  /external/webkit/Source/WebCore/plugins/
PluginView.cpp 1204 const char* colon; local
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/url/src/
URLParser.h 103 // Find the first colon character.
110 return false; // No colon found: no scheme
118 // the colon) where we'll begin parsing.
158 afterScheme = parsed.scheme.end() + 1; // Skip past the colon.
160 // Say there's no scheme when there is a colon. We could also say
509 // Find the first colon in the user section, which separates the
543 int colon = -1; local
545 // Find the last right-bracket, and the last colon.
552 colon = i;
559 if (colon > ipv6Terminator)
    [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/bluetooth/glib/gio/
gfileinfo.c 182 const char *colon; local
200 colon = strstr (attribute, "::");
201 if (colon)
202 ns = g_strndup (attribute, colon - attribute);
1883 char *colon; local
    [all...]
  /cts/tools/vm-tests-tf/
Android.mk 56 colon:= : macro
71 $(hide) java -cp $(subst $(space),$(colon),$^):$(HOST_JDK_TOOLS_JAR) util.build.BuildDalvikSuite $(PRIVATE_SRC_FOLDER) $(PRIVATE_INTERMEDIATES) $<:$(PRIVATE_LIB_FOLDER)/junit.jar:$(HOST_OUT_JAVA_LIBRARIES)/tradefed-prebuilt.jar $(PRIVATE_INTERMEDIATES_MAIN_FILES) $(TF_BUILD_UTIL_INTERMEDIATES_CLASSES) $(PRIVATE_INTERMEDIATES_HOSTJUNIT_FILES) $$RUN_VM_TESTS_RTO
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-death-test.cc 691 const ::std::string::size_type colon = str.find(delimiter, pos); local
692 if (colon == ::std::string::npos) {
696 parsed.push_back(str.substr(pos, colon - pos));
697 pos = colon + 1;
  /external/webkit/LayoutTests/fast/url/script-tests/
file-http-base.js 20 // We should preserve the number of slashes after the colon for IE
30 // colon even though it's probably invalid, because its currently the
file.js 20 // We should preserve the number of slashes after the colon for IE
30 // colon even though it's probably invalid, because its currently the
  /external/oprofile/libop/
op_events.c 354 char const * colon; local
357 end = colon = c;
360 colon = strchr(colon, ':');
362 if (!colon) {
368 if (colon >= end)
371 tag_len = colon - c;
372 val_len = end - (colon + 1);
383 *value = op_xstrndup(colon + 1, val_len);
  /external/clang/lib/Lex/
TokenConcatenation.cpp 84 TokenInfo[tok::colon ] |= aci_custom_firstchar;
229 case tok::colon: // ::, :>
  /external/clang/lib/Parse/
ParseInit.cpp 34 return PP.LookAhead(0).is(tok::colon);
90 assert(Tok.is(tok::colon) && "MayBeDesignationStart not working properly!");
  /external/clang/test/Analysis/
ptr-arith.c 31 const char *colon = memchr (domain_b, ':', domain_e - domain_b); local
33 for (p = colon + 1; p < domain_e ; p++)
  /external/chromium/googleurl/src/
url_parse.cc 72 // Find the first colon in the user section, which separates the username and
109 int colon = -1; local
111 // Find the last right-bracket, and the last colon.
118 colon = i;
123 if (colon > ipv6_terminator) {
125 *hostname = MakeRange(serverinfo.begin, colon);
128 *port_num = MakeRange(colon + 1, serverinfo.end());
255 // Find the first colon character.
262 return false; // No colon found: no scheme
269 // colon) where we'll begin parsing
    [all...]
  /libcore/luni/src/main/java/java/net/
URI.java 360 int colon = UrlUtils.findFirstOf(uri, ":", 0, fragmentStart); local
361 if (colon < UrlUtils.findFirstOf(uri, "/?#", 0, fragmentStart)) {
363 scheme = validateScheme(uri, colon);
364 start = colon + 1;
1053 int colon = path.indexOf(':'); local
    [all...]
  /external/chromium/net/websockets/
websocket_handshake_handler.cc 61 std::string::const_iterator colon = std::find(line_begin, line_end, ':'); local
62 if (colon == line_end) {
66 *name_end = colon;
  /external/sqlite/android/
sqlite3_android.cpp 228 // check SECONDARY_STORAGE, which should be a colon separated list of paths
231 const char* colon = strchr(secondary_paths, ':'); local
232 int length = (colon ? colon - secondary_paths : strlen(secondary_paths));
  /sdk/ide_common/src/com/android/ide/common/resources/
ResourceRepository.java 172 int colon = url.lastIndexOf(':', typeEnd); local
173 if (colon != -1) {
174 typeBegin = colon + 1;

Completed in 3388 milliseconds

12 3 4 5