Searched refs:normcase (Results 1 – 25 of 44) sorted by relevance
12
/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))
|
D | filecmp.py | 132 a = dict(izip(imap(os.path.normcase, self.left_list), self.left_list)) 133 b = dict(izip(imap(os.path.normcase, self.right_list), self.right_list))
|
D | macpath.py | 29 def normcase(path): function
|
D | shutil.py | 63 return (os.path.normcase(os.path.abspath(src)) == 64 os.path.normcase(os.path.abspath(dst)))
|
/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)))
|
D | checkappend.py | 74 or os.path.normcase(name[-3:]) == ".py"):
|
D | byext.py | 51 ext = os.path.normcase(ext)
|
/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/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/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/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/python/cpython2/Lib/test/ |
D | test_filecmp.py | 49 self.caseinsensitive = os.path.normcase('A') == os.path.normcase('a')
|
D | test_genericpath.py | 177 p = self.pathmodule.normcase(p) 178 self.assertEqual(p, self.pathmodule.normcase(p))
|
D | test_site.py | 69 if original_dir == os.path.normcase(original_dir): 72 self.assertEqual(os.path.normcase(abs_dir), norm_dir)
|
/external/python/cpython2/Doc/library/ |
D | macpath.rst | 13 The following functions are available in this module: :func:`normcase`,
|
/external/swiftshader/third_party/LLVM/utils/lit/lit/ |
D | TestFormats.py | 12 self.test_sub_dir = os.path.normcase(str(test_sub_dir)).split(';') 63 if not os.path.normcase(filename) in self.test_sub_dir:
|
/external/python/cpython2/Lib/distutils/ |
D | bcppcompiler.py | 238 (base, ext) = os.path.splitext(os.path.normcase(file)) 342 (base, ext) = os.path.splitext (os.path.normcase(src_name))
|
D | emxccompiler.py | 190 (base, ext) = os.path.splitext (os.path.normcase(src_name))
|
/external/python/cpython2/Lib/distutils/command/ |
D | install.py | 593 sys_path = map(os.path.normcase, sys_path) 594 install_lib = os.path.normcase(os.path.normpath(self.install_lib))
|
D | install_lib.py | 168 ext = os.path.splitext(os.path.normcase(py_file))[1]
|
/external/skia/infra/bots/ |
D | utils.py | 141 file_path = os.path.normcase(file_path)
|
12