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

12 3

  /prebuilts/python/linux-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))
emxccompiler.py 189 # use normcase to make sure '.rc' is really '.rc' and not '.RC'
190 (base, ext) = os.path.splitext (os.path.normcase(src_name))
cygwinccompiler.py 300 #BOGUS## use normcase to make sure '.rc' is really '.rc' and not '.RC'
301 #BOGUS#base, ext = os.path.splitext(os.path.normcase(src_name))
303 ext_normcase = os.path.normcase(ext)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
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)
shutil.py 63 return (os.path.normcase(os.path.abspath(src)) ==
64 os.path.normcase(os.path.abspath(dst)))
posixpath.py 28 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
51 def normcase(s): function
tabnanny.py 92 os.path.normcase(name[-3:]) == ".py"):
site.py 85 return dir, os.path.normcase(dir)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
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))
test_site.py 64 if original_dir == os.path.normcase(original_dir):
67 self.assertEqual(os.path.normcase(abs_dir), norm_dir)
test_glob.py 97 if os.path.normcase("abCD") == "abCD":
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_site.py 64 if original_dir == os.path.normcase(original_dir):
67 self.assertEqual(os.path.normcase(abs_dir), norm_dir)
test_glob.py 97 if os.path.normcase("abCD") == "abCD":
test_subprocess.py 353 normcase = os.path.normcase
354 self.assertEqual(normcase(p.stdout.read()), normcase(tmpdir))
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
files.py 20 return os.path.normcase(os.path.abspath(os.path.realpath(filename)))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
emxccompiler.py 189 # use normcase to make sure '.rc' is really '.rc' and not '.RC'
190 (base, ext) = os.path.splitext (os.path.normcase(src_name))
cygwinccompiler.py 300 #BOGUS## use normcase to make sure '.rc' is really '.rc' and not '.RC'
301 #BOGUS#base, ext = os.path.splitext(os.path.normcase(src_name))
303 ext_normcase = os.path.normcase(ext)
  /external/chromium_org/native_client_sdk/src/tools/
create_nmf.py 320 if (os.path.normcase(os.path.realpath(source)) ==
321 os.path.normcase(os.path.realpath(destination))):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
install.py 630 sys_path = map(os.path.normcase, sys_path)
631 install_lib = os.path.normcase(os.path.normpath(self.install_lib))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shutil.py 63 return (os.path.normcase(os.path.abspath(src)) ==
64 os.path.normcase(os.path.abspath(dst)))
posixpath.py 28 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
51 def normcase(s): function
tabnanny.py 92 os.path.normcase(name[-3:]) == ".py"):
site.py 85 return dir, os.path.normcase(dir)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
install.py 630 sys_path = map(os.path.normcase, sys_path)
631 install_lib = os.path.normcase(os.path.normpath(self.install_lib))

Completed in 586 milliseconds

12 3