Searched refs:alias_map (Results 1 – 3 of 3) sorted by relevance
/external/e2fsprogs/intl/ |
D | localealias.c | 123 struct alias_map struct 137 libc_freeres_ptr (static struct alias_map *map); argument 146 static int alias_compare (const struct alias_map *map1, 147 const struct alias_map *map2); 154 struct alias_map *retval; in _nl_expand_alias() 167 struct alias_map item; in _nl_expand_alias() 172 retval = (struct alias_map *) bsearch (&item, map, nmap, in _nl_expand_alias() 173 sizeof (struct alias_map), in _nl_expand_alias() 360 qsort (map, nmap, sizeof (struct alias_map), in read_alias_file() 371 struct alias_map *new_map; in extend_alias_table() [all …]
|
/external/tensorflow/tensorflow/contrib/py2tf/converters/ |
D | side_effect_guards.py | 73 alias_map = {} 79 if alias_map: 80 n = ast_util.rename_symbols(n, alias_map) 90 new_alias_map.update(alias_map) 91 alias_map = new_alias_map 154 alias_map = dict(zip(need_alias, aliased_new_names)) 157 aliased_guarded_args = alias_map.get(s, s) 160 [alias_map.get(s, s).ast() for s in guarded_args], None) 172 alias_map = {} 183 (node.body, alias_map))
|
D | control_flow.py | 126 alias_map = dict(zip(aliased_orig_names, aliased_new_names)) 127 node_body = ast_util.rename_symbols(node.body, alias_map) 128 node_orelse = ast_util.rename_symbols(node.orelse, alias_map) 145 alias_map[s] if s in aliased_orig_names else s for s in modified)
|