HomeSort by relevance Sort by last modified time
    Searched refs:firstColon (Results 1 - 12 of 12) 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/webkit/LayoutTests/dom/html/level1/core/
selfhtml.js 181 var firstColon = uri.indexOf(":");
185 if(firstColon != -1 && firstColon < firstSlash) {
186 actualScheme = uri.substring(0,firstColon);
187 actualPath = uri.substring(firstColon + 1);
  /external/webkit/LayoutTests/dom/html/level2/core/
selfhtml.js 181 var firstColon = uri.indexOf(":");
185 if(firstColon != -1 && firstColon < firstSlash) {
186 actualScheme = uri.substring(0,firstColon);
187 actualPath = uri.substring(firstColon + 1);
  /external/webkit/LayoutTests/dom/html/level2/events/
selfhtml.js 181 var firstColon = uri.indexOf(":");
185 if(firstColon != -1 && firstColon < firstSlash) {
186 actualScheme = uri.substring(0,firstColon);
187 actualPath = uri.substring(firstColon + 1);
  /external/webkit/LayoutTests/dom/html/level2/html/
selfhtml.js 181 var firstColon = uri.indexOf(":");
185 if(firstColon != -1 && firstColon < firstSlash) {
186 actualScheme = uri.substring(0,firstColon);
187 actualPath = uri.substring(firstColon + 1);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
selfxhtml.js 180 var firstColon = uri.indexOf(":");
184 if(firstColon != -1 && firstColon < firstSlash) {
185 actualScheme = uri.substring(0,firstColon);
186 actualPath = uri.substring(firstColon + 1);
  /external/webkit/LayoutTests/dom/xhtml/level2/core/
selfxhtml.js 180 var firstColon = uri.indexOf(":");
184 if(firstColon != -1 && firstColon < firstSlash) {
185 actualScheme = uri.substring(0,firstColon);
186 actualPath = uri.substring(firstColon + 1);
  /external/webkit/LayoutTests/dom/xhtml/level2/events/
selfxhtml.js 180 var firstColon = uri.indexOf(":");
184 if(firstColon != -1 && firstColon < firstSlash) {
185 actualScheme = uri.substring(0,firstColon);
186 actualPath = uri.substring(firstColon + 1);
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
selfxhtml.js 180 var firstColon = uri.indexOf(":");
184 if(firstColon != -1 && firstColon < firstSlash) {
185 actualScheme = uri.substring(0,firstColon);
186 actualPath = uri.substring(firstColon + 1);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
selfxhtml.js 180 var firstColon = uri.indexOf(":");
184 if(firstColon != -1 && firstColon < firstSlash) {
185 actualScheme = uri.substring(0,firstColon);
186 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 213 milliseconds