Searched refs:colonIndex (Results 1 – 3 of 3) sorted by relevance
232 int colonIndex = s.indexOf(':'); in read() local233 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()
408 final int colonIndex = name.indexOf(':'); /* ':' should before '/' if ':' exist */ in ensureValidResourceName() local413 && colonIndex != 0 /* 0 means the package name is empty */ in ensureValidResourceName()414 && (slashIndex - colonIndex) > 2 /* The shortest length of type is "id" */, in ensureValidResourceName()
889 final int colonIndex = line.indexOf(":");890 if (colonIndex > -1) {895 if (colonIndex == -1) {898 minIndex = colonIndex;900 minIndex = Math.min(colonIndex, semiColonIndex);