Searched refs:normcase (Results 1 – 25 of 105) sorted by relevance
12345
/external/python/cpython3/Lib/test/ |
D | test_fnmatch.py | 72 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('/')
|
D | test_genericpath.py | 329 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/ |
D | test_fnmatch.py | 96 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('/')
|
D | test_filecmp.py | 49 self.caseinsensitive = os.path.normcase('A') == os.path.normcase('a')
|
/external/python/cpython3/PC/layout/support/ |
D | filesets.py | 16 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/ |
D | fnmatch.py | 41 name = os.path.normcase(name) 42 pat = os.path.normcase(pat) 49 pat=os.path.normcase(pat) 65 if match(os.path.normcase(name)):
|
D | os2emxpath.py | 36 def normcase(s): function 75 normp = normcase(p)
|
D | tempfile.py | 122 self.normcase = _os.path.normcase 146 return self.normcase(''.join(letters)) 191 dir = _os.path.normcase(_os.path.abspath(dir))
|
/external/python/cpython3/Lib/ |
D | fnmatch.py | 34 name = os.path.normcase(name) 35 pat = os.path.normcase(pat) 51 pat = os.path.normcase(pat) 60 if match(os.path.normcase(name)):
|
D | ntpath.py | 44 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/ |
D | finddiv.py | 79 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/ |
D | log.py | 78 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/ |
D | browser.py | 163 if os.path.normcase(self.file[-3:]) != ".py": 171 return os.path.normcase(self.file[-3:]) == ".py" 177 if os.path.normcase(ext) != ".py":
|
D | pathbrowser.py | 63 nn = os.path.normcase(name) 91 normed_name = os.path.normcase(name)
|
D | filelist.py | 28 key = os.path.normcase(filename) 85 newkey = os.path.normcase(filename)
|
/external/python/cpython3/Tools/scripts/ |
D | finddiv.py | 79 if os.path.normcase(fn).endswith(".py") or os.path.isdir(fn): 81 files.sort(key=os.path.normcase)
|
/external/python/cpython2/Lib/idlelib/ |
D | FileList.py | 27 key = os.path.normcase(filename) 79 newkey = os.path.normcase(filename)
|
D | PathBrowser.py | 60 nn = os.path.normcase(name) 85 normed_name = os.path.normcase(name)
|
D | ClassBrowser.py | 94 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/ |
D | popen_spawn_win32.py | 23 return p1 == p2 or os.path.normcase(p1) == os.path.normcase(p2)
|
/external/clang/utils/check_cfc/ |
D | check_cfc.py | 97 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/ |
D | googletest.py | 14 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/ |
D | fnmatch.rst | 48 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/ |
D | driver.py | 7 main_config = os.path.normcase(main_config)
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/llvm-lit/ |
D | llvm-lit.in | 11 source_dir = os.path.normcase(source_dir)
|
12345