HomeSort by relevance Sort by last modified time
    Searched refs:colonpos (Results 1 - 2 of 2) sorted by null

  /external/webrtc/talk/app/webrtc/
peerconnection.cc 148 const std::string::size_type colonpos = in_str.find(':'); local
149 if (colonpos == std::string::npos) {
153 if ((colonpos + 1) == in_str.length()) {
159 if (in_str.compare(0, colonpos, kValidIceServiceTypes[i]) == 0) {
167 *hostname = in_str.substr(colonpos + 1, std::string::npos);
193 std::string::size_type colonpos = in_str.find(':', closebracket); local
194 if (std::string::npos != colonpos) {
205 std::string::size_type colonpos = in_str.find(':'); local
206 if (std::string::npos != colonpos) {
207 if (!ParsePort(in_str.substr(colonpos + 1, std::string::npos), port))
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDocumentImpl.java 835 // int colonpos = qname.indexOf(":");
836 // String attName = qname.substring(colonpos+1);
838 // if (colonpos > 0) {
839 // String prefix = qname.substring(0, colonpos);
1515 int colonpos = qName.indexOf(":"); local
1559 int colonpos = expandedName.indexOf(":"); local
1576 int colonpos = expandedName.indexOf(":"); local
    [all...]

Completed in 859 milliseconds