Home
last modified time | relevance | path

Searched refs:colonIndex (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/
DCompilerStats.java232 int colonIndex = s.indexOf(':'); in read() local
233 if (colonIndex == -1 || colonIndex == 1) { in read()
236 String codePath = s.substring(1, colonIndex); in read()
237 long time = Long.parseLong(s.substring(colonIndex + 1)); in read()
/frameworks/opt/vcard/java/com/android/vcard/
DVCardParserImpl_V21.java889 final int colonIndex = line.indexOf(":");
890 if (colonIndex > -1) {
895 if (colonIndex == -1) {
898 minIndex = colonIndex;
900 minIndex = Math.min(colonIndex, semiColonIndex);