Home
last modified time | relevance | path

Searched refs:list_append (Results 1 – 13 of 13) sorted by relevance

/external/tensorflow/tensorflow/python/autograph/operators/
Ddata_structures_test.py103 l = data_structures.list_append(l, x)
112 l1 = data_structures.list_append(l, 1)
113 l2 = data_structures.list_append(l1, 2)
121 self.assertAllEqual(data_structures.list_append(l, 1), [1])
122 self.assertAllEqual(data_structures.list_append(l, 2), [1, 2])
D__init__.py44 from tensorflow.python.autograph.operators.data_structures import list_append
Ddata_structures.py171 def list_append(list_, x): function
/external/rust/crates/rayon/src/iter/
Dextend.rs33 .reduce(LinkedList::new, list_append) in collect()
47 fn list_append<T>(mut list1: LinkedList<T>, mut list2: LinkedList<T>) -> LinkedList<T> { in list_append() function
235 .reduce(LinkedList::new, list_append); in par_extend()
270 .reduce(LinkedList::new, list_append); in par_extend()
/external/libcap-ng/libcap-ng-0.7/utils/
Dproc-llist.h53 void list_append(llist *l, lnode *node);
Dproc-llist.c36 void list_append(llist *l, lnode *node) in list_append() function
Dnetcap.c202 list_append(&l, &node); in collect_process_info()
/external/libxkbcommon/src/
Dregistry.c780 list_append(&ctx->models, &m->base.link); in parse_model()
810 list_append(&layout->iso639s, &code->base.link); in parse_language_list()
829 list_append(&layout->iso3166s, &code->base.link); in parse_country_list()
861 list_append(&ctx->layouts, &v->base.link); in parse_variant()
925 list_append(&ctx->layouts, &l->base.link); in parse_layout()
984 list_append(&group->options, &o->base.link); in parse_option()
1020 list_append(&ctx->option_groups, &g->base.link); in parse_group()
Dutil-list.h45 void list_append(struct list *list, struct list *elm);
Dutil-list.c56 list_append(struct list *list, struct list *elm) in list_append() function
/external/python/cpython3/Objects/clinic/
Dlistobject.c.h94 {"append", (PyCFunction)list_append, METH_O, list_append__doc__},
/external/starlark-go/starlark/
Dlibrary.go94 "append": NewBuiltin("append", list_append),
1292 func list_append(_ *Thread, b *Builtin, args Tuple, kwargs []Tuple) (Value, error) { func
/external/python/cpython3/Objects/
Dlistobject.c823 list_append(PyListObject *self, PyObject *object) in list_append() function