Lines Matching refs:version
117 def version_is_private(version): argument
119 return version.endswith('_PRIVATE') or version.endswith('_PLATFORM')
122 def should_omit_version(version, arch, api, llndk, apex): argument
129 if version_is_private(version.name):
131 if 'platform-only' in version.tags:
134 no_llndk_no_apex = ('llndk' not in version.tags
135 and 'apex' not in version.tags)
137 ('llndk' in version.tags and llndk) or \
138 ('apex' in version.tags and apex)
141 if not symbol_in_arch(version.tags, arch):
143 if not symbol_in_api(version.tags, arch, api):
298 for version in versions:
299 if should_omit_version(version, self.arch, self.api, self.llndk,
303 for symbol in version.symbols: