Lines Matching refs:domain
53 domain = None
77 match = re.compile(r'^(experimental )?(deprecated )?domain (.*)').match(line)
79 domain = createItem({'domain' : match.group(3)}, match.group(1), match.group(2))
80 protocol['domains'].append(domain)
85 if 'dependencies' not in domain:
86 domain['dependencies'] = []
87 domain['dependencies'].append(match.group(1))
92 if 'types' not in domain:
93 domain['types'] = []
96 domain['types'].append(item)
103 if 'commands' in domain:
104 list = domain['commands']
106 list = domain['commands'] = []
108 if 'events' in domain:
109 list = domain['events']
111 list = domain['events'] = []