/third_party/boost/boost/test/data/monomorphic/ |
D | sample_merge.hpp | 75 inline auto as_tuple( T && arg ) in as_tuple() function 89 -> decltype( std::tuple_cat(ds_detail::as_tuple(std::forward<T1>(a1)), in sample_merge() 90 ds_detail::as_tuple(std::forward<T2>(a2)) ) ) { in sample_merge() 91 return std::tuple_cat(ds_detail::as_tuple(std::forward<T1>(a1)), in sample_merge() 92 ds_detail::as_tuple(std::forward<T2>(a2))); in sample_merge()
|
/third_party/boost/libs/hana/include/boost/hana/experimental/ |
D | printable.hpp | 226 auto as_tuple = hana::transform(hana::to_tuple(set), in apply() local 228 auto comma_separated = hana::intersperse(as_tuple, ", "); in apply()
|
/third_party/boost/boost/hana/experimental/ |
D | printable.hpp | 226 auto as_tuple = hana::transform(hana::to_tuple(set), in apply() local 228 auto comma_separated = hana::intersperse(as_tuple, ", "); in apply()
|
/third_party/python/Lib/sqlite3/test/ |
D | factory.py | 215 as_tuple = tuple(row) 216 self.assertEqual(list(reversed(row)), list(reversed(as_tuple)))
|
/third_party/python/Lib/logging/ |
D | config.py | 481 def as_tuple(self, value): member in BaseConfigurator 738 config['mailhost'] = self.as_tuple(config['mailhost']) 741 config['address'] = self.as_tuple(config['address'])
|
/third_party/python/Lib/test/ |
D | test_decimal.py | 2055 self.assertEqual(d.as_tuple(), (0, (0,), 0) ) 2059 self.assertEqual(d.as_tuple(), (1, (4, 5), 0) ) 2063 self.assertEqual(d.as_tuple(), (1, (4, 3, 4, 9, 1, 3, 5, 3, 4), -25) ) 2068 self.assertEqual(d.as_tuple(), (0, (0,), 'F') ) 2072 self.assertEqual(d.as_tuple(), (0, (4, 0, 5, 3, 4), -2) ) 2074 self.assertEqual(d.as_tuple(), (1, (0,), 37)) 2076 self.assertEqual(d.as_tuple(), (1, (0,), 37)) 2080 self.assertEqual(d.as_tuple(), (0, (4, 0, 5, 3, 4), 'n') ) 2082 self.assertEqual(d.as_tuple(), (1, (), 'N') ) 2084 self.assertEqual(d.as_tuple(), (1, (), 'n') ) [all …]
|
D | test_statistics.py | 60 aexp = a.as_tuple()[2] 61 bexp = b.as_tuple()[2]
|
/third_party/python/Modules/_decimal/tests/ |
D | deccheck.py | 845 t.cresults.append(t.rc.as_tuple()) 849 t.presults.append(t.rp.as_tuple()) 855 t.maxresults.append(t.rmax.as_tuple())
|
/third_party/python/Doc/library/ |
D | decimal.rst | 473 .. method:: as_tuple() 1040 the exception of the :meth:`adjusted` and :meth:`as_tuple` methods) there is 1859 sign, digits, exp = value.quantize(q).as_tuple()
|
/third_party/python/Lib/ |
D | _pydecimal.py | 969 def as_tuple(self): member in Decimal
|
/third_party/python/Doc/whatsnew/ |
D | 2.6.rst | 1877 the :meth:`Decimal.as_tuple` method now returns a named tuple with 1940 The :meth:`as_tuple` method of :class:`Decimal` objects now returns a
|