HomeSort by relevance Sort by last modified time
    Searched refs:firstSlash (Results 1 - 6 of 6) sorted by null

  /libcore/luni/src/test/java/tests/org/w3c/dom/
DOMTestCase.java 74 int firstSlash = docURI.indexOf('/');
76 if (firstSlash == 0
77 || (firstSlash >= 1 && docURI.charAt(firstSlash - 1) == ':')) {
141 int firstSlash = uri.indexOf("/");
144 if (firstColon != -1 && firstColon < firstSlash) {
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTest.java 100 int firstSlash = docURI.indexOf('/');
102 if (firstSlash == 0
103 || (firstSlash >= 1
104 && docURI.charAt(firstSlash - 1) == ':')) {
DOMTestCase.java 714 int firstSlash = uri.indexOf("/");
717 if (firstColon != -1 && firstColon < firstSlash) {
  /external/chromium/third_party/icu/source/i18n/
numfmt.cpp 944 int32_t firstSlash = nsDesc.indexOf(gSlash);
946 if ( lastSlash > firstSlash ) {
949 nsDesc.extract(0,firstSlash,nsLocID,ULOC_FULLNAME_CAPACITY,US_INV);
950 nsRuleSetGroup.setTo(nsDesc,firstSlash+1,lastSlash-firstSlash-1);
  /external/icu4c/i18n/
numfmt.cpp     [all...]
  /external/webkit/WebCore/bridge/qt/
qt_runtime.cpp 540 int firstSlash = qstring.indexOf(QLatin1Char('/'));
542 if (firstSlash >=0 && lastSlash > firstSlash) {
545 realRe.setPattern(qstring.mid(firstSlash + 1, lastSlash - firstSlash - 1));
    [all...]

Completed in 1048 milliseconds