Searched refs:colonIdx (Results 1 – 2 of 2) sorted by relevance
1058 int colonIdx = name.indexOf(':'); in resourceUrlFromName() local1061 if (colonIdx != -1 && slashIdx != -1) { in resourceUrlFromName()1066 if (colonIdx == -1 && slashIdx == -1) { in resourceUrlFromName()1078 if (colonIdx != -1) { in resourceUrlFromName()1084 String pkg = name.substring(0, colonIdx); in resourceUrlFromName()1086 return type != null ? ResourceUrl.create(pkg, type, name.substring(colonIdx + 1)) : in resourceUrlFromName()
521 int colonIdx = fullFlagName.indexOf(":"); in getFlagOverrideToSync() local522 if (colonIdx == -1) { in getFlagOverrideToSync()526 namespace = fullFlagName.substring(0, colonIdx); in getFlagOverrideToSync()527 fullFlagName = fullFlagName.substring(colonIdx + 1); in getFlagOverrideToSync()