/tools/metalava/src/main/java/com/android/tools/metalava/model/psi/ |
D | Javadoc.kt | 245 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 …]
|
D | PsiTypePrinter.kt | 132 …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/ |
D | bits.py | 59 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/ |
D | ota_runner_factory.py | 183 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/ |
D | AlgorithmIdentifier.java | 142 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/ |
D | AlignmentRules.java | 49 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/ |
D | Android.bp | 43 suffix: "32", 46 suffix: "64",
|
/tools/external_updater/ |
D | updater_utils.py | 80 prefix, version, suffix = match.group('prefix', 'version', 'suffix') 82 return (versions, str(prefix), str(suffix))
|
D | README.md | 65 <prefix><version_number><suffix>
|
/tools/acloud/internal/lib/ |
D | ota_tools.py | 235 prefix="misc_info_", suffix=".txt", 311 prefix="system-qemu-config_", suffix=".txt",
|
D | utils.py | 291 def GenerateUniqueName(prefix=None, suffix=None): argument 304 if suffix: 305 name = "-".join([name, suffix])
|
/tools/acloud/public/ |
D | device_driver.py | 85 suffix=self._cfg.disk_image_name) 141 suffix=self._cfg.disk_image_name)
|
/tools/asuite/aidegen_functional_test/ |
D | Android.bp | 36 suffix: "-dev",
|
/tools/asuite/aidegen/ |
D | Android.bp | 37 suffix: "-dev",
|
/tools/test/connectivity/acts/framework/acts/controllers/sniffer_lib/local/ |
D | local_base.py | 126 _, self._temp_capture_file_path = tempfile.mkstemp(suffix=".pcap")
|
/tools/metalava/src/main/java/com/android/tools/metalava/ |
D | ApiLint.kt | 1251 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>()
|
D | Driver.kt | 210 val suffix = if (isDirectory) "/" else "" in maybeActivateSandbox() constant
|
/tools/currysrc/scripts/ |
D | repackage-common.sh | 97 CHANGE_LOG=$(mktemp --suffix srcgen-change.log)
|
/tools/asuite/atest/ |
D | atest_utils.py | 1154 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/ |
D | check_quality.py | 113 with tempfile.NamedTemporaryFile(suffix='.wav') as converted_file:
|
/tools/repohooks/tools/ |
D | checkpatch.pl | 5770 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/;
|
D | cpplint.py | 4459 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]
|
D | pylintrc | 109 long-suffix,
|
/tools/metalava/ |
D | FORMAT.md | 23 and no suffix for non-nullable types. The initial plan was to include this 102 and otherwise there's no suffix. In other words:
|
D | README.md | 109 signature format now uses a suffix of `?` for nullable, `!` for not yet
|