Searched refs:path (Results 1 - 25 of 8394) sorted by relevance

1234567891011>>

/external/libyuv/files/
H A Dgyp_libyuv.py27 path = os.path.abspath(os.path.split(__file__)[0]) variable
28 execfile(os.path.join(path, 'gyp_libyuv'))
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/groovy/org/mockftpserver/fake/filesystem/
H A DExistingFileOperationException.groovy25 * <li>The specified path is expected to be a file, but actually specifies an existing directory, or vice versa</li>
30 String path
33 * @param path
35 ExistingFileOperationException(String path) {
36 super(msg(path))
37 this.path = path
41 * @param path
44 ExistingFileOperationException(Throwable cause, String path) {
45 super(msg(path), caus
[all...]
H A DInvalidFilenameException.groovy19 * Exception thrown when a path/filename is not valid. Causes include:
22 * <li>The path specifies a new filename, but its parent directory does not exist</li>
23 * <li>The path is expected to be a file, but actually specifies an existing directory</li>
28 String path
31 * @param path
33 InvalidFilenameException(String path) {
34 super(msg(path))
35 this.path = path
39 * @param path
[all...]
H A DNewFileOperationException.groovy25 * <li>The specified path is expected to be a file, but actually specifies an existing directory, or vice versa</li>
30 String path
33 * @param path
35 NewFileOperationException(String path) {
36 super(msg(path))
37 this.path = path
41 * @param path
44 NewFileOperationException(Throwable cause, String path) {
45 super(msg(path), caus
[all...]
/external/v8/gypfiles/
H A Dgyp_v8.py40 path = os.path.abspath(os.path.split(__file__)[0]) variable
41 execfile(os.path.join(path, 'gyp_v8'))
/external/webrtc/webrtc/build/
H A Dgyp_webrtc.py23 path = os.path.abspath(os.path.split(__file__)[0]) variable
24 execfile(os.path.join(path, 'gyp_webrtc'))
/external/chromium-trace/catapult/devil/devil/utils/
H A D__init__.py9 return os.path.abspath(os.path.join(*path_parts))
13 path = _JoinPath(*path_parts)
14 if os.path.isdir(path) and path not in sys.path:
15 # Some call sites that use Telemetry assume that sys.path[0] is the
17 # after sys.path[0].
18 sys.path
[all...]
/external/libmojo/third_party/catapult/devil/devil/utils/
H A D__init__.py9 return os.path.abspath(os.path.join(*path_parts))
13 path = _JoinPath(*path_parts)
14 if os.path.isdir(path) and path not in sys.path:
15 # Some call sites that use Telemetry assume that sys.path[0] is the
17 # after sys.path[0].
18 sys.path
[all...]
H A Dhost_utils.py8 def GetRecursiveDiskUsage(path):
9 """Returns the disk usage in bytes of |path|. Similar to `du -sb |path|`."""
10 running_size = os.path.getsize(path)
11 if os.path.isdir(path):
12 for root, dirs, files in os.walk(path):
13 running_size += sum([os.path.getsize(os.path
[all...]
/external/autotest/client/cros/networking/
H A Dapmanager_helper.py5 import os.path namespace
9 return os.path.exists('/usr/bin/apmanager')
/external/icu/icu4c/source/tools/gentest/
H A Dgentest.h14 U_CFUNC int genres32(const char *prog, const char *path);
/external/syslinux/gpxe/src/include/
H A Dlibgen.h6 extern char * basename ( char *path );
7 extern char * dirname ( char *path );
/external/v8/tools/clang/pylib/clang/
H A Dcompile_db.py11 def GenerateWithNinja(path):
15 path: The build directory to generate a compile database for.
19 print 'Generating compile database in %s...' % path
20 args = ['ninja', '-C', path, '-t', 'compdb', 'cc', 'cxx', 'objc', 'objcxx']
22 with file(os.path.join(path, 'compile_commands.json'), 'w') as f:
26 def Read(path):
30 path: Directory that contains the compile database.
32 with open(os.path.join(path, 'compile_command
[all...]
/external/curl/tests/
H A Dpathhelp.pm23 # This Perl package helps with path transforming when running curl tests on
28 # (1) /some/path - absolute path in Unix-style
29 # (2) D:/some/path - absolute path in Win32-style
30 # (3) some/path - relative path
31 # (4) D:some/path - path relative to current directory on Win32 drive (paths
33 # (5) \some/path
[all...]
/external/tensorflow/tensorflow/python/util/
H A Dcompat_internal.py24 def path_to_str(path):
25 """Returns the file system path representation of a `PathLike` object,
29 path: An object that can be converted to path representation.
34 if hasattr(path, "__fspath__"):
35 path = as_str_any(path.__fspath__())
36 return path
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystemException.java29 * The path involved in the file system operation that caused the exception
31 private String path; field in class:FileSystemException
39 * Construct a new instance for the specified path and message key
41 * @param path - the path involved in the file system operation that caused the exception
44 public FileSystemException(String path, String messageKey) { argument
45 super(path);
46 this.path = path;
51 * @param path
55 FileSystemException(String path, String messageKey, Throwable cause) argument
65 setPath(String path) argument
[all...]
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystemException.java29 * The path involved in the file system operation that caused the exception
31 private String path; field in class:FileSystemException
39 * Construct a new instance for the specified path and message key
41 * @param path - the path involved in the file system operation that caused the exception
44 public FileSystemException(String path, String messageKey) { argument
45 super(path);
46 this.path = path;
51 * @param path
55 FileSystemException(String path, String messageKey, Throwable cause) argument
65 setPath(String path) argument
[all...]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystemException.java29 * The path involved in the file system operation that caused the exception
31 private String path; field in class:FileSystemException
39 * Construct a new instance for the specified path and message key
41 * @param path - the path involved in the file system operation that caused the exception
44 public FileSystemException(String path, String messageKey) { argument
45 super(path);
46 this.path = path;
51 * @param path
55 FileSystemException(String path, String messageKey, Throwable cause) argument
65 setPath(String path) argument
[all...]
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystemException.java29 * The path involved in the file system operation that caused the exception
31 private String path; field in class:FileSystemException
39 * Construct a new instance for the specified path and message key
41 * @param path - the path involved in the file system operation that caused the exception
44 public FileSystemException(String path, String messageKey) { argument
45 super(path);
46 this.path = path;
51 * @param path
55 FileSystemException(String path, String messageKey, Throwable cause) argument
65 setPath(String path) argument
[all...]
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystemException.java29 * The path involved in the file system operation that caused the exception
31 private String path; field in class:FileSystemException
39 * Construct a new instance for the specified path and message key
41 * @param path - the path involved in the file system operation that caused the exception
44 public FileSystemException(String path, String messageKey) { argument
45 super(path);
46 this.path = path;
51 * @param path
55 FileSystemException(String path, String messageKey, Throwable cause) argument
65 setPath(String path) argument
[all...]
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystemException.java29 * The path involved in the file system operation that caused the exception
31 private String path; field in class:FileSystemException
39 * Construct a new instance for the specified path and message key
41 * @param path - the path involved in the file system operation that caused the exception
44 public FileSystemException(String path, String messageKey) { argument
45 super(path);
46 this.path = path;
51 * @param path
55 FileSystemException(String path, String messageKey, Throwable cause) argument
65 setPath(String path) argument
[all...]
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystemException.java29 * The path involved in the file system operation that caused the exception
31 private String path; field in class:FileSystemException
39 * Construct a new instance for the specified path and message key
41 * @param path - the path involved in the file system operation that caused the exception
44 public FileSystemException(String path, String messageKey) { argument
45 super(path);
46 this.path = path;
51 * @param path
55 FileSystemException(String path, String messageKey, Throwable cause) argument
65 setPath(String path) argument
[all...]
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystemException.java29 * The path involved in the file system operation that caused the exception
31 private String path; field in class:FileSystemException
39 * Construct a new instance for the specified path and message key
41 * @param path - the path involved in the file system operation that caused the exception
44 public FileSystemException(String path, String messageKey) { argument
45 super(path);
46 this.path = path;
51 * @param path
55 FileSystemException(String path, String messageKey, Throwable cause) argument
65 setPath(String path) argument
[all...]
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystemException.java29 * The path involved in the file system operation that caused the exception
31 private String path; field in class:FileSystemException
39 * Construct a new instance for the specified path and message key
41 * @param path - the path involved in the file system operation that caused the exception
44 public FileSystemException(String path, String messageKey) { argument
45 super(path);
46 this.path = path;
51 * @param path
55 FileSystemException(String path, String messageKey, Throwable cause) argument
65 setPath(String path) argument
[all...]
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystemException.java29 * The path involved in the file system operation that caused the exception
31 private String path; field in class:FileSystemException
39 * Construct a new instance for the specified path and message key
41 * @param path - the path involved in the file system operation that caused the exception
44 public FileSystemException(String path, String messageKey) { argument
45 super(path);
46 this.path = path;
51 * @param path
55 FileSystemException(String path, String messageKey, Throwable cause) argument
65 setPath(String path) argument
[all...]

Completed in 3605 milliseconds

1234567891011>>