Home
last modified time | relevance | path

Searched refs:istitle (Results 1 – 10 of 10) sorted by relevance

/third_party/boost/libs/python/test/
Dstr.cpp73 data.isspace() || data.istitle() || data.isupper(); in work_with_string()
/third_party/python/Lib/test/
Dtest_unicodedata.py37 "01"[char.istitle()],
48 "01"[(char + 'abc').istitle()],
Dtest_bool.py215 self.assertIs("X".istitle(), True)
216 self.assertIs("x".istitle(), False)
Dtest_unicode.py637 self.assertTrue('\U00010401\U00010429'.istitle())
638 self.assertTrue('\U00010427\U0001044E'.istitle())
641 self.assertFalse(ch.istitle(), '{!a} is not title'.format(ch))
780 self.assertFalse(s.istitle())
785 self.assertTrue(s.istitle())
Dtest_bigmem.py216 self.assertTrue(s.istitle())
218 self.assertTrue(s.istitle())
220 self.assertFalse(s.istitle())
/third_party/boost/libs/python/src/
Dstr.cpp272 bool str_base::istitle() const in istitle() function in boost::python::detail::str_base
/third_party/boost/libs/python/doc/reference/
Dstr.qbk77 bool istitle() const;
/third_party/boost/boost/python/
Dstr.hpp74 bool istitle() const;
/third_party/python/Lib/collections/
D__init__.py1477 def istitle(self): member in UserString
1478 return self.data.istitle()
/third_party/python/Doc/library/
Dstdtypes.rst1807 .. method:: str.istitle()
3236 .. method:: bytes.istitle()
3237 bytearray.istitle()
3245 >>> b'Hello World'.istitle()
3247 >>> b'Hello world'.istitle()