/build/soong/scripts/ |
D | Android.bp | 11 version: { 27 version: { 47 version: { 68 version: { 84 version: { 104 version: { 126 version: { 142 version: { 162 version: { 182 version: { [all …]
|
/build/soong/cc/ndkstubgen/ |
D | test_ndkstubgen.py | 39 version = symbolfile.Version('VERSION_PRIVATE', None, [], [ 42 generator.write_version(version) 46 version = symbolfile.Version('VERSION', None, [Tag('x86')], [ 49 generator.write_version(version) 53 version = symbolfile.Version('VERSION', None, [Tag('introduced=14')], [ 56 generator.write_version(version) 68 version = symbolfile.Version('VERSION_1', None, [], [ 71 generator.write_version(version) 75 version = symbolfile.Version('VERSION_1', None, [], [ 78 generator.write_version(version) [all …]
|
D | __init__.py | 42 for version in versions: 43 self.write_version(version) 45 def write_version(self, version: Version) -> None: 47 if symbolfile.should_omit_version(version, self.arch, self.api, 52 version.tags, self.api) 55 for symbol in version.symbols: 66 self.version_script.write(version.name + ' {\n') 86 base = '' if version.base is None else ' ' + version.base
|
/build/soong/cc/symbolfile/ |
D | __init__.py | 152 def version_is_private(version: str) -> bool: 154 return version.endswith('_PRIVATE') or version.endswith('_PLATFORM') 157 def should_omit_version(version: Version, arch: Arch, api: int, llndk: bool, 165 if version_is_private(version.name): 167 if 'platform-only' in version.tags: 170 no_llndk_no_apex = ('llndk' not in version.tags 171 and 'apex' not in version.tags) 173 ('llndk' in version.tags and llndk) or \ 174 ('apex' in version.tags and apex) 177 if not symbol_in_arch(version.tags, arch): [all …]
|
D | test_symbolfile.py | 376 version = parser.parse_version() 377 self.assertEqual('VERSION_1', version.name) 378 self.assertIsNone(version.base) 379 self.assertEqual(['foo', 'bar'], version.tags) 385 self.assertEqual(expected_symbols, version.symbols) 388 version = parser.parse_version() 389 self.assertEqual('VERSION_2', version.name) 390 self.assertEqual('VERSION_1', version.base) 391 self.assertEqual([], version.tags) 455 version = parser.parse_version() [all …]
|
/build/soong/docs/ |
D | map_files.md | 4 map.txt files. These files are [linker version scripts] with comments that are 10 [linker version scripts]: https://www.gnu.org/software/gnulib/manual/html_node/LD-Version-Scripts.h… 14 A linker version script defines at least one alphanumeric "version" definition, 32 Comments on the same line as either a version definition or a symbol name have 38 `MY_API_R` version and `api_baz` is exposed with the `MY_API_S` version. No 42 When generating NDK API stubs from this version script, the stub library for R 46 Note that, with few exceptions (see "Special version names" below), the name of 47 the version has no inherent meaning. 49 These map files can (and should) also be used as version scripts for building 58 ## Special version names [all …]
|
/build/soong/cc/ndk_api_coverage_parser/ |
D | __init__.py | 72 for version in versions: 73 if VARIABLE_TAG in version.tags: 75 version_attributes = parse_tags(version.tags) 76 _, _, postfix = version.name.partition('_') 81 for symbol in version.symbols:
|
/build/make/core/ |
D | local_systemsdk.mk | 45 ifneq (,$(call has-system-sdk-version,$(LOCAL_SDK_VERSION))) 57 _system_sdk_version := $(call get-numeric-sdk-version,$(LOCAL_SDK_VERSION)) 60 …System SDK version '$(_system_sdk_version)' is not supported. Supported versions are: $(_supported…
|
D | android_manifest.mk | 44 my_target_sdk_version := $(call module-target-sdk-version) 45 my_min_sdk_version := $(call module-min-sdk-version) 79 …call math_gt_or_eq,$(patsubst $(PLATFORM_VERSION_CODENAME),100,$(call module-min-sdk-version)),23)) 86 …_USE_EMBEDDED_NATIVE_LIBS is set but minSdkVersion $(call module-min-sdk-version) does not support… 104 --raise-min-sdk-version \
|
D | host_dalvik_java_library.mk | 185 $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEFAULT_APP_TARGET_SDK := $(call module-target-sdk-version) 186 $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_SDK_VERSION := $(call module-sdk-version) 187 …_TARGETS): PRIVATE_MIN_SDK_VERSION := $(call codename-or-sdk-to-sdk,$(call module-min-sdk-version))
|
/build/soong/java/ |
D | prebuilt_apis.go | 208 version int 214 apiModuleName := func(module, scope, version string) string { 215 return module + ".api." + scope + "." + version 223 version, err := strconv.Atoi(apiver) 234 m[key] = latestApiInfo{module, scope, version, localPath} 235 } else if version > info.version { 236 info.version = version
|
/build/make/tools/ |
D | check_elf_file.py | 270 version = '' 276 version = name_with_version[pos + 1:] 277 return (name, version) 287 name, version = cls._parse_symbol_name(symbol['Name']) 291 imported[name].add(version) 294 exported[name].add(version) 442 def _find_symbol(lib, name, version): argument 449 if version == '': # Symbol version is not requested 451 return version in lib_sym_vers 455 def _find_symbol_from_libs(cls, libs, name, version): argument [all …]
|
D | Android.bp | 31 version: { 44 version: { 61 version: { 76 version: {
|
/build/soong/cmd/diff_target_files/ |
D | props.whitelist | 2 // Ignore date, version and hostname properties in build.prop and prop.default files. 11 "ro\\..*build\\.version\\.incremental=.*",
|
/build/soong/cc/ |
D | vendor_snapshot_test.go | 342 version: "31", 364 version: "26", 386 version: "31", 403 version: "31", 475 version: "31", 525 version: "31", 543 version: "31", 566 version: "31", 579 version: "31", 592 version: "31", [all …]
|
D | ndk_prebuilt.go | 37 func getNdkLibDir(ctx android.ModuleContext, toolchain config.Toolchain, version string) android.So… 45 version, toolchain.Name(), suffix)) 49 ext string, version string) android.Path { 54 dir := getNdkLibDir(ctx, toolchain, version)
|
D | vndk_prebuilt.go | 85 suffix := p.version() 95 func (p *vndkPrebuiltLibraryDecorator) version() string { func 166 if vndkVersion == p.version() {
|
/build/soong/scripts/hiddenapi/ |
D | Android.bp | 25 version: { 40 version: { 55 version: {
|
/build/make/tools/releasetools/ |
D | ota_metadata.proto | 34 // The version string of the partition. It's usually timestamp if present. 35 // One known exception is the boot image, who uses the kmi version, e.g. 37 string version = 4; field 54 // A value that specify a version of the android build. 58 // The version of the currently-executing Android system. 72 int64 version = 2; field
|
/build/soong/tradefed/suite_harness/ |
D | tradefed_binary.go | 58 version := tfb.Version 60 version = ctx.Config().PlatformVersionName() + tfb.Version 70 Version: version,
|
/build/soong/python/tests/ |
D | Android.bp | 30 version: { 53 version: {
|
/build/make/target/product/gsi/ |
D | init.gsi.rc | 5 import /system/system_ext/etc/init/init.vndk-${ro.vndk.version:-nodef}.rc
|
/build/soong/sdk/ |
D | testing.go | 134 version: sdk.builderForTests.version, 241 if snapshotBuildInfo.version != soongSdkSnapshotVersionUnversioned { 242 suffix = "-" + snapshotBuildInfo.version 444 version string member
|
/build/soong/python/ |
D | python_test.go | 230 version: { 252 version: { 283 version: {
|
/build/soong/bp2build/ |
D | python_binary_conversion_test.go | 62 version: { 89 version: {
|