Searched defs:path (Results 276 - 300 of 1434) sorted by relevance

<<11121314151617181920>>

/external/littlemock/tests/com/google/testing/littlemock/
H A DAppDataDirGuesserTest.java84 private TestCondition guessCacheDirFor(final String path) { argument
99 File[] results = guesser.guessPath(path);
100 assertNotNull("Null results for " + path, results);
101 assertEquals("Bad lengths for " + path, files.length, results.length);
/external/lldb/source/Core/
H A DUserSettingsController.cpp29 const char *path,
35 return properties_sp->GetSubValue(exe_ctx, path, will_modify, error);
42 const char *path,
47 return properties_sp->SetSubValue(exe_ctx, op, path, value);
28 GetPropertyValue(const ExecutionContext *exe_ctx, const char *path, bool will_modify, Error &error) const argument
40 SetPropertyValue(const ExecutionContext *exe_ctx, VarSetOperationType op, const char *path, const char *value) argument
/external/lldb/source/Host/macosx/cfcpp/
H A DCFCBundle.cpp16 CFCBundle::CFCBundle(const char *path) : argument
19 if (path && path[0])
20 SetPath(path);
36 // Set the path for a bundle by supplying a
39 CFCBundle::SetPath (const char *path) argument
45 // Make a CFStringRef from the supplied path
47 cf_path.SetFileSystemRepresentation(path);
/external/mesa3d/
H A Dcommon.py5 import os.path namespace
/external/mesa3d/scons/
H A Dcrossmingw.py36 import os.path namespace
72 # First search in the SCons path and then the OS path:
171 dir = os.path.dirname(env.WhereIs(mingw_prefix + 'gcc') or SCons.Util.WhereIs(mingw_prefix + 'gcc'))
173 # The mingw bin directory must be added to the path:
174 path = env['ENV'].get('PATH', [])
175 if not path:
176 path = []
177 if SCons.Util.is_String(path):
178 path
[all...]
H A Dgallium.py35 import os.path namespace
48 if os.path.islink(target) or os.path.exists(target):
50 os.symlink(os.path.basename(source), target)
53 target_dir = os.path.join(env.Dir('#.').srcnode().abspath, env['build_dir'], subdir)
61 install_dir = os.path.join(env.Dir('#.').srcnode().abspath, env['build_dir'])
70 target_dir = os.path.join(install_dir, 'lib')
72 last = env.InstallAs(os.path.join(target_dir, target_name), source)
78 last = env.Command(os.path.join(target_dir, target_name), last, action)
140 env['gcc'] = 'gcc' in os.path
[all...]
/external/mesa3d/src/gallium/auxiliary/pipe-loader/
H A Dpipe_loader.c77 char path[PATH_MAX]; local
85 ret = util_snprintf(path, sizeof(path), "%.*s/%s%s%s",
89 ret = util_snprintf(path, sizeof(path), "%s%s%s",
92 if (ret > 0 && ret < sizeof(path)) {
93 lib = util_dl_open(path);
95 debug_printf("loaded %s\n", path);
/external/mesa3d/src/gbm/main/
H A Dbackend.c54 char path[PATH_MAX]; local
69 snprintf(path, sizeof path, MODULEDIR "/%s", name);
71 snprintf(path, sizeof path, "%s", name);
73 module = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java38 * Construct a new instance without setting its path
44 * Construct a new instance with the specified value for its path
46 * @param path - the value for path
48 public FileEntry(String path) { argument
49 super(path);
53 * Construct a new instance with the specified path and file contents
55 * @param path - the value for path
58 public FileEntry(String path, Strin argument
146 cloneWithNewPath(String path) argument
[all...]
H A DFileSystemEntry.java37 * Return the path for this file system entry
39 * @return the path for this file system entry
44 * Return the file name or directory name (no path) for this entry
46 * @return the file name or directory name (no path) for this entry
87 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
89 * @param path - the new path value for the cloned file system entry
90 * @return a new FileSystemEntry that has all the same values as this object except for its path
92 public FileSystemEntry cloneWithNewPath(String path); argument
95 * Lock down the path s
[all...]
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java38 * Construct a new instance without setting its path
44 * Construct a new instance with the specified value for its path
46 * @param path - the value for path
48 public FileEntry(String path) { argument
49 super(path);
53 * Construct a new instance with the specified path and file contents
55 * @param path - the value for path
58 public FileEntry(String path, Strin argument
142 cloneWithNewPath(String path) argument
[all...]
H A DFileSystemEntry.java37 * Return the path for this file system entry
39 * @return the path for this file system entry
44 * Return the file name or directory name (no path) for this entry
46 * @return the file name or directory name (no path) for this entry
87 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
89 * @param path - the new path value for the cloned file system entry
90 * @return a new FileSystemEntry that has all the same values as this object except for its path
92 public FileSystemEntry cloneWithNewPath(String path); argument
95 * Lock down the path s
[all...]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java38 * Construct a new instance without setting its path
44 * Construct a new instance with the specified value for its path
46 * @param path - the value for path
48 public FileEntry(String path) { argument
49 super(path);
53 * Construct a new instance with the specified path and file contents
55 * @param path - the value for path
58 public FileEntry(String path, Strin argument
142 cloneWithNewPath(String path) argument
[all...]
H A DFileSystemEntry.java37 * Return the path for this file system entry
39 * @return the path for this file system entry
44 * Return the file name or directory name (no path) for this entry
46 * @return the file name or directory name (no path) for this entry
87 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
89 * @param path - the new path value for the cloned file system entry
90 * @return a new FileSystemEntry that has all the same values as this object except for its path
92 public FileSystemEntry cloneWithNewPath(String path); argument
95 * Lock down the path s
[all...]
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java39 * Construct a new instance without setting its path
45 * Construct a new instance with the specified value for its path
47 * @param path - the value for path
49 public FileEntry(String path) { argument
50 super(path);
54 * Construct a new instance with the specified path and file contents
56 * @param path - the value for path
59 public FileEntry(String path, Strin argument
143 cloneWithNewPath(String path) argument
[all...]
H A DFileSystemEntry.java37 * Return the path for this file system entry
39 * @return the path for this file system entry
44 * Return the file name or directory name (no path) for this entry
46 * @return the file name or directory name (no path) for this entry
87 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
89 * @param path - the new path value for the cloned file system entry
90 * @return a new FileSystemEntry that has all the same values as this object except for its path
92 public FileSystemEntry cloneWithNewPath(String path); argument
95 * Lock down the path s
[all...]
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java38 * Construct a new instance without setting its path
44 * Construct a new instance with the specified value for its path
46 * @param path - the value for path
48 public FileEntry(String path) { argument
49 super(path);
53 * Construct a new instance with the specified path and file contents
55 * @param path - the value for path
58 public FileEntry(String path, Strin argument
142 cloneWithNewPath(String path) argument
[all...]
H A DFileSystemEntry.java37 * Return the path for this file system entry
39 * @return the path for this file system entry
44 * Return the file name or directory name (no path) for this entry
46 * @return the file name or directory name (no path) for this entry
87 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
89 * @param path - the new path value for the cloned file system entry
90 * @return a new FileSystemEntry that has all the same values as this object except for its path
92 public FileSystemEntry cloneWithNewPath(String path); argument
95 * Lock down the path s
[all...]
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java38 * Construct a new instance without setting its path
44 * Construct a new instance with the specified value for its path
46 * @param path - the value for path
48 public FileEntry(String path) { argument
49 super(path);
53 * Construct a new instance with the specified path and file contents
55 * @param path - the value for path
58 public FileEntry(String path, Strin argument
146 cloneWithNewPath(String path) argument
[all...]
H A DFileSystemEntry.java37 * Return the path for this file system entry
39 * @return the path for this file system entry
44 * Return the file name or directory name (no path) for this entry
46 * @return the file name or directory name (no path) for this entry
87 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
89 * @param path - the new path value for the cloned file system entry
90 * @return a new FileSystemEntry that has all the same values as this object except for its path
92 public FileSystemEntry cloneWithNewPath(String path); argument
95 * Lock down the path s
[all...]
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java38 * Construct a new instance without setting its path
44 * Construct a new instance with the specified value for its path
46 * @param path - the value for path
48 public FileEntry(String path) { argument
49 super(path);
53 * Construct a new instance with the specified path and file contents
55 * @param path - the value for path
58 public FileEntry(String path, Strin argument
146 cloneWithNewPath(String path) argument
[all...]
H A DFileSystemEntry.java37 * Return the path for this file system entry
39 * @return the path for this file system entry
44 * Return the file name or directory name (no path) for this entry
46 * @return the file name or directory name (no path) for this entry
87 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
89 * @param path - the new path value for the cloned file system entry
90 * @return a new FileSystemEntry that has all the same values as this object except for its path
92 public FileSystemEntry cloneWithNewPath(String path); argument
95 * Lock down the path s
[all...]
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java38 * Construct a new instance without setting its path
44 * Construct a new instance with the specified value for its path
46 * @param path - the value for path
48 public FileEntry(String path) { argument
49 super(path);
53 * Construct a new instance with the specified path and file contents
55 * @param path - the value for path
58 public FileEntry(String path, Strin argument
146 cloneWithNewPath(String path) argument
[all...]
H A DFileSystemEntry.java37 * Return the path for this file system entry
39 * @return the path for this file system entry
44 * Return the file name or directory name (no path) for this entry
46 * @return the file name or directory name (no path) for this entry
87 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
89 * @param path - the new path value for the cloned file system entry
90 * @return a new FileSystemEntry that has all the same values as this object except for its path
92 public FileSystemEntry cloneWithNewPath(String path); argument
95 * Lock down the path s
[all...]
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java38 * Construct a new instance without setting its path
44 * Construct a new instance with the specified value for its path
46 * @param path - the value for path
48 public FileEntry(String path) { argument
49 super(path);
53 * Construct a new instance with the specified path and file contents
55 * @param path - the value for path
58 public FileEntry(String path, Strin argument
146 cloneWithNewPath(String path) argument
[all...]

Completed in 500 milliseconds

<<11121314151617181920>>