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

  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
SystemIDResolver.java 241 int secondColonIndex = systemId.indexOf(':', 5);
242 if (secondColonIndex > 0)
244 String localPath = systemId.substring(secondColonIndex-1);
247 absoluteURI = systemId.substring(0, secondColonIndex-1) +
  /external/apache-xml/src/main/java/org/apache/xml/utils/
SystemIDResolver.java 234 int secondColonIndex = systemId.indexOf(':', 5);
235 if (secondColonIndex > 0)
237 String localPath = systemId.substring(secondColonIndex-1);
240 absoluteURI = systemId.substring(0, secondColonIndex-1) +
  /external/nist-sip/java/gov/nist/core/
HostNameParser.java 247 int secondColonIndex = host.indexOf(Lexer.COLON, firstColonIndex + 1);
249 if(secondColonIndex == -1)
  /frameworks/base/cmds/content/src/com/android/commands/content/
Content.java 349 final int secondColonIndex = argument.indexOf(COLON, firstColonIndex + 1);
350 if (secondColonIndex < 0) {
354 String type = argument.substring(firstColonIndex + 1, secondColonIndex);
355 String value = argument.substring(secondColonIndex + 1);

Completed in 158 milliseconds