Home | History | Annotate | Download | only in build

Lines Matching refs:type_id

54 def full_qualified_type_id(domain_name, type_id):
55 if type_id.find(".") == -1:
56 return "%s.%s" % (domain_name, type_id)
57 return type_id
89 type_id = full_qualified_type_id(domain_name, param["$ref"])
90 if type_id in ref_types:
91 return ref_types[type_id]
93 print "Type not found: " + type_id
94 return "!! Type not found: " + type_id
122 type_id = full_qualified_type_id(domain_name, type["id"])
123 ref_types[type_id] = "%sAgent.%s" % (domain_name, type["id"])