Searched defs:dirname (Results 1 - 25 of 26) sorted by relevance

12

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
H A Dfix_import.py15 from os.path import dirname, join, exists, sep namespace
90 base_path = dirname(self.filename)
94 if not exists(join(dirname(base_path), "__init__.py")):
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
H A Dfix_import.py15 from os.path import dirname, join, exists, sep namespace
90 base_path = dirname(self.filename)
94 if not exists(join(dirname(base_path), "__init__.py")):
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
H A Dfile_util.py115 dir = os.path.dirname(dst)
172 from os.path import exists, isfile, isdir, basename, dirname namespace
191 if not isdir(dirname(dst)):
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
H A Dfile_util.py115 dir = os.path.dirname(dst)
172 from os.path import exists, isfile, isdir, basename, dirname namespace
191 if not isdir(dirname(dst)):
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/
H A Dtest_email_torture.py23 from os.path import join, dirname, abspath namespace
24 path = abspath(join(dirname(testfile), os.pardir, 'moredata', filename))
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dos2emxpath.py15 "basename","dirname","commonprefix","getsize","getmtime",
93 # Return the head (dirname) part of a path.
95 def dirname(p): function
H A Dmacpath.py10 "basename","dirname","commonprefix","getsize","getmtime",
89 def dirname(s): return split(s)[0] function
163 itself, but excluding '.' and '..'), call func(arg, dirname, fnames).
164 dirname is the name of the directory, and fnames a list of the names of
165 the files and subdirectories in dirname (excluding '.' and '..'). func
H A Dntpath.py17 "basename","dirname","commonprefix","getsize","getmtime",
201 # Return the head (dirname) part of a path.
203 def dirname(p): function
233 # '.' and '..'), func(arg, dirname, filenames) is called, where
234 # dirname is the name of the directory and filenames is the list
243 itself, but excluding '.' and '..'), call func(arg, dirname, fnames).
244 dirname is the name of the directory, and fnames a list of the names of
245 the files and subdirectories in dirname (excluding '.' and '..'). func
299 userhome = join(dirname(userhome), path[1:i])
H A Dposixpath.py29 "basename","dirname","commonprefix","getsize","getmtime",
125 # Return the head (dirname) part of a path, same as split(path)[0].
127 def dirname(p): function
212 # '.' and '..'), func(arg, dirname, filenames) is called, where
213 # dirname is the name of the directory and filenames is the list
222 itself, but excluding '.' and '..'), call func(arg, dirname, fnames).
223 dirname is the name of the directory, and fnames a list of the names of
224 the files and subdirectories in dirname (excluding '.' and '..'). func
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/
H A Dtest_email_torture.py23 from os.path import join, dirname, abspath namespace
24 path = abspath(join(dirname(testfile), os.pardir, 'moredata', filename))
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dos2emxpath.py15 "basename","dirname","commonprefix","getsize","getmtime",
93 # Return the head (dirname) part of a path.
95 def dirname(p): function
H A Dmacpath.py10 "basename","dirname","commonprefix","getsize","getmtime",
89 def dirname(s): return split(s)[0] function
163 itself, but excluding '.' and '..'), call func(arg, dirname, fnames).
164 dirname is the name of the directory, and fnames a list of the names of
165 the files and subdirectories in dirname (excluding '.' and '..'). func
H A Dntpath.py17 "basename","dirname","commonprefix","getsize","getmtime",
201 # Return the head (dirname) part of a path.
203 def dirname(p): function
233 # '.' and '..'), func(arg, dirname, filenames) is called, where
234 # dirname is the name of the directory and filenames is the list
243 itself, but excluding '.' and '..'), call func(arg, dirname, fnames).
244 dirname is the name of the directory, and fnames a list of the names of
245 the files and subdirectories in dirname (excluding '.' and '..'). func
299 userhome = join(dirname(userhome), path[1:i])
H A Dposixpath.py29 "basename","dirname","commonprefix","getsize","getmtime",
125 # Return the head (dirname) part of a path, same as split(path)[0].
127 def dirname(p): function
212 # '.' and '..'), func(arg, dirname, filenames) is called, where
213 # dirname is the name of the directory and filenames is the list
222 itself, but excluding '.' and '..'), call func(arg, dirname, fnames).
223 dirname is the name of the directory, and fnames a list of the names of
224 the files and subdirectories in dirname (excluding '.' and '..'). func
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
H A DIOBinding.py186 dirname = None variable in class:IOBinding
191 self.dirname = filename
194 self.dirname = None
547 elif self.dirname:
548 return self.dirname, ""
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_posixpath.py5 from posixpath import realpath, abspath, dirname, basename namespace
22 def safe_rmdir(dirname):
24 os.rmdir(dirname)
87 self.assertEqual(posixpath.dirname("/foo/bar"), "/foo")
88 self.assertEqual(posixpath.dirname("/"), "/")
89 self.assertEqual(posixpath.dirname("foo"), "")
90 self.assertEqual(posixpath.dirname("////foo"), "////")
91 self.assertEqual(posixpath.dirname("//foo//bar"), "//foo")
235 self.assertEqual(realpath('..'), dirname(os.getcwd()))
236 self.assertEqual(realpath('../..'), dirname(dirnam
[all...]
H A Dtest_parser.py196 self.check_suite("from sys.path import dirname") namespace
197 self.check_suite("from sys.path import (dirname)") namespace
198 self.check_suite("from sys.path import (dirname,)") namespace
199 self.check_suite("from sys.path import dirname as my_dirname")
200 self.check_suite("from sys.path import (dirname as my_dirname)")
201 self.check_suite("from sys.path import (dirname as my_dirname,)")
202 self.check_suite("from sys.path import dirname, basename") namespace
203 self.check_suite("from sys.path import (dirname, basename)") namespace
204 self.check_suite("from sys.path import (dirname, basename,)") namespace
206 "from sys.path import dirname a
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
H A DIOBinding.py186 dirname = None variable in class:IOBinding
191 self.dirname = filename
194 self.dirname = None
547 elif self.dirname:
548 return self.dirname, ""
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_posixpath.py5 from posixpath import realpath, abspath, dirname, basename namespace
22 def safe_rmdir(dirname):
24 os.rmdir(dirname)
87 self.assertEqual(posixpath.dirname("/foo/bar"), "/foo")
88 self.assertEqual(posixpath.dirname("/"), "/")
89 self.assertEqual(posixpath.dirname("foo"), "")
90 self.assertEqual(posixpath.dirname("////foo"), "////")
91 self.assertEqual(posixpath.dirname("//foo//bar"), "//foo")
235 self.assertEqual(realpath('..'), dirname(os.getcwd()))
236 self.assertEqual(realpath('../..'), dirname(dirnam
[all...]
H A Dtest_parser.py196 self.check_suite("from sys.path import dirname") namespace
197 self.check_suite("from sys.path import (dirname)") namespace
198 self.check_suite("from sys.path import (dirname,)") namespace
199 self.check_suite("from sys.path import dirname as my_dirname")
200 self.check_suite("from sys.path import (dirname as my_dirname)")
201 self.check_suite("from sys.path import (dirname as my_dirname,)")
202 self.check_suite("from sys.path import dirname, basename") namespace
203 self.check_suite("from sys.path import (dirname, basename)") namespace
204 self.check_suite("from sys.path import (dirname, basename,)") namespace
206 "from sys.path import dirname a
[all...]
/prebuilts/tools/common/ant/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/prebuilts/tools/common/m2/internal/org/apache/ant/ant/1.8.0/
H A Dant-1.8.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
H A Djython-2.5.3.jarMETA-INF/MANIFEST.MF META-INF/services/javax.script.ScriptEngineFactory com/xhaus/modjy/ModjyJServlet ...
/prebuilts/misc/common/jython/
H A Djython.jarMETA-INF/MANIFEST.MF com/xhaus/modjy/ModjyJServlet.class ModjyJServlet.java package com.xhaus ...
/prebuilts/devtools/tools/lib/
H A Djython-standalone-2.5.3.jarMETA-INF/MANIFEST.MF META-INF/LICENSE META-INF/NOTICE META-INF/maven/jline/ ...

Completed in 300 milliseconds

12