Home
last modified time | relevance | path

Searched refs:colonIndex (Results 1 – 3 of 3) 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/base/core/java/android/content/om/
DFabricatedOverlay.java408 final int colonIndex = name.indexOf(':'); /* ':' should before '/' if ':' exist */ in ensureValidResourceName() local
413 && colonIndex != 0 /* 0 means the package name is empty */ in ensureValidResourceName()
414 && (slashIndex - colonIndex) > 2 /* The shortest length of type is "id" */, in ensureValidResourceName()
/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);