Home
last modified time | relevance | path

Searched refs:strtobool (Results 1 – 12 of 12) sorted by relevance

/external/python/setuptools/setuptools/
Dpy36compat.py3 from distutils.util import strtobool
63 setattr(self, alias, not strtobool(val))
65 setattr(self, opt, strtobool(val))
/external/python/cpython3/Lib/distutils/tests/
Dtest_util.py11 check_environ, split_quoted, strtobool,
276 self.assertTrue(strtobool(y))
279 self.assertFalse(strtobool(n))
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py3/
Dutil.py61 return _util.strtobool(str(value).strip().lower() or 'no')
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/
Dutil.py61 return _util.strtobool(str(value).strip().lower() or 'no')
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/
Dutil.py71 return _util.strtobool(str(value).strip().lower() or 'no')
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/
Dutil.py71 return _util.strtobool(str(value).strip().lower() or 'no')
/external/python/cpython2/Lib/distutils/
Ddist.py20 from distutils.util import check_environ, strtobool, rfc822_escape
413 setattr(self, alias, not strtobool(val))
415 setattr(self, opt, strtobool(val))
891 setattr(command_obj, neg_opt[option], not strtobool(value))
893 setattr(command_obj, option, strtobool(value))
Dutil.py312 def strtobool (val): function
/external/python/cpython3/Lib/distutils/
Ddist.py19 from distutils.util import check_environ, strtobool, rfc822_escape
429 setattr(self, alias, not strtobool(val))
431 setattr(self, opt, strtobool(val))
904 setattr(command_obj, neg_opt[option], not strtobool(value))
906 setattr(command_obj, option, strtobool(value))
Dutil.py307 def strtobool (val): function
/external/python/cpython3/Doc/distutils/
Dapiref.rst1228 .. function:: strtobool(val)
/external/python/cpython2/Doc/distutils/
Dapiref.rst1193 .. function:: strtobool(val)