Searched defs:path (Results 251 - 275 of 1823) sorted by relevance

<<11121314151617181920>>

/external/mesa3d/scons/
H A Dllvm.py31 import os.path namespace
49 if not os.path.isdir(llvm_dir):
57 llvm_bin_dir = os.path.join(llvm_dir, llvm_subdir, 'bin')
58 if not os.path.isdir(llvm_bin_dir):
59 llvm_bin_dir = os.path.join(llvm_dir, 'bin')
60 if not os.path.isdir(llvm_bin_dir):
72 llvm_config = os.path.join(llvm_dir, 'include/llvm/Config/config.h')
73 if not os.path.exists(llvm_config):
88 env.Prepend(CPPPATH = [os.path.join(llvm_dir, 'include')])
94 env.Prepend(LIBPATH = [os.path
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_tile_soa.py41 import os.path namespace
43 sys.path.insert(0, os.path.join(os.path.dirname(sys.argv[0]), '../../auxiliary/util'))
/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...]
H A DUnixFakeFileSystem.java25 * <li>Forward slashes (/) are the only valid path separators</li>
54 * Return true if the specified path designates a valid (absolute) file path. For Unix,
55 * a path is valid if it starts with the '/' character, followed by zero or more names
56 * (a sequence of any characters except '/'), delimited by '/'. The path may optionally
59 * @param path - the path
60 * @return true if path is valid, false otherwise
61 * @throws AssertionError - if path is null
63 protected boolean isValidName(String path) { argument
[all...]
H A DWindowsFakeFileSystem.java25 * <li>Either forward slashes (/) or backward slashes (\) are valid path separators (but are normalized to '\')</li>
26 * <li>An absolute path starts with a drive specifier (e.g. 'a:' or 'c:') followed
58 * @param path - the path
61 protected String getFileSystemEntryKey(String path) { argument
62 return normalize(path).toLowerCase();
70 * Return true if the specified path designates a valid (absolute) file path. For Windows
71 * paths, a path is valid if it starts with a drive specifier followed by
74 * @param path
78 isValidName(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...]
H A DUnixFakeFileSystem.java25 * <li>Forward slashes (/) are the only valid path separators</li>
54 * Return true if the specified path designates a valid (absolute) file path. For Unix,
55 * a path is valid if it starts with the '/' character, followed by an optional sequence of
58 * @param path - the path
59 * @return true if path is valid, false otherwise
60 * @throws AssertionError - if path is null
62 protected boolean isValidName(String path) { argument
63 Assert.notNull(path, "pat
[all...]
H A DWindowsFakeFileSystem.java25 * <li>Either forward slashes (/) or backward slashes (\) are valid path separators (but are normalized to '\')</li>
26 * <li>An absolute path starts with a drive specifier (e.g. 'a:' or 'c:') followed
58 * @param path - the path
61 protected String getFileSystemEntryKey(String path) { argument
62 return normalize(path).toLowerCase();
70 * Return true if the specified path designates a valid (absolute) file path. For Windows
71 * paths, a path is valid if it starts with a drive specifier followed by
74 * @param path
78 isValidName(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...]
H A DUnixFakeFileSystem.java25 * <li>Forward slashes (/) are the only valid path separators</li>
54 * Return true if the specified path designates a valid (absolute) file path. For Unix,
55 * a path is valid if it starts with the '/' character, followed by an optional sequence of
58 * @param path - the path
59 * @return true if path is valid, false otherwise
60 * @throws AssertionError - if path is null
62 protected boolean isValidName(String path) { argument
63 Assert.notNull(path, "pat
[all...]
H A DWindowsFakeFileSystem.java25 * <li>Either forward slashes (/) or backward slashes (\) are valid path separators (but are normalized to '\')</li>
26 * <li>An absolute path starts with a drive specifier (e.g. 'a:' or 'c:') followed
58 * @param path - the path
61 protected String getFileSystemEntryKey(String path) { argument
62 return normalize(path).toLowerCase();
70 * Return true if the specified path designates a valid (absolute) file path. For Windows
71 * paths, a path is valid if it starts with a drive specifier followed by
74 * @param path
78 isValidName(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...]
H A DUnixFakeFileSystem.java25 * <li>Forward slashes (/) are the only valid path separators</li>
54 * Return true if the specified path designates a valid (absolute) file path. For Unix,
55 * a path is valid if it starts with the '/' character, followed by an optional sequence of
58 * @param path - the path
59 * @return true if path is valid, false otherwise
60 * @throws AssertionError - if path is null
62 protected boolean isValidName(String path) { argument
63 Assert.notNull(path, "pat
[all...]
H A DWindowsFakeFileSystem.java25 * <li>Either forward slashes (/) or backward slashes (\) are valid path separators (but are normalized to '\')</li>
26 * <li>An absolute path starts with a drive specifier (e.g. 'a:' or 'c:') followed
58 * @param path - the path
61 protected String getFileSystemEntryKey(String path) { argument
62 return normalize(path).toLowerCase();
70 * Return true if the specified path designates a valid (absolute) file path. For Windows
71 * paths, a path is valid if it starts with a drive specifier followed by
74 * @param path
78 isValidName(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...]
H A DUnixFakeFileSystem.java25 * <li>Forward slashes (/) are the only valid path separators</li>
54 * Return true if the specified path designates a valid (absolute) file path. For Unix,
55 * a path is valid if it starts with the '/' character, followed by an optional sequence of
58 * @param path - the path
59 * @return true if path is valid, false otherwise
60 * @throws AssertionError - if path is null
62 protected boolean isValidName(String path) { argument
63 Assert.notNull(path, "pat
[all...]
H A DWindowsFakeFileSystem.java25 * <li>Either forward slashes (/) or backward slashes (\) are valid path separators (but are normalized to '\')</li>
26 * <li>An absolute path starts with a drive specifier (e.g. 'a:' or 'c:') followed
58 * @param path - the path
61 protected String getFileSystemEntryKey(String path) { argument
62 return normalize(path).toLowerCase();
70 * Return true if the specified path designates a valid (absolute) file path. For Windows
71 * paths, a path is valid if it starts with a drive specifier followed by
74 * @param path
78 isValidName(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...]
H A DUnixFakeFileSystem.java25 * <li>Forward slashes (/) are the only valid path separators</li>
54 * Return true if the specified path designates a valid (absolute) file path. For Unix,
55 * a path is valid if it starts with the '/' character, followed by an optional sequence of
58 * @param path - the path
59 * @return true if path is valid, false otherwise
60 * @throws AssertionError - if path is null
62 protected boolean isValidName(String path) { argument
63 Assert.notNull(path, "pat
[all...]
H A DWindowsFakeFileSystem.java25 * <li>Either forward slashes (/) or backward slashes (\) are valid path separators (but are normalized to '\')</li>
26 * <li>An absolute path starts with a drive specifier (e.g. 'a:' or 'c:') followed
58 * @param path - the path
61 protected String getFileSystemEntryKey(String path) { argument
62 return normalize(path).toLowerCase();
70 * Return true if the specified path designates a valid (absolute) file path. For Windows
71 * paths, a path is valid if it starts with a drive specifier followed by
74 * @param path
78 isValidName(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...]
H A DUnixFakeFileSystem.java25 * <li>Forward slashes (/) are the only valid path separators</li>
54 * Return true if the specified path designates a valid (absolute) file path. For Unix,
55 * a path is valid if it starts with the '/' character, followed by an optional sequence of
58 * @param path - the path
59 * @return true if path is valid, false otherwise
60 * @throws AssertionError - if path is null
62 protected boolean isValidName(String path) { argument
63 Assert.notNull(path, "pat
[all...]
H A DWindowsFakeFileSystem.java25 * <li>Either forward slashes (/) or backward slashes (\) are valid path separators (but are normalized to '\')</li>
26 * <li>An absolute path starts with a drive specifier (e.g. 'a:' or 'c:') followed
58 * @param path - the path
61 protected String getFileSystemEntryKey(String path) { argument
62 return normalize(path).toLowerCase();
70 * Return true if the specified path designates a valid (absolute) file path. For Windows
71 * paths, a path is valid if it starts with a drive specifier followed by
74 * @param path
78 isValidName(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...]
H A DUnixFakeFileSystem.java25 * <li>Forward slashes (/) are the only valid path separators</li>
54 * Return true if the specified path designates a valid (absolute) file path. For Unix,
55 * a path is valid if it starts with the '/' character, followed by zero or more names
56 * (a sequence of any characters except '/'), delimited by '/'. The path may optionally
59 * @param path - the path
60 * @return true if path is valid, false otherwise
61 * @throws AssertionError - if path is null
63 protected boolean isValidName(String path) { argument
[all...]

Completed in 7202 milliseconds

<<11121314151617181920>>