HomeSort by relevance Sort by last modified time
    Searched full:firstcolon (Results 1 - 16 of 16) 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);
  /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/
HTMLBaseElement01.html 196 var firstColon = uri.indexOf(":");
200 if(firstColon != -1 && firstColon < firstSlash) {
201 actualScheme = uri.substring(0,firstColon);
202 actualPath = uri.substring(firstColon + 1);
HTMLBaseElement02.html 197 var firstColon = uri.indexOf(":");
201 if(firstColon != -1 && firstColon < firstSlash) {
202 actualScheme = uri.substring(0,firstColon);
203 actualPath = uri.substring(firstColon + 1);
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/
HTMLBaseElement01.xhtml 197 var firstColon = uri.indexOf(":");
201 if(firstColon != -1 && firstColon < firstSlash) {
202 actualScheme = uri.substring(0,firstColon);
203 actualPath = uri.substring(firstColon + 1);
HTMLBaseElement02.xhtml 197 var firstColon = uri.indexOf(":");
201 if(firstColon != -1 && firstColon < firstSlash) {
202 actualScheme = uri.substring(0,firstColon);
203 actualPath = uri.substring(firstColon + 1);
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);
  /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 434 milliseconds