Searched refs:list_append (Results 1 – 9 of 9) sorted by relevance
/external/tensorflow/tensorflow/python/autograph/operators/ |
D | data_structures_test.py | 103 l = data_structures.list_append(l, x) 112 l1 = data_structures.list_append(l, 1) 113 l2 = data_structures.list_append(l1, 2) 120 self.assertAllEqual(data_structures.list_append(l, 1), [1]) 121 self.assertAllEqual(data_structures.list_append(l, 2), [1, 2])
|
D | __init__.py | 43 from tensorflow.python.autograph.operators.data_structures import list_append
|
D | data_structures.py | 171 def list_append(list_, x): function
|
/external/libcap-ng/libcap-ng-0.7/utils/ |
D | proc-llist.h | 53 void list_append(llist *l, lnode *node);
|
D | proc-llist.c | 36 void list_append(llist *l, lnode *node) in list_append() function
|
D | netcap.c | 202 list_append(&l, &node); in collect_process_info()
|
/external/python/cpython3/Objects/clinic/ |
D | listobject.c.h | 77 {"append", (PyCFunction)list_append, METH_O, list_append__doc__},
|
/external/tensorflow/tensorflow/contrib/autograph/examples/notebooks/ |
D | algorithms.ipynb | 1436 " new_board_1 = ag__.list_append(new_board_1, new_cell)\n", 1466 " boards_1 = ag__.list_append(boards_1, board_1)\n",
|
/external/python/cpython3/Objects/ |
D | listobject.c | 799 list_append(PyListObject *self, PyObject *object) in list_append() function
|