Searched refs:file_name (Results 1 – 11 of 11) sorted by relevance
/development/vndk/tools/header-checker/src/utils/ |
D | collect_exported_headers.cpp | 30 static bool ShouldSkipFile(llvm::StringRef &file_name) { in ShouldSkipFile() argument 34 return (file_name.empty() || file_name.startswith(".") || in ShouldSkipFile() 35 file_name.endswith(".swp") || file_name.endswith(".swo") || in ShouldSkipFile() 36 file_name.endswith("#") || file_name.endswith(".cpp") || in ShouldSkipFile() 37 file_name.endswith(".cc") || file_name.endswith(".c")); in ShouldSkipFile() 80 llvm::StringRef file_name(llvm::sys::path::filename(file_path)); in CollectExportedHeaderSet() local 84 if (ShouldSkipFile(file_name)) { in CollectExportedHeaderSet()
|
/development/scripts/ |
D | stack_core.py | 243 for file_name, start, end in offset_list: 245 if file_name in tmp_files: 246 return file_name, tmp_files[file_name] 247 tmp_file = self.ExtractLibFromApk(apk_full_path, file_name) 249 tmp_files[file_name] = tmp_file 250 return file_name, tmp_file 276 file_name = None 282 if not file_name and offset >= start and offset < end: 283 file_name = cur_name 289 if not file_name and offset >= start and offset < end: [all …]
|
/development/gsi/repack_super_image/ |
D | repack_super_image.py | 59 for file_name in file_names: 60 file_path = os.path.join(root_dir, file_name) 195 for file_name in os.listdir(unpack_dir): 196 if file_name.endswith(IMG_FILE_EXT): 197 part = file_name[:-len(IMG_FILE_EXT)] 198 unpacked_part_imgs[part] = os.path.join(unpack_dir, file_name)
|
/development/vndk/snapshot/ |
D | utils.py | 133 for file_name in sorted(files): 134 if file_name in names: 135 abspath = os.path.abspath(os.path.join(root, file_name))
|
D | update.py | 129 def add_version_suffix(file_name): argument 132 os.path.join(utils.CONFIG_DIR_PATH_PATTERN, file_name))
|
/development/vndk/tools/header-checker/utils/ |
D | create_reference_dumps.py | 48 def find_and_remove_path(root_path, file_name=None): argument 49 if file_name is not None: 50 root_path = os.path.join(root_path, 'source-based', file_name)
|
/development/vendor_snapshot/ |
D | update.py | 219 for file_name in sorted(files): 220 if not file_name.endswith('.json'): 222 full_path = os.path.join(root, file_name)
|
/development/python-packages/gdbrunner/ |
D | __init__.py | 243 file_name = "gdbclient-binary-{}".format(os.getppid()) 244 remote_temp_path = "/data/local/tmp/{}".format(file_name) 245 local_path = os.path.join(tempfile.gettempdir(), file_name)
|
/development/testrunner/test_defs/ |
D | instrumentation_test.py | 309 for file_name in os.listdir(path): 310 if self._IsJavaFileName(file_name):
|
/development/samples/browseable/AutoBackupForApps/src/com.example.android.autobackupsample/ |
D | MainActivityFragment.java | 109 TextView fileNameView = (TextView) itemView.findViewById(R.id.file_name); in onResume()
|
D | AddFileActivity.java | 144 EditText fileNameEditText = (EditText) findViewById(R.id.file_name); in onCreateFileButtonClick()
|