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

  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
data.py 242 def EnumFieldFromData(module, enum, data, parent_kind):
249 if parent_kind:
251 module, data['value'], (module.namespace, parent_kind.name))
259 def EnumFromData(module, data, parent_kind):
263 if parent_kind:
264 name = parent_kind.name + '.' + name
266 enum.parent_kind = parent_kind
269 lambda field: EnumFieldFromData(module, enum, field, parent_kind),
274 def ConstantFromData(module, data, parent_kind)
    [all...]
module.py 19 self.parent_kind = None
64 def __init__(self, module, parent_kind, name):
67 self.parent_kind = parent_kind
73 (self.parent_kind and (self.parent_kind.name + '.') or "") +
79 NamedValue.__init__(self, module, enum.parent_kind, field.name)
  /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/chromium_org/mojo/public/tools/bindings/generators/
mojom_java_generator.py 94 if kind.parent_kind:
95 hierachy = _GetNameHierachy(kind.parent_kind)
115 if named_value.parent_kind:
116 return GetJavaType(named_value.parent_kind) + '.' + entity_name
mojom_cpp_generator.py 49 if kind.parent_kind:
50 parts.append(kind.parent_kind.name)
203 if token.parent_kind:
204 name.append(token.parent_kind.name)
mojom_js_generator.py 133 if token.parent_kind:
134 name.append(token.parent_kind.name)

Completed in 82 milliseconds