/external/e2fsprogs/tests/f_bad_disconnected_inode/ |
D | expect.1 | 5 Inode 9 has the casefold flag set but is not a directory. Clear flag? yes 7 Inode 14 has the casefold flag set but is not a directory. Clear flag? yes 15 Inode 16 has the casefold flag set but is not a directory. Clear flag? yes
|
/external/e2fsprogs/doc/RelNotes/ |
D | v1.45.4.txt | 12 E2fsck now checks to make sure the casefold flag is only set on 13 directories, and only when the casefold feature is enabled. 33 the documentation for the casefold and encrypt features.
|
D | v1.45.1.txt | 12 Finalize the casefold support so it is synchronized with what we 15 the ext4 feature name also changed from fname_encoding to casefold. 16 Add support for casefold to dumpe2fs and debugfs. 62 Fixed various casefold bugs.
|
D | v1.45.0.txt | 27 casefold attribute flag.
|
/external/e2fsprogs/ |
D | RELEASE-NOTES | 12 E2fsck now checks to make sure the casefold flag is only set on 13 directories, and only when the casefold feature is enabled. 33 the documentation for the casefold and encrypt features.
|
/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 | 110 if drv2 == drv or self.casefold(drv2) == self.casefold(drv): 184 def casefold(self, s): member in _WindowsFlavour 307 def casefold(self, s): member in _PosixFlavour 1006 cf = self._flavour.casefold
|
/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/parse_type/tasks/_vendor/ |
D | pathlib.py | 118 if drv2 == drv or self.casefold(drv2) == self.casefold(drv): 195 def casefold(self, s): member in _WindowsFlavour 272 def casefold(self, s): member in _PosixFlavour 495 cf = parent_path._flavour.casefold 893 cf = self._flavour.casefold 992 pattern = self._flavour.casefold(pattern) 1004 pattern = self._flavour.casefold(pattern)
|
/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
|
/external/e2fsprogs/lib/ext2fs/ |
D | ext2fsP.h | 104 int (*casefold)(const struct ext2fs_nls_table *charset, member
|
D | dirhash.c | 286 dlen = charset->ops->casefold(charset, in ext2fs_dirhash2()
|
D | nls_utf8.c | 924 .casefold = utf8_casefold,
|
D | ext2_fs.h | 949 EXT4_FEATURE_INCOMPAT_FUNCS(casefold, 4, 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 | 795 self.assertEqual('hello'.casefold(), 'hello') 796 self.assertEqual('hELlo'.casefold(), 'hello') 797 self.assertEqual('ß'.casefold(), 'ss') 798 self.assertEqual('fi'.casefold(), 'fi') 799 self.assertEqual('\u03a3'.casefold(), '\u03c3') 800 self.assertEqual('A\u0345\u03a3'.casefold(), 'a\u03b9\u03c3') 801 self.assertEqual('\u00b5'.casefold(), '\u03bc') 944 '\U00010000\U00100000'.casefold()
|
D | test_embed.py | 35 return name.casefold().endswith("_d".casefold())
|
/external/icu/icu4c/source/data/misc/ |
D | keyTypeData.txt | 477 casefold{""}
|
/external/python/cpython3/Doc/howto/ |
D | unicode.rst | 413 :meth:`~str.casefold` string method that converts a string to a 422 >>> street.casefold() 469 return NFD(NFD(s1).casefold()) == NFD(NFD(s2).casefold()) 478 there are a few characters that make :meth:`casefold` return a
|
/external/f2fs-tools/lib/ |
D | nls_utf8.c | 922 .casefold = utf8_casefold,
|
/external/python/pyfakefs/pyfakefs/ |
D | fake_pathlib.py | 230 def casefold(self, path): member in _FakeFlavour
|
/external/python/cpython3/Lib/collections/ |
D | __init__.py | 1357 def casefold(self): member in UserString 1358 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
|