Home
last modified time | relevance | path

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

/external/python/funcsigs/funcsigs/
Dodict.py61 link_prev, link_next, key = self.__map.pop(key)
62 link_prev[1] = link_next
63 link_next[0] = link_prev
108 link_next = link[1]
109 root[1] = link_next
110 link_next[0] = root
/external/python/cpython3/Lib/collections/
D__init__.py136 link_next = link.next
137 link_prev.next = link_next
138 link_next.prev = link_prev
182 link_next = link.next
183 root.next = link_next
184 link_next.prev = root
197 link_next = link.next
198 soft_link = link_next.prev
199 link_prev.next = link_next
200 link_next.prev = link_prev
/external/python/cpython2/Lib/
Dcollections.py86 link_prev, link_next, _ = self.__map.pop(key)
87 link_prev[1] = link_next # update link_prev[NEXT]
88 link_next[0] = link_prev # update link_next[PREV]
/external/python/cpython3/Lib/
Dfunctools.py534 link_prev, link_next, _key, result = link
535 link_prev[NEXT] = link_next
536 link_next[PREV] = link_prev
/external/python/cpython3/Modules/
D_functoolsmodule.c871 lru_list_elem *link_next = link->next; in lru_cache_extract_link() local
873 link_next->prev = link->prev; in lru_cache_extract_link()