Home
last modified time | relevance | path

Searched refs:glob (Results 1 – 3 of 3) sorted by relevance

/libcore/tools/testmapping/
Dsave_logs.py21 import glob
64 for f in glob.glob(CTS_LOGS_PATTERN):
66 sources = [f for f in glob.glob(CTS_LOGS_PATTERN) if is_real_log_file(f)]
/libcore/ojluni/src/main/java/sun/nio/fs/
DGlobs.java45 private static char next(String glob, int i) { in next() argument
46 if (i < glob.length()) { in next()
47 return glob.charAt(i); in next()
/libcore/ojluni/src/main/java/java/nio/file/
DFiles.java509 public static DirectoryStream<Path> newDirectoryStream(Path dir, String glob)
513 if (glob.equals("*"))
518 final PathMatcher matcher = fs.getPathMatcher("glob:" + glob);