Home | History | Annotate | Download | only in json_schema_compiler

Lines Matching refs:prop

128       for prop in type_.properties.values():
129 if (prop.type_ == PropertyType.REF and
130 schema_util.GetNamespace(prop.ref_type) == self._namespace.name):
131 ExpandType(path + [type_], self._namespace.types[prop.ref_type])
154 for prop in props:
158 if prop.description:
159 c.Comment(prop.description)
162 is_ptr = prop.optional or prop.type_.property_type == PropertyType.ANY
164 self._type_helper.GetCppType(prop.type_, is_ptr=is_ptr),
165 prop.unix_name))