Home
last modified time | relevance | path

Searched refs:casefold (Results 1 – 25 of 25) sorted by relevance

/external/python/cpython2/Lib/
Dbase64.py184 def b32decode(s, casefold=False, map01=None): argument
211 if casefold:
266 def b16decode(s, casefold=False): argument
277 if casefold:
Dmhlib.py908 def pickline(file, key, casefold = 1): argument
914 prog = re.compile(pat, casefold and re.IGNORECASE)
928 def updateline(file, key, value, casefold = 1): argument
936 prog = re.compile(pat, casefold and re.IGNORECASE)
/external/python/cpython3/Lib/
Dbase64.py180 def b32decode(s, casefold=False, map01=None): argument
213 if casefold:
253 def b16decode(s, casefold=False): argument
264 if casefold:
Dpathlib.py109 if drv2 == drv or self.casefold(drv2) == self.casefold(drv):
183 def casefold(self, s): member in _WindowsFlavour
305 def casefold(self, s): member in _PosixFlavour
518 cf = parent_path._flavour.casefold
937 cf = self._flavour.casefold
1097 pattern = self._flavour.casefold(pattern)
1110 pattern = self._flavour.casefold(pattern)
/external/python/cpython2/Doc/library/
Dbase64.rst85 .. function:: b32decode(s[, casefold[, map01]])
89 *s* is the string to decode. Optional *casefold* is a flag specifying whether a
112 .. function:: b16decode(s[, casefold])
116 *s* is the string to decode. Optional *casefold* is a flag specifying whether a
/external/python/cpython3/Doc/library/
Dbase64.rst118 .. function:: b32decode(s, casefold=False, map01=None)
123 Optional *casefold* is a flag specifying
145 .. function:: b16decode(s, casefold=False)
150 Optional *casefold* is a flag specifying whether a
Dcollections.rst1247 New methods ``__getnewargs__``, ``__rmod__``, ``casefold``,
Dstdtypes.rst1505 .. method:: str.casefold()
1513 lowercase, :meth:`lower` would do nothing to ``'ß'``; :meth:`casefold`
/external/python/cpython3/Lib/lib2to3/pgen2/
Dtokenize.py53 x + y for x in l for y in l + ("",) if x.casefold() != y.casefold()
/external/python/cpython3/Lib/test/
Dtest_unicode.py775 self.assertEqual('hello'.casefold(), 'hello')
776 self.assertEqual('hELlo'.casefold(), 'hello')
777 self.assertEqual('ß'.casefold(), 'ss')
778 self.assertEqual('fi'.casefold(), 'fi')
779 self.assertEqual('\u03a3'.casefold(), '\u03c3')
780 self.assertEqual('A\u0345\u03a3'.casefold(), 'a\u03b9\u03c3')
781 self.assertEqual('\u00b5'.casefold(), '\u03bc')
924 '\U00010000\U00100000'.casefold()
/external/python/cpython3/Doc/howto/
Dunicode.rst407 :meth:`~str.casefold` string method that converts a string to a
416 >>> street.casefold()
463 return NFD(NFD(s1).casefold()) == NFD(NFD(s2).casefold())
472 there are a few characters that make :meth:`casefold` return a
/external/icu/icu4c/source/data/misc/
DkeyTypeData.txt474 casefold{""}
/external/python/cpython3/Lib/collections/
D__init__.py1200 def casefold(self): member in UserString
1201 return self.__class__(self.data.casefold())
/external/python/cpython3/Misc/NEWS.d/
D3.5.0b1.rst205 casefold(), format_map(), isprintable(), and maketrans(). Patch by Joe
D3.5.0a1.rst196 swapcase, casefold).
/external/python/cpython2/Tools/faqwiz/
Dfaqwiz.py445 if self.ui.casefold == 'no':
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
DTransliteratorTest.java2715 String casefold = UCharacter.foldCase(s, true); in TestCasing() local
2716 assertEquals("Casefold", casefold, toCasefold.transform(s)); in TestCasing()
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DTransliteratorTest.java2712 String casefold = UCharacter.foldCase(s, true); in TestCasing() local
2713 assertEquals("Casefold", casefold, toCasefold.transform(s)); in TestCasing()
/external/icu/icu4c/source/data/lang/
Den_XA.txt956 casefold{"[Ţö Çåšéƒöļðéð one two]"}
Den.txt953 casefold{"To Casefolded"}
Dar_XB.txt953 casefold{"؜‮To‬؜ ؜‮Casefolded‬؜"}
/external/python/cpython3/Doc/whatsnew/
D3.3.rst851 * The :class:`str` type gets a new :meth:`~str.casefold` method: return a
853 matching. For example, ``'ß'.casefold()`` returns ``'ss'``.
D3.5.rst931 :meth:`__getnewargs__`, :meth:`__rmod__`, :meth:`~str.casefold`,
/external/python/cpython3/Misc/
DHISTORY983 title, swapcase, casefold).
8275 - Issue #13752: Add a casefold() method to str.
33691 argument; a variable casefold is added to the module which can be used
/external/python/cpython2/Misc/
DHISTORY16312 argument; a variable casefold is added to the module which can be used