Searched refs:list_append (Results 1 – 13 of 13) 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) 121 self.assertAllEqual(data_structures.list_append(l, 1), [1]) 122 self.assertAllEqual(data_structures.list_append(l, 2), [1, 2])
|
D | __init__.py | 44 from tensorflow.python.autograph.operators.data_structures import list_append
|
D | data_structures.py | 171 def list_append(list_, x): function
|
/external/rust/crates/rayon/src/iter/ |
D | extend.rs | 33 .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/ |
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/libxkbcommon/src/ |
D | registry.c | 780 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()
|
D | util-list.h | 45 void list_append(struct list *list, struct list *elm);
|
D | util-list.c | 56 list_append(struct list *list, struct list *elm) in list_append() function
|
/external/python/cpython3/Objects/clinic/ |
D | listobject.c.h | 94 {"append", (PyCFunction)list_append, METH_O, list_append__doc__},
|
/external/starlark-go/starlark/ |
D | library.go | 94 "append": NewBuiltin("append", list_append), 1292 func list_append(_ *Thread, b *Builtin, args Tuple, kwargs []Tuple) (Value, error) { func
|
/external/python/cpython3/Objects/ |
D | listobject.c | 823 list_append(PyListObject *self, PyObject *object) in list_append() function
|