Searched refs:to_list (Results 1 – 6 of 6) sorted by relevance
165 struct curl_llist *to_list, in Curl_llist_move() argument191 if(to_list->size == 0) { in Curl_llist_move()192 to_list->head = e; in Curl_llist_move()193 to_list->head->prev = NULL; in Curl_llist_move()194 to_list->head->next = NULL; in Curl_llist_move()195 to_list->tail = e; in Curl_llist_move()204 to_list->tail = e; in Curl_llist_move()209 ++to_list->size; in Curl_llist_move()
38 to_list = [x for x in re.split('\s|,|;|:', to_string) if x]39 if not to_list:41 to_string = ','.join(to_list)
122 def to_list(self): member in AccessVector225 def to_list(self): member in AccessVectorSet244 l.append(av.to_list())
349 avl = iv.access.to_list()
71 l = a.to_list()242 avl = a.to_list()
215 to_list = lambda s: list(s) if isinstance(s, tuple) else [s] function216 return tuple(tuple(to_list(s1) + to_list(s2)) for s1 in seq1