Searched refs:list_stack (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/ |
D | htmllib.py | 56 self.list_stack = [] 273 self.formatter.end_paragraph(not self.list_stack) 275 self.list_stack.append(['ul', '*', 0]) 278 if self.list_stack: del self.list_stack[-1] 279 self.formatter.end_paragraph(not self.list_stack) 284 if self.list_stack: 285 [dummy, label, counter] = top = self.list_stack[-1] 292 self.formatter.end_paragraph(not self.list_stack) 299 self.list_stack.append(['ol', label, 0]) 302 if self.list_stack: del self.list_stack[-1] [all …]
|
/external/markdown/markdown/extensions/ |
D | toc.py | 34 list_stack=[div] 64 list_stack.pop() 72 list_stack[-1].append(newlist) 73 list_stack.append(newlist) 102 list_stack[-1].append(last_li)
|
/external/tensorflow/tensorflow/python/autograph/operators/ |
D | data_structures_test.py | 157 t = data_structures.list_stack(l, opts) 170 data_structures.list_stack(l, opts) 182 self.assertAllEqual(data_structures.list_stack([1, 2], opts), [2, 4])
|
D | __init__.py | 45 from tensorflow.python.autograph.operators.data_structures import list_stack
|
D | data_structures.py | 305 def list_stack(list_, opts): function
|
/external/tensorflow/tensorflow/python/autograph/lang/ |
D | special_functions.py | 119 return data_structures.list_stack(
|
/external/tensorflow/tensorflow/contrib/autograph/examples/notebooks/ |
D | algorithms.ipynb | 1446 " final_board = ag__.list_stack(new_board, opts=ag__.ListStackOpts(\n", 1470 " boards = ag__.list_stack(boards, opts=ag__.ListStackOpts(\n",
|