Home | History | Annotate | Download | only in docs

Lines Matching refs:entry

27 <%def name="generate_enum(entry, target_class)">\
29 // Enumeration values for ${target_class}#${entry.name | jkey_identifier}
32 % for value in entry.enum.values:
37 * @see ${target_class}#${entry.name | jkey_identifier}
38 % if entry.applied_visibility == 'hidden':
42 public static final int ${jenum_value(entry, value)} = ${enum_calculate_value_string(value)};
51 % if section.find_first(lambda x: isinstance(x, metadata_model.Entry) and x.kind == xml_name) and \
56 % for entry in filter_visibility(inner_namespace.entries, ('hidden','public')):
57 % if entry.enum \
58 and not (entry.typedef and entry.typedef.languages.get('java')) \
59 and not entry.is_clone():
60 ${generate_enum(entry, target_class)}\
64 % for entry in filter_visibility( \
67 % if entry.enum \
68 and not (entry.typedef and entry.typedef.languages.get('java')) \
69 and not entry.is_clone():
70 ${generate_enum(entry, target_class)}\