/third_party/boost/boost/fiber/detail/ |
D | data.hpp | 31 explicit data_t( context * from_) noexcept : in data_t() 32 from{ from_ } { in data_t() 36 context * from_) noexcept : in data_t() 38 from{ from_ } { 42 context * from_) noexcept : in data_t() 44 from{ from_ } {
|
/third_party/python/Lib/turtledemo/ |
D | minimal_hanoi.py | 44 def hanoi(n, from_, with_, to_): argument 46 hanoi(n-1, from_, to_, with_) 47 to_.push(from_.pop()) 48 hanoi(n-1, with_, from_, to_)
|
/third_party/boost/boost/contract/detail/condition/ |
D | cond_base.hpp | 42 , from_(from) in cond_base() 123 if(h) h(from_); in fail() 135 boost::contract::from from_; member in boost::contract::detail::cond_base
|
/third_party/mindspore/tests/st/model_zoo_tests/ |
D | utils.py | 24 def copy_files(from_, to_, model_name): argument 25 if not os.path.exists(os.path.join(from_, model_name)): 26 raise ValueError("There is no file or path", os.path.join(from_, model_name)) 29 return os.system("cp -r {0} {1}".format(os.path.join(from_, model_name), to_))
|
/third_party/mindspore/mindspore/ccsrc/frontend/parallel/tensor_layout/ |
D | tensor_redistribution.cc | 37 from_ = from_origin_.SqueezeShape(); in Init() 49 MS_LOG(DEBUG) << "reshape from_ " << from_.ToString(); in InferTensorRedistributionOperatorListUnExpand() 81 Status status = layout_transfer.Init(from_, to_); in InferTensorRedistributionOperatorList() 107 MS_LOG(DEBUG) << "reshape from_ " << from_.ToString(); in InferTensorRedistributionOperatorList() 230 prev_shape = from_.slice_shape().array(); in ComputeCost() 232 prev_shape = from_.tensor_shape().array(); in ComputeCost()
|
D | tensor_redistribution.h | 72 TensorLayout from_; variable
|
/third_party/python/Lib/tkinter/test/test_ttk/ |
D | test_extensions.py | 63 x = ttk.LabeledScale(self.root, from_=pair[0]) 66 x = ttk.LabeledScale(self.root, from_=None) 75 x = ttk.LabeledScale(self.root, variable=myvar, from_=0.5) 103 lscale = ttk.LabeledScale(self.root, from_=0, to=10) 113 lscale.scale.configure(from_=-5, to=5) 124 lscale.scale.configure(from_=0, to=10)
|
D | test_widgets.py | 784 self.scale.configure(from_=2, to=5) 785 self.scale.configure(from_=0, to=-2)
|
/third_party/boost/boost/spirit/home/x3/char/ |
D | char_set.hpp | 36 constexpr char_range(char_type from_, char_type to_) in char_range() 37 : from(from_), to(to_) {} in char_range()
|
/third_party/boost/libs/coroutine/example/symmetric/ |
D | merge_arrays.cpp | 46 merger( std::vector< int > const& from_, std::vector< int > & to, std::size_t max) : in merger() argument 49 from( from_), in merger()
|
/third_party/python/Lib/tkinter/ |
D | ttk.py | 1510 def __init__(self, master=None, variable=None, from_=0, to=10, **kw): argument 1525 self._variable.set(from_) 1526 self._last_valid = from_ 1529 self.scale = Scale(self, variable=self._variable, from_=from_, to=to) 1574 from_ = _to_number(self.scale['from']) 1576 if to < from_: 1577 from_, to = to, from_ 1579 if not from_ <= newval <= to:
|
D | tix.py | 1446 def delete(self, from_, to=None): argument 1447 self.tk.call(self._w, 'delete', from_, to) 1811 def delete_row(self, from_, to=None): argument 1815 self.tk.call(self, 'delete', 'row', from_) 1817 self.tk.call(self, 'delete', 'row', from_, to) 1819 def delete_column(self, from_, to=None): argument 1823 self.tk.call(self, 'delete', 'column', from_) 1825 self.tk.call(self, 'delete', 'column', from_, to) 1857 def move_column(self, from_, to, offset): argument 1861 self.tk.call(self, 'move', 'column', from_, to, offset) [all …]
|
/third_party/boost/boost/python/suite/indexing/detail/ |
D | indexing_suite_detail.hpp | 589 Container& container, PySliceObject* slice, Index& from_, Index& to_) in base_get_slice_data() 600 from_ = min_index; in base_get_slice_data() 608 from_ = boost::numeric_cast<Index>(from); in base_get_slice_data() 609 if (from_ > max_index) // Clip upper bounds to max_index. in base_get_slice_data() 610 from_ = max_index; in base_get_slice_data()
|
/third_party/python/Lib/ |
D | mailbox.py | 787 def get_string(self, key, from_=False): argument 790 self.get_bytes(key, from_)).as_string(unixfrom=from_) 792 def get_bytes(self, key, from_=False): argument 796 if not from_: 801 def get_file(self, key, from_=False): argument 805 if not from_: 1653 def set_from(self, from_, time_=None): argument 1658 from_ += ' ' + time.asctime(time_) 1659 self._from = from_
|
/third_party/boost/boost/context/ |
D | continuation_winfib.hpp | 193 explicit forced_unwind( activation_record * from_) : in forced_unwind() 194 from{ from_ } { in forced_unwind()
|
D | fiber_winfib.hpp | 192 explicit forced_unwind( fiber_activation_record * from_) : in forced_unwind() 193 from{ from_ } { in forced_unwind()
|
D | fiber_ucontext.hpp | 217 forced_unwind( fiber_activation_record * from_) noexcept : in forced_unwind() 218 from{ from_ } { in forced_unwind()
|
D | continuation_ucontext.hpp | 217 forced_unwind( activation_record * from_) noexcept : in forced_unwind() 218 from{ from_ } { in forced_unwind()
|
/third_party/boost/boost/spirit/home/qi/char/ |
D | char.hpp | 204 char_range(char_type from_, char_type to_) in char_range() 205 : from(from_), to(to_) {} in char_range()
|
/third_party/python/Lib/test/ |
D | test_unicode.py | 2930 for idx, from_ in enumerate(strings): 2935 unicode_copycharacters, to, 0, from_, 0, 5 2940 unicode_copycharacters(from_, 0, from_, from_start, 5), 2941 (from_[from_start:from_start+5].ljust(5, '\0'), 2946 unicode_copycharacters(from_, to_start, from_, to_start, 5), 2947 (from_[to_start:to_start+5].rjust(5, '\0'),
|
D | test_mailbox.py | 995 self.assertEqual(self._box.get_bytes(key0, from_=False), 997 self.assertEqual(self._box.get_bytes(key1, from_=False), 999 self.assertEqual(self._box.get_bytes(key0, from_=True), 1001 self.assertEqual(self._box.get_bytes(key1, from_=True), 1009 self.assertEqual(self._box.get_string(key0, from_=False), 1011 self.assertEqual(self._box.get_string(key1, from_=False).split('\n'), 1013 self.assertEqual(self._box.get_string(key0, from_=True), 1015 self.assertEqual(self._box.get_string(key1, from_=True).split('\n'),
|
/third_party/python/Doc/library/ |
D | mailbox.rst | 1008 .. method:: set_from(from_, time_=None) 1010 Set the "From " line to *from_*, which should be specified without a 1012 specified and will be formatted appropriately and appended to *from_*. If 1379 .. method:: set_from(from_, time_=None) 1381 Set the "From " line to *from_*, which should be specified without a 1383 specified and will be formatted appropriately and appended to *from_*. If
|
D | tkinter.ttk.rst | 409 | | spelled as ``from_`` when used as an argument, since |
|
/third_party/python/Lib/idlelib/ |
D | configdialog.py | 1662 from_=1, to=10, width=2,
|
/third_party/python/Misc/NEWS.d/ |
D | 3.8.0a1.rst | 2720 The `mailbox.mbox.get_string` function *from_* parameter can now
|