Home
last modified time | relevance | path

Searched refs:dictionary (Results 1 – 1 of 1) sorted by relevance

/art/test/712-varhandle-invocations/util-src/
Dgenerate_java.py125 def get_field_declarations(self, dictionary): argument
126 return list(map(lambda d: Template(d).safe_substitute(dictionary), self.declarations))
131 def get_lookup(self, dictionary): argument
132 return Template(self.lookup).safe_substitute(dictionary)
140 def get_value(self, dictionary): argument
141 return Template(self.get_value_).safe_substitute(dictionary)
565 dictionary = {
575dictionary['imports'] = ";\n".join(list(map(lambda x: "import " + x, var_handle_kind.get_imports()…
576 dictionary['lookup'] = var_handle_kind.get_lookup(dictionary)
577dictionary['field_declarations'] = ";\n".join(var_handle_kind.get_field_declarations(dictionary))
[all …]