Searched refs:dictionary (Results 1 – 1 of 1) sorted by relevance
125 def get_field_declarations(self, dictionary): argument126 return list(map(lambda d: Template(d).safe_substitute(dictionary), self.declarations))131 def get_lookup(self, dictionary): argument132 return Template(self.lookup).safe_substitute(dictionary)140 def get_value(self, dictionary): argument141 return Template(self.get_value_).safe_substitute(dictionary)565 dictionary = {575 …dictionary['imports'] = ";\n".join(list(map(lambda x: "import " + x, var_handle_kind.get_imports()…576 dictionary['lookup'] = var_handle_kind.get_lookup(dictionary)577 … dictionary['field_declarations'] = ";\n".join(var_handle_kind.get_field_declarations(dictionary))[all …]