Home
last modified time | relevance | path

Searched refs:file_name (Results 1 – 10 of 10) sorted by relevance

/development/vndk/tools/header-checker/src/utils/
Dcollect_exported_headers.cpp30 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()
63 llvm::StringRef file_name(llvm::sys::path::filename(file_path)); in CollectExportedHeaderSet() local
67 if (ShouldSkipFile(file_name)) { in CollectExportedHeaderSet()
/development/scripts/
Dstack_core.py243 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/vndk/snapshot/
Dutils.py133 for file_name in sorted(files):
134 if file_name in names:
135 abspath = os.path.abspath(os.path.join(root, file_name))
Dupdate.py129 def add_version_suffix(file_name): argument
132 os.path.join(utils.CONFIG_DIR_PATH_PATTERN, file_name))
/development/vndk/tools/header-checker/utils/
Dcreate_reference_dumps.py94 def find_and_remove_path(root_path, file_name=None): argument
95 if file_name is not None:
96 root_path = os.path.join(root_path, 'source-based', file_name)
/development/python-packages/gdbrunner/
D__init__.py231 file_name = "gdbclient-binary-{}".format(os.getppid())
232 remote_temp_path = "/data/local/tmp/{}".format(file_name)
233 local_path = os.path.join(tempfile.gettempdir(), file_name)
/development/testrunner/test_defs/
Dinstrumentation_test.py309 for file_name in os.listdir(path):
310 if self._IsJavaFileName(file_name):
/development/samples/browseable/AutoBackupForApps/src/com.example.android.autobackupsample/
DMainActivityFragment.java109 TextView fileNameView = (TextView) itemView.findViewById(R.id.file_name); in onResume()
DAddFileActivity.java144 EditText fileNameEditText = (EditText) findViewById(R.id.file_name); in onCreateFileButtonClick()
/development/vndk/tools/header-checker/src/dumper/
Dabi_wrappers.cpp155 llvm::StringRef file_name = sm.getFilename(expansion_location); in GetDeclSourceFile() local
156 return utils::RealPath(file_name.str()); in GetDeclSourceFile()