Home | History | Annotate | Download | only in scripts

Lines Matching refs:type_id

45 def full_qualified_type_id(domain_name, type_id):
46 if type_id.find(".") == -1:
47 return "%s.%s" % (domain_name, type_id)
48 return type_id
76 type_id = full_qualified_type_id(domain_name, param["$ref"])
77 if type_id in ref_types:
78 return ref_types[type_id]
80 print "Type not found: " + type_id
81 return "!! Type not found: " + type_id
106 type_id = full_qualified_type_id(domain_name, type["id"])
107 ref_types[type_id] = "%sAgent.%s" % (domain_name, type["id"])