HomeSort by relevance Sort by last modified time
    Searched full:nextsep (Results 1 - 1 of 1) sorted by null

  /external/ant-glob/src/org/apache/tools/ant/util/
FileUtils.java 133 int nextsep = filename.indexOf(sep, 2); local
134 return nextsep > 2 && nextsep + 1 < len;
178 int nextsep = path.indexOf(sep, 2); local
179 nextsep = path.indexOf(sep, nextsep + 1);
180 root = (nextsep > 2) ? path.substring(0, nextsep + 1) : path;

Completed in 58 milliseconds