Lines Matching refs:version
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):
179 if not symbol_in_api(version.tags, arch, api):
307 for version in versions:
308 if should_omit_version(version, self.arch, self.api, self.llndk,
312 for symbol in version.symbols: