HomeSort by relevance Sort by last modified time
    Searched defs:firstColon (Results 1 - 3 of 3) sorted by null

  /libcore/luni/src/test/java/tests/org/w3c/dom/
DOMTestCase.java 137 int firstColon = uri.indexOf(":");
141 if (firstColon != -1 && firstColon < firstSlash) {
142 actualScheme = uri.substring(0, firstColon);
143 actualPath = uri.substring(firstColon + 1);
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTestCase.java 713 int firstColon = uri.indexOf(":");
717 if (firstColon != -1 && firstColon < firstSlash) {
718 actualScheme = uri.substring(0, firstColon);
719 actualPath = uri.substring(firstColon + 1);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SerializerBase.java 284 final int firstColon = qname.indexOf(':');
285 final String prefix = qname.substring(0, firstColon);
293 else if (firstColon != lastColon) {
    [all...]

Completed in 118 milliseconds