/external/python/cpython2/Lib/ |
D | base64.py | 184 def b32decode(s, casefold=False, map01=None): argument 211 if casefold: 266 def b16decode(s, casefold=False): argument 277 if casefold:
|
D | mhlib.py | 908 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/ |
D | base64.py | 180 def b32decode(s, casefold=False, map01=None): argument 213 if casefold: 253 def b16decode(s, casefold=False): argument 264 if casefold:
|
D | pathlib.py | 109 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/ |
D | base64.rst | 85 .. 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/ |
D | base64.rst | 118 .. 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
|
D | collections.rst | 1247 New methods ``__getnewargs__``, ``__rmod__``, ``casefold``,
|
D | stdtypes.rst | 1505 .. method:: str.casefold() 1513 lowercase, :meth:`lower` would do nothing to ``'ß'``; :meth:`casefold`
|
/external/python/cpython3/Lib/lib2to3/pgen2/ |
D | tokenize.py | 53 x + y for x in l for y in l + ("",) if x.casefold() != y.casefold()
|
/external/python/cpython3/Lib/test/ |
D | test_unicode.py | 775 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/ |
D | unicode.rst | 407 :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/ |
D | keyTypeData.txt | 474 casefold{""}
|
/external/python/cpython3/Lib/collections/ |
D | __init__.py | 1200 def casefold(self): member in UserString 1201 return self.__class__(self.data.casefold())
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0b1.rst | 205 casefold(), format_map(), isprintable(), and maketrans(). Patch by Joe
|
D | 3.5.0a1.rst | 196 swapcase, casefold).
|
/external/python/cpython2/Tools/faqwiz/ |
D | faqwiz.py | 445 if self.ui.casefold == 'no':
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/ |
D | TransliteratorTest.java | 2715 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/ |
D | TransliteratorTest.java | 2712 String casefold = UCharacter.foldCase(s, true); in TestCasing() local 2713 assertEquals("Casefold", casefold, toCasefold.transform(s)); in TestCasing()
|
/external/icu/icu4c/source/data/lang/ |
D | en_XA.txt | 956 casefold{"[Ţö Çåšéƒöļðéð one two]"}
|
D | en.txt | 953 casefold{"To Casefolded"}
|
D | ar_XB.txt | 953 casefold{"To Casefolded"}
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 851 * The :class:`str` type gets a new :meth:`~str.casefold` method: return a 853 matching. For example, ``'ß'.casefold()`` returns ``'ss'``.
|
D | 3.5.rst | 931 :meth:`__getnewargs__`, :meth:`__rmod__`, :meth:`~str.casefold`,
|
/external/python/cpython3/Misc/ |
D | HISTORY | 983 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/ |
D | HISTORY | 16312 argument; a variable casefold is added to the module which can be used
|