Home | History | Annotate | Download | only in cc

Lines Matching refs:apex

111 def should_omit_version(version, arch, api, vndk, apex):
123 no_vndk_no_apex = 'vndk' not in version.tags and 'apex' not in version.tags
126 ('apex' in version.tags and apex)
136 def should_omit_symbol(symbol, arch, api, vndk, apex):
138 no_vndk_no_apex = 'vndk' not in symbol.tags and 'apex' not in symbol.tags
141 ('apex' in symbol.tags and apex)
253 def __init__(self, input_file, api_map, arch, api, vndk, apex):
259 self.apex = apex
287 if should_omit_version(version, self.arch, self.api, self.vndk, self.apex):
291 if should_omit_symbol(symbol, self.arch, self.api, self.vndk, self.apex):
375 def __init__(self, src_file, version_script, arch, api, vndk, apex):
381 self.apex = apex
390 if should_omit_version(version, self.arch, self.api, self.vndk, self.apex):
397 if should_omit_symbol(symbol, self.arch, self.api, self.vndk, self.apex):
461 '--apex', action='store_true', help='Use the APEX variant.')
496 args.vndk, args.apex).parse()
503 args.vndk, args.apex)