Home
last modified time | relevance | path

Searched refs:list_index (Results 1 – 6 of 6) sorted by relevance

/third_party/mindspore/mindspore/ops/composite/multitype_ops/
Dgetitem_impl.py228 def _tensor_getitem_by_list(data, list_index): argument
239 return compile_utils.tensor_index_by_list(data, list_index)
D_compile_utils.py337 def tensor_index_by_list(data, list_index): argument
343 indexes_types = hyper_map(F.typeof, list_index)
345 tensor_index = const_utils.sequence_to_index(list_index, data_shape[0])
351 for index in list_index:
/third_party/boost/tools/build/src/engine/modules/
Dorder.cpp32 int list_index( LIST * list, OBJECT * value ) in list_index() function
115 int const dst = list_index( arg, list_item( dep_iter ) ); in order()
/third_party/python/Lib/idlelib/
Dconfigdialog.py1387 list_index = self.bindingslist.index(ANCHOR)
1388 binding = self.bindingslist.get(list_index)
1408 self.bindingslist.select_set(list_index)
1409 self.bindingslist.select_anchor(list_index)
1413 self.bindingslist.delete(list_index)
1414 self.bindingslist.insert(list_index, bind_name+' - '+new_keys)
1415 self.bindingslist.select_set(list_index)
1416 self.bindingslist.select_anchor(list_index)
1419 self.bindingslist.select_set(list_index)
1420 self.bindingslist.select_anchor(list_index)
[all …]
/third_party/python/Objects/clinic/
Dlistobject.c.h227 {"index", (PyCFunction)(void(*)(void))list_index, METH_FASTCALL, list_index__doc__},
234 list_index(PyListObject *self, PyObject *const *args, Py_ssize_t nargs) in list_index() function
/third_party/gstreamer/gstplugins_good/tests/check/elements/
Drtpbin_buffer_list.c272 check_packet (GstBufferList * list, guint list_index, guint packet_index) in check_packet() argument
278 fail_unless ((buffer = gst_buffer_list_get (list, list_index)) != NULL); in check_packet()