Home
last modified time | relevance | path

Searched refs:suffix (Results 1 – 13 of 13) sorted by relevance

/development/tools/findunused/
Dfindunusedtranslations29 $suffix = $3;
32 $pattern1 = "$prefix/values$1$2-??$3/$suffix";
33 $pattern2 = "$prefix/values$1$2-??-r??$3/$suffix";
35 $pattern1 = "$prefix/values-??$values/$suffix";
36 $pattern2 = "$prefix/values-??-r??$values/$suffix";
/development/vndk/tools/header-checker/src/utils/
Dstring_utils.cpp46 bool EndsWith(std::string_view s, std::string_view suffix) { in EndsWith() argument
47 return (s.size() >= suffix.size() && in EndsWith()
48 s.compare(s.size() - suffix.size(), suffix.size(), suffix) == 0); in EndsWith()
Dstring_utils.h31 bool EndsWith(std::string_view s, std::string_view suffix);
/development/scripts/
Dbash_util.bash84 local suffix="$1"
88 local file="$dir/temp-$(date '+%Y%m%d-%H%M%S')-$$$suffix"
Ddisassemble_tombstone.py91 scratch_file = tempfile.NamedTemporaryFile(suffix='.s')
138 object_file = tempfile.NamedTemporaryFile(suffix='.o')
148 linked_file = tempfile.NamedTemporaryFile(suffix='.o')
/development/vndk/tools/definition-tool/tests/
Dcompat.py16 def __init__(self, suffix='', prefix='tmp', dir=None): argument
18 self.name = tempfile.mkdtemp(suffix, prefix, dir)
/development/gsi/gsi_util/gsi_util/utils/tests/
Dfile_utils_unittest.py31 prefix='prefix', suffix='suffix') as f:
/development/tools/bugreport/src/com/android/bugreport/inspector/
DInspector.java362 for (String suffix: HANDWRITTEN_BINDER_SUFFIXES) { in fixBinderClass()
363 if (className.length() > suffix.length() + 2) { in fixBinderClass()
364 if (className.endsWith(suffix)) { in fixBinderClass()
367 if (className.endsWith(suffix)) { in fixBinderClass()
369 return className.substring(0, className.length()-suffix.length()); in fixBinderClass()
371 return "I" + className.substring(0, className.length()-suffix.length()); in fixBinderClass()
/development/tools/repo_diff/service/repodiff/mappers/
Dmappers.go287 suffix := []interface{}{
296 suffix...,
/development/gsi/gsi_util/gsi_util/mounters/
Dimage_mounter.py106 unsparsed_file = tempfile.NamedTemporaryFile(suffix=unsparsed_suffix)
/development/samples/IntentPlayground/src/com/example/android/intentplayground/
DFlagUtils.java132 for (String suffix: suffixes) {
133 if (target.endsWith(suffix)) {
/development/tools/repo_pull/
Drepo_pull.py109 suffix = '[Y/n] ' if default else ' [y/N] '
111 file.write(question + suffix)
/development/vndk/tools/definition-tool/
Dvndk_definition_tool.py88 def __init__(self, suffix='', prefix='tmp', dir=None): argument
90 self.name = tempfile.mkdtemp(suffix, prefix, dir)
1399 for suffix in self._vndk_suffixes:
1400 pattern_with_suffix = pattern.replace('${VNDK_VER}', suffix)