Searched refs:atype (Results 1 – 2 of 2) sorted by relevance
/frameworks/libs/native_bridge_support/android_api/ |
D | api_analysis.py | 23 def _is_size_required(atype): argument 24 if atype['kind'] in ['incomplete', 'const', 'volatile', 'restrict', 'function']: 26 return atype['kind'] != 'array' or not bool(atype.get('incomplete', 'false')) 327 for atype in self.guest_types: 328 name_pair = (atype, atype) 329 if (atype not in self.host_types): 333 if (self.are_types_compatible(atype, atype)): 338 self._set_useful_force_compatible(atype) 362 for atype in comparator.guest_types: 363 if (atype not in comparator.host_types): [all …]
|
/frameworks/libs/binary_translation/kernel_api/tools/ |
D | api_analysis.py | 21 def _is_size_required(atype): argument 22 if atype['kind'] in ['incomplete', 'const', 'volatile', 'restrict', 'function']: 24 return atype['kind'] != 'array' or not bool(atype.get('incomplete', 'false')) 325 for atype in self.guest_types: 326 name_pair = (atype, atype) 327 if (atype not in self.host_types): 331 if (self.are_types_compatible(atype, atype)): 336 self._set_useful_force_compatible(atype) 360 for atype in comparator.guest_types: 361 if (atype not in comparator.host_types): [all …]
|