HomeSort by relevance Sort by last modified time
    Searched refs:normcase (Results 1 - 25 of 65) sorted by null

1 2 3

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fnmatch.py 41 name = os.path.normcase(name)
42 pat = os.path.normcase(pat)
49 pat=os.path.normcase(pat)
57 # normcase on posix is NOP. Optimize it away from the loop.
63 if match(os.path.normcase(name)):
os2emxpath.py 14 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
35 def normcase(s): function
74 normp = normcase(p)
macpath.py 9 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
28 def normcase(path): function
tempfile.py 122 self.normcase = _os.path.normcase
146 return self.normcase(''.join(letters))
191 dir = _os.path.normcase(_os.path.abspath(dir))
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))
ntpath.py 16 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
42 def normcase(s): function
147 normp = normcase(p)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fnmatch.py 41 name = os.path.normcase(name)
42 pat = os.path.normcase(pat)
49 pat=os.path.normcase(pat)
57 # normcase on posix is NOP. Optimize it away from the loop.
63 if match(os.path.normcase(name)):
os2emxpath.py 14 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
35 def normcase(s): function
74 normp = normcase(p)
macpath.py 9 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
28 def normcase(path): function
tempfile.py 122 self.normcase = _os.path.normcase
146 return self.normcase(''.join(letters))
191 dir = _os.path.normcase(_os.path.abspath(dir))
  /external/llvm/utils/lit/lit/formats/
googletest.py 14 self.test_sub_dir = os.path.normcase(str(test_sub_dir)).split(';')
78 if not os.path.normcase(filename) in self.test_sub_dir:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
FileList.py 27 key = os.path.normcase(filename)
79 newkey = os.path.normcase(filename)
PathBrowser.py 53 nn = os.path.normcase(name)
78 normed_name = os.path.normcase(name)
ClassBrowser.py 81 if os.path.normcase(self.file[-3:]) != ".py":
88 return os.path.normcase(self.file[-3:]) == ".py"
93 if os.path.normcase(ext) != ".py":
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
FileList.py 27 key = os.path.normcase(filename)
79 newkey = os.path.normcase(filename)
PathBrowser.py 53 nn = os.path.normcase(name)
78 normed_name = os.path.normcase(name)
ClassBrowser.py 81 if os.path.normcase(self.file[-3:]) != ".py":
88 return os.path.normcase(self.file[-3:]) == ".py"
93 if os.path.normcase(ext) != ".py":
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/
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))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/
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))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_filecmp.py 49 self.caseinsensitive = os.path.normcase('A') == os.path.normcase('a')
test_genericpath.py 169 'normcase', 'splitdrive', 'expandvars', 'normpath', 'abspath',
175 # Check that normcase() is idempotent
177 p = self.pathmodule.normcase(p)
178 self.assertEqual(p, self.pathmodule.normcase(p))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_filecmp.py 49 self.caseinsensitive = os.path.normcase('A') == os.path.normcase('a')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
install_lib.py 168 ext = os.path.splitext(os.path.normcase(py_file))[1]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
install_lib.py 168 ext = os.path.splitext(os.path.normcase(py_file))[1]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
bcppcompiler.py 238 (base, ext) = os.path.splitext(os.path.normcase(file))
341 # use normcase to make sure '.rc' is really '.rc' and not '.RC'
342 (base, ext) = os.path.splitext (os.path.normcase(src_name))

Completed in 831 milliseconds

1 2 3