Home
last modified time | relevance | path

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

12345

/external/python/cpython3/Lib/test/
Dtest_fnmatch.py72 ignorecase = os.path.normcase('ABC') == os.path.normcase('abc')
80 normsep = os.path.normcase('\\') == os.path.normcase('/')
125 ignorecase = os.path.normcase('P') == os.path.normcase('p')
132 normsep = os.path.normcase('\\') == os.path.normcase('/')
Dtest_genericpath.py329 normcase = self.pathmodule.normcase
332 p = normcase(p)
333 self.assertEqual(p, normcase(p))
335 self.assertEqual(normcase(''), '')
336 self.assertEqual(normcase(b''), b'')
340 self.assertRaises(TypeError, normcase, path)
/external/python/cpython2/Lib/test/
Dtest_fnmatch.py96 ignorecase = os.path.normcase('ABC') == os.path.normcase('abc')
104 normsep = os.path.normcase('\\') == os.path.normcase('/')
146 ignorecase = os.path.normcase('P') == os.path.normcase('p')
153 normsep = os.path.normcase('\\') == os.path.normcase('/')
Dtest_filecmp.py49 self.caseinsensitive = os.path.normcase('A') == os.path.normcase('a')
/external/python/cpython3/PC/layout/support/
Dfilesets.py16 for p in map(os.path.normcase, patterns):
25 return os.path.normcase(f.stem)
38 return os.path.normcase(f.name)
46 for p in map(os.path.normcase, patterns):
59 return os.path.normcase(f.suffix)
/external/python/cpython2/Lib/
Dfnmatch.py41 name = os.path.normcase(name)
42 pat = os.path.normcase(pat)
49 pat=os.path.normcase(pat)
65 if match(os.path.normcase(name)):
Dos2emxpath.py36 def normcase(s): function
75 normp = normcase(p)
Dtempfile.py122 self.normcase = _os.path.normcase
146 return self.normcase(''.join(letters))
191 dir = _os.path.normcase(_os.path.abspath(dir))
/external/python/cpython3/Lib/
Dfnmatch.py34 name = os.path.normcase(name)
35 pat = os.path.normcase(pat)
51 pat = os.path.normcase(pat)
60 if match(os.path.normcase(name)):
Dntpath.py44 def normcase(s): function
560 if normcase(start_drive) != normcase(path_drive):
569 if normcase(e1) != normcase(e2):
658 return normcase(abspath(f))
/external/python/cpython2/Tools/scripts/
Dfinddiv.py79 if os.path.normcase(fn).endswith(".py") or os.path.isdir(fn):
81 files.sort(lambda a, b: cmp(os.path.normcase(a), os.path.normcase(b)))
/external/python/cpython2/Lib/hotshot/
Dlog.py78 filename = os.path.normcase(os.path.normpath(filename))
119 filename = os.path.normcase(os.path.normpath(tdelta))
168 absname = os.path.normcase(os.path.join(self.cwd, filename))
/external/python/cpython3/Lib/idlelib/
Dbrowser.py163 if os.path.normcase(self.file[-3:]) != ".py":
171 return os.path.normcase(self.file[-3:]) == ".py"
177 if os.path.normcase(ext) != ".py":
Dpathbrowser.py63 nn = os.path.normcase(name)
91 normed_name = os.path.normcase(name)
Dfilelist.py28 key = os.path.normcase(filename)
85 newkey = os.path.normcase(filename)
/external/python/cpython3/Tools/scripts/
Dfinddiv.py79 if os.path.normcase(fn).endswith(".py") or os.path.isdir(fn):
81 files.sort(key=os.path.normcase)
/external/python/cpython2/Lib/idlelib/
DFileList.py27 key = os.path.normcase(filename)
79 newkey = os.path.normcase(filename)
DPathBrowser.py60 nn = os.path.normcase(name)
85 normed_name = os.path.normcase(name)
DClassBrowser.py94 if os.path.normcase(self.file[-3:]) != ".py":
101 return os.path.normcase(self.file[-3:]) == ".py"
106 if os.path.normcase(ext) != ".py":
/external/python/cpython3/Lib/multiprocessing/
Dpopen_spawn_win32.py23 return p1 == p2 or os.path.normcase(p1) == os.path.normcase(p2)
/external/clang/utils/check_cfc/
Dcheck_cfc.py97 norm_directory = os.path.normpath(os.path.normcase(directory))
99 os.path.normcase(x)) != norm_directory, pathlist)
193 testarg = os.path.normcase(testarg)
/external/llvm/utils/lit/lit/formats/
Dgoogletest.py14 self.test_sub_dir = os.path.normcase(str(test_sub_dir)).split(';')
88 if not os.path.normcase(filename) in self.test_sub_dir:
/external/python/cpython2/Doc/library/
Dfnmatch.rst48 using :func:`os.path.normcase`. :func:`fnmatchcase` can be used to perform a
67 :func:`os.path.normcase`.
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/tests/Inputs/config-map-discovery/
Ddriver.py7 main_config = os.path.normcase(main_config)
/external/swiftshader/third_party/llvm-7.0/llvm/utils/llvm-lit/
Dllvm-lit.in11 source_dir = os.path.normcase(source_dir)

12345