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

  /external/nist-sip/java/gov/nist/core/
HostNameParser.java 242 int firstColonIndex = host.indexOf(Lexer.COLON);
244 if(firstColonIndex == -1)
247 int secondColonIndex = host.indexOf(Lexer.COLON, firstColonIndex + 1);
  /frameworks/base/cmds/content/src/com/android/commands/content/
Content.java 309 final int firstColonIndex = argument.indexOf(COLON);
310 if (firstColonIndex < 0) {
313 final int secondColonIndex = argument.indexOf(COLON, firstColonIndex + 1);
317 String column = argument.substring(0, firstColonIndex);
318 String type = argument.substring(firstColonIndex + 1, secondColonIndex);

Completed in 503 milliseconds