Lines Matching refs:item
18 def assignType(item, type, is_array=False, map_binary_to_string=False):
20 item['type'] = 'array'
21 item['items'] = collections.OrderedDict()
22 assignType(item['items'], type, False, map_binary_to_string)
30 item['type'] = type
32 item['$ref'] = type
54 item = None
94 item = createItem({'id': match.group(3)}, match.group(1), match.group(2))
95 assignType(item, match.group(5), match.group(4), map_binary_to_string)
96 domain['types'].append(item)
113 item = createItem({}, match.group(1), match.group(2), match.group(4))
114 list.append(item)
130 subitems = item[match.group(1)] = []
135 enumliterals = item['enum'] = []
154 item['redirect'] = match.group(1)