Searched refs:firstColon (Results 1 – 10 of 10) sorted by relevance
/external/webkit/LayoutTests/dom/html/level2/events/ |
D | 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/ |
D | 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/ |
D | 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/level1/core/ |
D | 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/level2/html/ |
D | 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/ |
D | 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/ |
D | 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/ |
D | 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/level1/core/ |
D | 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/ |
D | SerializerBase.java | 284 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()
|