Home
last modified time | relevance | path

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

123

/external/python/cpython3/Lib/
Dbase64.py201 def _b32decode(alphabet, s, casefold=False, map01=None): argument
217 if casefold:
252 def b32decode(s, casefold=False, map01=None): argument
253 return _b32decode(_b32alphabet, s, casefold, map01)
261 def b32hexdecode(s, casefold=False): argument
263 return _b32decode(_b32hexalphabet, s, casefold)
277 def b16decode(s, casefold=False): argument
288 if casefold:
Dpathlib.py103 if drv2 == drv or self.casefold(drv2) == self.casefold(drv):
186 def casefold(self, s): member in _WindowsFlavour
254 def casefold(self, s): member in _PosixFlavour
894 cf = self._flavour.casefold
/external/e2fsprogs/tests/f_bad_disconnected_inode/
Dexpect.15 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/
Dv1.45.4.txt12 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.
Dv1.45.1.txt12 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.
Dv1.45.0.txt27 casefold attribute flag.
Dv1.45.7.txt18 Add support for the simultaneous enablement of the casefold and
Dv1.46.0.txt23 encryption and the casefold feature enabled. This is used in some
/external/python/cpython3/Lib/test/test_importlib/
Dtest_windows.py66 assert key.casefold().startswith(base_key.casefold()), (
154 if expected.casefold() == actual.casefold():
/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/musl/src/regex/
Dfnmatch.c101 static int casefold(int k) in casefold() function
188 kfold = flags & FNM_CASEFOLD ? casefold(k) : k; in fnmatch_internal()
249 kfold = flags & FNM_CASEFOLD ? casefold(k) : k; in fnmatch_internal()
278 kfold = flags & FNM_CASEFOLD ? casefold(k) : k; in fnmatch_internal()
/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/parse_type/tasks/_vendor/
Dpathlib.py118 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/
Dbase64.rst118 .. function:: b32decode(s, casefold=False, map01=None)
123 Optional *casefold* is a flag specifying
147 .. function:: b32hexdecode(s, casefold=False)
166 .. function:: b16decode(s, casefold=False)
171 Optional *casefold* is a flag specifying whether a
/external/perfetto/tools/
Dcheck_sql_metrics.py58 if 'like' in line.casefold():
/external/gfxstream-protocols/registry/vulkan/scripts/
Dinterfacedocgenerator.py14 return item.casefold()
/external/python/cpython3/Lib/test/
Dtest_base64.py396 for to_decode, expected, casefold in test_cases:
397 with self.subTest(to_decode=to_decode, casefold=casefold):
398 self.assertEqual(base64.b32hexdecode(to_decode, casefold),
401 casefold), expected)
Dtest_unicode.py825 self.assertEqual('hello'.casefold(), 'hello')
826 self.assertEqual('hELlo'.casefold(), 'hello')
827 self.assertEqual('ß'.casefold(), 'ss')
828 self.assertEqual('fi'.casefold(), 'fi')
829 self.assertEqual('\u03a3'.casefold(), '\u03c3')
830 self.assertEqual('A\u0345\u03a3'.casefold(), 'a\u03b9\u03c3')
831 self.assertEqual('\u00b5'.casefold(), '\u03bc')
974 '\U00010000\U00100000'.casefold()
/external/e2fsprogs/lib/ext2fs/
Dext2fsP.h104 int (*casefold)(const struct ext2fs_nls_table *charset, member
Ddirhash.c290 dlen = charset->ops->casefold(charset, in ext2fs_dirhash2()
/external/python/cpython3/Lib/lib2to3/pgen2/
Dtokenize.py53 x + y for x in l for y in l + ("",) if x.casefold() != y.casefold()
/external/e2fsprogs/e2fsck/
Drehash.c244 int casefold; member
251 if (!cmp_ctx->casefold) in same_name()
328 if (ctx->casefold) in hash_cmp()
1024 name_cmp_ctx.casefold = 1; in e2fsck_rehash_dir()
/external/angle/scripts/
Dregistry_xml.py294 unidiff = difflib.unified_diff(l, sorted(l, key=str.casefold), 'unsorted', 'sorted')
/external/python/cpython3/Doc/howto/
Dunicode.rst413 :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

123