Home
last modified time | relevance | path

Searched refs:to_list (Results 1 – 25 of 32) sorted by relevance

12

/external/curl/lib/
Dllist.c152 struct curl_llist *to_list, in Curl_llist_move() argument
178 if(to_list->size == 0) { in Curl_llist_move()
179 to_list->head = e; in Curl_llist_move()
180 to_list->head->prev = NULL; in Curl_llist_move()
181 to_list->head->next = NULL; in Curl_llist_move()
182 to_list->tail = e; in Curl_llist_move()
191 to_list->tail = e; in Curl_llist_move()
196 ++to_list->size; in Curl_llist_move()
/external/autotest/scheduler/
Demail_manager.py38 to_list = [x for x in re.split('\s|,|;|:', to_string) if x]
39 if not to_list:
41 to_string = ','.join(to_list)
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_tensor_value.py91 return "<tf.RaggedTensorValue %s>" % self.to_list()
97 def to_list(self): member in RaggedTensorValue
100 values_as_list = self._values.to_list()
Dragged_test_util.py37 return self.evaluate(a).to_list()
44 return a.to_list()
84 return value.to_list()
Dragged_tensor.py1398 return "<tf.RaggedTensor %s>" % self.to_list()
1410 def to_list(self): member in RaggedTensor
1419 return self._eager_value().to_list()
Dragged_constant_value_op_test.py179 self.assertEqual(rt.to_list(), pylist)
Dconvert_to_tensor_or_ragged_tensor_op_test.py113 self.assertEqual(value.to_list(), self.eval_to_list(converted))
Dragged_tensor_test.py1148 self.assertEqual(result['rt1'].to_list(), [[1, 2, 3], [4]])
1149 self.assertEqual(result['rt2'].to_list(), [[[], [1, 2]], [[3]]])
1177 self.assertEqual(result['rt1'].to_list(), [[1, 2, 3], [4]])
1178 self.assertEqual(result['rt2'].to_list(), [[[], [1, 2]], [[3]]])
/external/toolchain-utils/cros_utils/
Demail_sender.py91 to_list = ','.join(email_to)
110 '--body_file=/dev/null' % (to_list, subject, body_filename))
113 (to_list, subject, body_filename))
/external/tensorflow/tensorflow/python/keras/utils/
Dmetrics_utils.py30 from tensorflow.python.keras.utils.generic_utils import to_list
155 assert_thresholds_range(to_list(thresholds))
156 thresholds = to_list(default_threshold if thresholds is None else thresholds)
302 thresholds = to_list(thresholds)
/external/python/cpython3/Lib/test/
Dtest_asyncgen.py37 def to_list(gen): function
144 self.assertEqual(to_list(gen()), [123, 456, 789])
180 to_list(gen())
209 to_list(gen())
218 to_list(gen())
332 async def to_list(self, gen): member in AsyncGenAsyncioTest
347 res = self.loop.run_until_complete(self.to_list(gen()))
359 self.loop.run_until_complete(self.to_list(gen()))
370 res = loop.run_until_complete(self.to_list(Gen()))
/external/selinux/python/sepolgen/src/sepolgen/
Daccess.py125 def to_list(self): member in AccessVector
237 def to_list(self): member in AccessVectorSet
256 l.append(av.to_list())
/external/selinux/python/sepolgen/tests/
Dtest_access.py76 l = a.to_list()
320 avl = a.to_list()
349 self.assertEqual(avs.to_list(), [['foo', 'bar', 'file', 'read']])
361 self.assertEqual(avs.to_list(), [['foo', 'bar', 'file', 'read',
/external/capstone/bindings/ocaml/
Dcapstone.ml173 List.exists (fun g -> g == group_id) (Array.to_list insn.groups);;
176 List.exists (fun g -> g == reg_id) (Array.to_list insn.regs_read);;
179 List.exists (fun g -> g == reg_id) (Array.to_list insn.regs_write);;
/external/libnl/include/netlink-private/route/
Dtc-api.h83 struct nl_list_head to_list; member
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.ragged.-ragged-tensor-value.pbtxt38 name: "to_list"
Dtensorflow.-ragged-tensor.pbtxt107 name: "to_list"
/external/tensorflow/tensorflow/tools/test/
Dperformance.bzl30 ).to_list()
/external/tensorflow/tensorflow/python/keras/
Dmodels.py228 if len(generic_utils.to_list(input_tensors)) != 1:
235 x = generic_utils.to_list(input_tensors)[0]
Dmetrics.py51 from tensorflow.python.keras.utils.generic_utils import to_list
862 num_thresholds = len(to_list(self.thresholds))
1185 num_thresholds = len(to_list(self.thresholds))
1311 num_thresholds = len(to_list(self.thresholds))
/external/libnl/lib/route/
Dtc.c939 nl_list_for_each_entry(ops, &tc_ops_list[type], to_list) in rtnl_tc_lookup_ops()
983 nl_list_add_tail(&ops->to_list, &tc_ops_list[ops->to_type]); in rtnl_tc_register()
994 nl_list_del(&ops->to_list); in rtnl_tc_unregister()
/external/autotest/client/site_tests/firmware_TouchMTB/
Dtest_flow.py215 to_list = lambda s: list(s) if isinstance(s, tuple) else [s] function
216 return tuple(tuple(to_list(s1) + to_list(s2)) for s1 in seq1
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.-ragged-tensor.pbtxt107 name: "to_list"
/external/grpc-grpc/bazel/
Dgenerate_cc.bzl64 f = ctx.attr.well_known_protos.files.to_list()[0].dirname
/external/tensorflow/tensorflow/python/kernel_tests/
Dunicode_encode_op_test.py42 value = value.to_list()

12