HomeSort by relevance Sort by last modified time
    Searched refs:parent_kind (Results 1 - 6 of 6) sorted by null

  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
translate.py 439 def _EnumField(module, enum, parsed_field, parent_kind):
445 parent_kind: {mojom.Kind} The enclosing type.
456 if parent_kind:
458 module, parsed_field.value, (module.namespace, parent_kind.name), enum)
494 def _Enum(module, parsed_enum, parent_kind):
507 if parent_kind:
508 name = parent_kind.name + '.' + name
510 enum.parent_kind = parent_kind
516 lambda field: _EnumField(module, enum, field, parent_kind),
    [all...]
module.py 85 parent_kind: The enclosing type. For example, a struct defined
90 self.parent_kind = None
225 def __init__(self, module, parent_kind, name):
228 self.parent_kind = parent_kind
234 (self.parent_kind and (self.parent_kind.name + '.') or "") +
244 def __init__(self, module, parent_kind, constant):
245 NamedValue.__init__(self, module, parent_kind, constant.name)
251 NamedValue.__init__(self, module, enum.parent_kind, field.name
    [all...]
  /system/media/camera/docs/
metadata_validate.py 176 parent_kind = find_parent_by_name(element, kinds)
177 return parent_kind
205 parent_kind = find_kind(clone)
  /external/libmojo/mojo/public/tools/bindings/generators/
mojom_js_generator.py 43 if kind.parent_kind:
44 name.append(kind.parent_kind.name)
266 if token.parent_kind:
267 name.append(token.parent_kind.name)
mojom_java_generator.py 234 if kind.parent_kind:
235 hierachy = _GetNameHierachy(kind.parent_kind)
311 if named_value.parent_kind:
312 return GetJavaType(context, named_value.parent_kind) + '.' + entity_name
mojom_cpp_generator.py 111 self._token.parent_kind):
112 name = "%s_%s" % (self._token.parent_kind.name,
117 if self._token.parent_kind:
118 name_parts.append(self._MapKindName(self._token.parent_kind, internal))

Completed in 93 milliseconds