Home
last modified time | relevance | path

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

/tools/metalava/src/main/java/com/android/tools/metalava/model/psi/
DJavadoc.kt245 val suffix = existingDoc.substring(offset) in insertInto() constant
248 …if (suffix.startsWith("\n") || suffix.startsWith(" \n")) "" else if (suffix == "*/") "\n" else if … in insertInto()
260 if (suffix == "*/") " */" else suffix in insertInto()
262 prefix + middle + suffix in insertInto()
738 val suffix = element.text in handleTag() constant
739 if (suffix.contains("(") && suffix.contains(")")) { in handleTag()
740 expandArgumentList(element, suffix, sb) in handleTag()
742 sb.append(suffix) in handleTag()
771 val suffix = referenceText.substring(className.length) in handleTag() constant
772 if (suffix.contains("(") && suffix.contains(")")) { in handleTag()
[all …]
DPsiTypePrinter.kt132 …val suffix = if (bound == null) null else getCanonicalText(bound, elementAnnotations).removeSuffix… in <lambda>() constant
133 return getText(type, suffix, elementAnnotations) in <lambda>()
154 suffix: String?, in <lambda>()
158 if (annotations.isEmpty() && suffix == null) return "?" in <lambda>()
162 if (suffix == null) { in <lambda>()
165 if (suffix == JAVA_LANG_OBJECT && in <lambda>()
172 sb.append(suffix) in <lambda>()
182 suffix: String in <lambda>()
184 val sb = StringBuilder(prefix.length + suffix.length) in <lambda>()
190 sb.append(suffix) in <lambda>()
[all …]
/tools/test/connectivity/acts/framework/acts/controllers/
Dbits.py59 suffix = 'avg_power'
61 suffix = 'avg_current'
63 suffix = 'avg_voltage'
66 suffix = ''
69 return suffix
70 elif suffix == '':
73 return '%s_%s' % (rail, suffix)
/tools/test/connectivity/acts/framework/acts/libs/ota/ota_runners/
Dota_runner_factory.py183 suffix = ''
186 suffix = '_%s' % config['ota_map'][android_device.serial]
188 ota_package_key = '%s%s' % (key, suffix)
190 if suffix != '':
195 'ACTS config.' % (android_device.serial, suffix[1:],
/tools/apksig/src/main/java/com/android/apksig/internal/pkcs7/
DAlgorithmIdentifier.java142 String suffix; in getJcaSignatureAlgorithm() local
144 suffix = "RSA"; in getJcaSignatureAlgorithm()
146 suffix = "DSA"; in getJcaSignatureAlgorithm()
148 suffix = "ECDSA"; in getJcaSignatureAlgorithm()
161 return jcaDigestAlg + "with" + suffix; in getJcaSignatureAlgorithm()
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
DAlignmentRules.java49 public static AlignmentRule constantForSuffix(@Nonnull String suffix, int alignment) { in constantForSuffix() argument
50 Preconditions.checkArgument(!suffix.isEmpty(), "suffix.isEmpty()"); in constantForSuffix()
53 return (String path) -> path.endsWith(suffix) ? alignment : AlignmentRule.NO_ALIGNMENT; in constantForSuffix()
/tools/test/graphicsbenchmark/functional_tests/native/
DAndroid.bp43 suffix: "32",
46 suffix: "64",
/tools/external_updater/
Dupdater_utils.py80 prefix, version, suffix = match.group('prefix', 'version', 'suffix')
82 return (versions, str(prefix), str(suffix))
DREADME.md65 <prefix><version_number><suffix>
/tools/acloud/internal/lib/
Dota_tools.py235 prefix="misc_info_", suffix=".txt",
311 prefix="system-qemu-config_", suffix=".txt",
Dutils.py291 def GenerateUniqueName(prefix=None, suffix=None): argument
304 if suffix:
305 name = "-".join([name, suffix])
/tools/acloud/public/
Ddevice_driver.py85 suffix=self._cfg.disk_image_name)
141 suffix=self._cfg.disk_image_name)
/tools/asuite/aidegen_functional_test/
DAndroid.bp36 suffix: "-dev",
/tools/asuite/aidegen/
DAndroid.bp37 suffix: "-dev",
/tools/test/connectivity/acts/framework/acts/controllers/sniffer_lib/local/
Dlocal_base.py126 _, self._temp_capture_file_path = tempfile.mkstemp(suffix=".pcap")
/tools/metalava/src/main/java/com/android/tools/metalava/
DApiLint.kt1251 fun ensureContextNameSuffix(cls: ClassItem, suffix: String) { in <lambda>()
1252 if (!cls.simpleName().endsWith(suffix)) { in <lambda>()
1255 "Inconsistent class name; should be `<Foo>$suffix`, was `${cls.simpleName()}`" in <lambda>()
3236 for (suffix in badParameterClassNames) { in <lambda>() constant
3237 if (qualifiedName.endsWith(suffix) && !((qualifiedName.endsWith("Params") || in <lambda>()
DDriver.kt210 val suffix = if (isDirectory) "/" else "" in maybeActivateSandbox() constant
/tools/currysrc/scripts/
Drepackage-common.sh97 CHANGE_LOG=$(mktemp --suffix srcgen-change.log)
/tools/asuite/atest/
Datest_utils.py1154 suffix = '[Y/n]: ' if default else '[y/N]: '
1156 return strtobool(input(msg+suffix))
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/audio_analysis_lib/
Dcheck_quality.py113 with tempfile.NamedTemporaryFile(suffix='.wav') as converted_file:
/tools/repohooks/tools/
Dcheckpatch.pl5770 my $suffix = "";
5773 $suffix .= 'U' if ($cast =~ /\bunsigned\b/);
5775 $suffix .= 'LL';
5777 $suffix .= 'L';
5779 $fixed[$fixlinenr] =~ s/\Q$cast\E$const\b/$newconst$suffix/;
Dcpplint.py4459 for suffix in ('test.cc', 'regtest.cc', 'unittest.cc',
4461 if (filename.endswith(suffix) and len(filename) > len(suffix) and
4462 filename[-len(suffix) - 1] in ('-', '_')):
4463 return filename[:-len(suffix) - 1]
Dpylintrc109 long-suffix,
/tools/metalava/
DFORMAT.md23 and no suffix for non-nullable types. The initial plan was to include this
102 and otherwise there's no suffix. In other words:
DREADME.md109 signature format now uses a suffix of `?` for nullable, `!` for not yet