Home
last modified time | relevance | path

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

12

/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))
Dfilecmp.py132 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))
Dmacpath.py29 def normcase(path): function
Dshutil.py63 return (os.path.normcase(os.path.abspath(src)) ==
64 os.path.normcase(os.path.abspath(dst)))
/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)))
Dcheckappend.py74 or os.path.normcase(name[-3:]) == ".py"):
Dbyext.py51 ext = os.path.normcase(ext)
/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/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/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/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/python/cpython2/Lib/test/
Dtest_filecmp.py49 self.caseinsensitive = os.path.normcase('A') == os.path.normcase('a')
Dtest_genericpath.py177 p = self.pathmodule.normcase(p)
178 self.assertEqual(p, self.pathmodule.normcase(p))
Dtest_site.py69 if original_dir == os.path.normcase(original_dir):
72 self.assertEqual(os.path.normcase(abs_dir), norm_dir)
/external/python/cpython2/Doc/library/
Dmacpath.rst13 The following functions are available in this module: :func:`normcase`,
/external/swiftshader/third_party/LLVM/utils/lit/lit/
DTestFormats.py12 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/
Dbcppcompiler.py238 (base, ext) = os.path.splitext(os.path.normcase(file))
342 (base, ext) = os.path.splitext (os.path.normcase(src_name))
Demxccompiler.py190 (base, ext) = os.path.splitext (os.path.normcase(src_name))
/external/python/cpython2/Lib/distutils/command/
Dinstall.py593 sys_path = map(os.path.normcase, sys_path)
594 install_lib = os.path.normcase(os.path.normpath(self.install_lib))
Dinstall_lib.py168 ext = os.path.splitext(os.path.normcase(py_file))[1]
/external/skia/infra/bots/
Dutils.py141 file_path = os.path.normcase(file_path)

12