Home
last modified time | relevance | path

Searched refs:firstColon (Results 1 – 10 of 10) sorted by relevance

/external/webkit/LayoutTests/dom/html/level2/events/
Dselfhtml.js181 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/
Dselfhtml.js181 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/
Dselfhtml.js181 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/level1/core/
Dselfhtml.js181 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/level2/html/
Dselfxhtml.js180 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/
Dselfxhtml.js180 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/
Dselfxhtml.js180 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/
Dselfxhtml.js180 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/level1/core/
Dselfxhtml.js180 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/
DSerializerBase.java284 final int firstColon = qname.indexOf(':'); in patchName() local
285 final String prefix = qname.substring(0, firstColon); in patchName()
293 else if (firstColon != lastColon) { in patchName()