Home
last modified time | relevance | path

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

/third_party/python/Lib/tkinter/
Dsimpledialog.py274 minvalue = None, maxvalue = None, argument
278 self.minvalue = minvalue
314 if self.minvalue is not None and result < self.minvalue:
318 "Please try again." % self.minvalue,
432 print(askfloat("Spam", "Egg weight\n(in tons)", minvalue=1,
/third_party/boost/libs/lexical_cast/test/
Dlexical_cast_float_types_test.cpp291 test_t minvalue = (std::numeric_limits<test_t>::min)(); in test_float_typess_for_overflows() local
292 std::string s_min_value = lexical_cast<std::string>(minvalue); in test_float_typess_for_overflows()
293 …BOOST_CHECK_CLOSE_FRACTION(minvalue, lexical_cast<test_t>(minvalue), (boost::math::tools::epsilon<… in test_float_typess_for_overflows()
294 …BOOST_CHECK_CLOSE_FRACTION(minvalue, lexical_cast<test_t>(s_min_value), (boost::math::tools::epsil… in test_float_typess_for_overflows()
/third_party/python/Lib/idlelib/
Dformat.py352 minvalue=2,
385 minvalue=2,
/third_party/python/Doc/howto/
Ddescriptor.rst396 def __init__(self, minvalue=None, maxvalue=None):
397 self.minvalue = minvalue
403 if self.minvalue is not None and value < self.minvalue:
405 f'Expected {value!r} to be at least {self.minvalue!r}'
447 quantity = Number(minvalue=0)
/third_party/gstreamer/gstplugins_good/sys/oss4/
Doss4-soundcard.h1775 int minvalue; member
/third_party/python/Lib/
Dturtle.py848 minvalue=minval, maxvalue=maxval,