Home | History | Annotate | Download | only in docs

Lines Matching refs:prop

208         <%def name="insert_entry(prop)">
209 % if False: #prop.is_clone():
210 <clone entry="${prop.name}" kind="${prop.target_kind}">
212 % if prop.notes is not None:
213 <notes>${prop.notes | h,wbr}</notes>
216 % for tag in prop.tags:
222 <tr class="entry" id="${prop.kind}_${prop.name}">
223 <td class="entry_name">${prop.name | wbr}</td>
225 % if prop.enum:
226 <span class="entry_type_name entry_type_name_enum">${prop.type}</span>
228 <span class="entry_type_name">${prop.type}</span>
230 % if prop.container is not None:
234 % if prop.container == 'array':
236 ${" x ".join(prop.container_sizes)}
238 % elif prop.container == 'tuple':
240 % for val in prop.tuple_values:
245 <span class="entry_type_visibility"> [${prop.applied_visibility}${" as %s" %prop.typedef.name if prop.typedef else ""}]</span>
246 % if prop.type_notes is not None:
247 <div class="entry_type_notes">${prop.type_notes | wbr}</div>
250 % if prop.enum:
252 % for value in prop.enum.values:
272 % if prop.description is not None:
273 ${prop.description | wbr, br}
278 % if prop.units is not None:
279 ${prop.units | wbr}
284 % if prop.range is not None:
285 ${prop.range | wbr}
290 % if prop.notes is not None:
291 ${prop.notes | wbr, br}
296 % if next(prop.tags, None):
298 % for tag in prop.tags:
327 % for prop in tag.entries:
328 <li><a href="#${prop.kind}_${prop.name}">${prop.name}</a> (${prop.kind})</li>