Searched refs:dirs (Results 1 – 8 of 8) sorted by relevance
/development/scripts/ |
D | boardconfig_usage_analysis.py | 53 for root, dirs, files in os.walk(os.path.join(TOP, folder), topdown=True): 54 dirs[:] = [d for d in dirs if not d[0] == '.']
|
/development/testrunner/test_defs/ |
D | native_test.py | 157 for root, dirs, files in os.walk(path): 161 for d in dirs:
|
/development/tools/rmtypedefs/src/com/android/tools/rmtypedefs/ |
D | RmTypeDefs.java | 71 List<File> dirs = new ArrayList<File>(); in run() local 91 dirs.add(file); in run() 105 for (File dir : dirs) { in run()
|
/development/tools/idegen/src/com/android/idegen/ |
D | DirectorySearch.java | 158 ImmutableList<File> dirs = findSourceDirs(child); in findSourceDirs() local 160 Collection<File> filteredDirs = Collections2.filter(dirs, new Predicate<File>() { in findSourceDirs()
|
/development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/ |
D | DeviceDetailFragment.java | 234 File dirs = new File(f.getParent()); in doInBackground() local 235 if (!dirs.exists()) in doInBackground() 236 dirs.mkdirs(); in doInBackground()
|
/development/vndk/tools/ |
D | system_image_diff.py | 46 for root, dirs, files in os.walk(system_prefix, topdown=True):
|
/development/vndk/tools/vndk-compliance/ |
D | README.md | 56 * VNDK build rules remove global includes from the path. So dirs like
|
/development/vndk/tools/definition-tool/ |
D | vndk_definition_tool.py | 2283 dirs = [os.path.normpath(os.path.join(root, i)) for i in subdirs] 2284 patts = ['(?:' + re.escape(i) + os.sep + ')' for i in dirs] 3300 def _check_arg_dir_exists(self, arg_name, dirs): argument 3301 for path in dirs:
|