Home | History | Annotate | Download | only in docs

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.hal_major_version, prop.hal_minor_version) != (3,2):
128 hal_version="${prop.hal_major_version}.${prop.hal_minor_version}"
132 % if prop.container == 'array':
134 % for size in prop.container_sizes:
138 % elif prop.container == 'tuple':
140 % for size in prop.container_sizes:
145 % if prop.enum:
147 % for value in prop.enum.values:
164 % if not (value.hal_major_version == prop.hal_major_version and value.hal_minor_version == prop.hal_minor_version):
183 % if prop.description is not None:
184 <description>${prop.description | x}</description>
187 % if prop.deprecation_description is not None:
188 <deprecation_description>${prop.deprecation_description | x}</deprecation_description>
191 % if prop.units is not None:
192 <units>${prop.units | x}</units>
195 % if prop.range is not None:
196 <range>${prop.range | x}</range>
199 % if prop.details is not None:
200 <details>${prop.details | x}</details>
203 % if prop.ndk_details is not None:
204 <ndk_details>${prop.ndk_details}</ndk_details>
207 % if prop.hal_details is not None:
208 <hal_details>${prop.hal_details | x}</hal_details>
211 % for tag in prop.tags: