Lines Matching refs:prop
70 <%def name="insert_entry(prop)">
71 % if prop.is_clone():
72 <clone entry="${prop.name}" kind="${prop.target_kind}"
73 % if ('hal_version' in prop._property_keys):
74 hal_version="${prop.hal_major_version}.${prop.hal_minor_version}"
78 % if prop.details is not None:
79 <details>${prop.details}</details>
82 % if prop.ndk_details is not None:
83 <ndk_details>${prop.ndk_details}</ndk_details>
86 % if prop.hal_details is not None:
87 <hal_details>${prop.hal_details}</hal_details>
90 % for tag in prop.tags:
96 <entry name="${prop.name_short}" type="${prop.type}"
97 % if prop.visibility:
98 visibility="${prop.visibility}"
100 % if prop.synthetic:
103 % if prop.deprecated:
106 % if prop.optional:
107 optional="${str(prop.optional).lower()}"
109 % if prop.enum:
112 % if prop.type_notes is not None:
113 type_notes="${prop.type_notes}"
115 % if prop.container is not None:
116 container="${prop.container}"
119 % if prop.typedef is not None:
120 typedef="${prop.typedef.name}"
123 % if prop.hwlevel:
124 hwlevel="${prop.hwlevel}"
127 % if prop.permission_needed == "true":
131 % if (prop.hal_major_version, prop.hal_minor_version) != (3,2):
132 hal_version="${prop.hal_major_version}.${prop.hal_minor_version}"
136 % if prop.container == 'array':
138 % for size in prop.container_sizes:
142 % elif prop.container == 'tuple':
144 % for size in prop.container_sizes:
149 % if prop.enum:
151 % for value in prop.enum.values:
165 …% if not (value.hal_major_version == prop.hal_major_version and value.hal_minor_version == prop.ha…
184 % if prop.description is not None:
185 <description>${prop.description | x}</description>
188 % if prop.deprecation_description is not None:
189 … <deprecation_description>${prop.deprecation_description | x}</deprecation_description>
192 % if prop.units is not None:
193 <units>${prop.units | x}</units>
196 % if prop.range is not None:
197 <range>${prop.range | x}</range>
200 % if prop.details is not None:
201 <details>${prop.details | x}</details>
204 % if prop.ndk_details is not None:
205 <ndk_details>${prop.ndk_details}</ndk_details>
208 % if prop.hal_details is not None:
209 <hal_details>${prop.hal_details | x}</hal_details>
212 % for tag in prop.tags: