Searched refs:file_paths (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Tools/scripts/ |
D | patchcheck.py | 81 def report_modified_files(file_paths): argument 82 count = len(file_paths) 87 for path in file_paths: 93 def normalize_whitespace(file_paths): argument 97 for path in (x for x in file_paths if x.endswith('.py')): 104 def normalize_c_whitespace(file_paths): argument 107 for path in file_paths: 120 def normalize_docs_whitespace(file_paths): argument 122 for path in file_paths: 139 def docs_modified(file_paths): argument [all …]
|
/external/selinux/libselinux/src/ |
D | selinux_config.c | 62 static char *file_paths[NEL]; variable 225 if (asprintf(&file_paths[i], "%s%s", in init_selinux_config() 241 free(file_paths[i]); in fini_selinux_policyroot() 242 file_paths[i] = NULL; in fini_selinux_policyroot() 259 return file_paths[idx]; in hidden_def() 295 if (asprintf(&file_paths[i], "%s%s", in selinux_set_policy_root()
|
/external/autotest/frontend/afe/ |
D | views.py | 106 file_paths = [] 113 file_paths.append(file_path) 114 return HttpResponse(rpc_utils.prepare_for_serialization(file_paths))
|
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/ |
D | __init__.py | 26 def Transform(transform, file_paths): argument 28 return multiprocessing.Pool().map(transform, file_paths)
|
/external/autotest/client/site_tests/longevity_Tracker/ |
D | longevity_Tracker.py | 307 file_paths = glob.glob(app_manifest_pattern) 309 if len(file_paths) == 0: 312 if len(file_paths) > 1: 315 kiosk_manifest = open(file_paths[0], 'r').read()
|
/external/autotest/utils/ |
D | run_pylint.py | 232 def batch_check_files(file_paths, base_opts): argument 242 if not file_paths: 245 pylint_runner = pylint.lint.Run(list(base_opts) + list(file_paths),
|
/external/chromium-trace/catapult/common/py_utils/py_utils/ |
D | cloud_storage_unittest.py | 43 def CreateFiles(self, file_paths): argument 44 for f in file_paths:
|
/external/clang/lib/Driver/ |
D | ToolChains.cpp | 3112 path_list &file_paths = getFilePaths(); in NaClToolChain() local 3115 file_paths.clear(); in NaClToolChain() 3129 file_paths.push_back(FilePath + "x86_64-nacl/lib32"); in NaClToolChain() 3130 file_paths.push_back(FilePath + "i686-nacl/usr/lib"); in NaClToolChain() 3132 file_paths.push_back(ToolPath + "i686-nacl"); in NaClToolChain() 3135 file_paths.push_back(FilePath + "x86_64-nacl/lib"); in NaClToolChain() 3136 file_paths.push_back(FilePath + "x86_64-nacl/usr/lib"); in NaClToolChain() 3138 file_paths.push_back(ToolPath + "x86_64-nacl"); in NaClToolChain() 3141 file_paths.push_back(FilePath + "arm-nacl/lib"); in NaClToolChain() 3142 file_paths.push_back(FilePath + "arm-nacl/usr/lib"); in NaClToolChain() [all …]
|