Searched refs:path (Results 26 - 50 of 8394) sorted by relevance

1234567891011>>

/external/mockftpserver/tags/2.4/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.5/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/skia/tests/
H A DTessellatingPathRendererTests.cpp29 SkPath path; local
30 path.moveTo(229.127044677734375f, 67.34100341796875f);
31 path.lineTo(187.8097381591796875f, -6.7729740142822265625f);
32 path.lineTo(171.411407470703125f, 50.94266510009765625f);
33 path.lineTo(245.5253753662109375f, 9.6253643035888671875f);
34 path.moveTo(208.4683990478515625f, 30.284009933471679688f);
35 path.lineTo(171.411407470703125f, 50.94266510009765625f);
36 path.lineTo(187.8097381591796875f, -6.7729740142822265625f);
37 return path;
43 SkPath path; local
56 SkPath path; local
71 SkPath path; local
84 SkPath path; local
96 SkPath path; local
108 SkPath path; local
120 SkPath path; local
132 SkPath path; local
144 SkPath path; local
155 SkPath path; local
168 SkPath path; local
183 SkPath path; local
201 SkPath path; local
219 SkPath path; local
231 SkPath path; local
243 SkPath path; local
259 SkPath path; local
270 SkPath path; local
285 SkPath path; local
322 SkPath path; local
333 SkPath path; local
345 SkPath path; local
353 SkPath path; local
368 SkPath path; local
380 SkPath path; local
396 SkPath path; local
411 SkPath path; local
423 SkPath path; local
435 SkPath path; local
454 test_path(GrContext* ctx, GrRenderTargetContext* renderTargetContext, const SkPath& path, const SkMatrix& matrix = SkMatrix::I(), GrAAType aaType = GrAAType::kNone, std::unique_ptr<GrFragmentProcessor> fp = nullptr) argument
[all...]
/external/skqp/tests/
H A DTessellatingPathRendererTests.cpp29 SkPath path; local
30 path.moveTo(229.127044677734375f, 67.34100341796875f);
31 path.lineTo(187.8097381591796875f, -6.7729740142822265625f);
32 path.lineTo(171.411407470703125f, 50.94266510009765625f);
33 path.lineTo(245.5253753662109375f, 9.6253643035888671875f);
34 path.moveTo(208.4683990478515625f, 30.284009933471679688f);
35 path.lineTo(171.411407470703125f, 50.94266510009765625f);
36 path.lineTo(187.8097381591796875f, -6.7729740142822265625f);
37 return path;
43 SkPath path; local
56 SkPath path; local
71 SkPath path; local
84 SkPath path; local
96 SkPath path; local
108 SkPath path; local
120 SkPath path; local
132 SkPath path; local
144 SkPath path; local
155 SkPath path; local
168 SkPath path; local
183 SkPath path; local
201 SkPath path; local
219 SkPath path; local
231 SkPath path; local
243 SkPath path; local
259 SkPath path; local
270 SkPath path; local
285 SkPath path; local
322 SkPath path; local
333 SkPath path; local
345 SkPath path; local
353 SkPath path; local
368 SkPath path; local
380 SkPath path; local
396 SkPath path; local
411 SkPath path; local
423 SkPath path; local
435 SkPath path; local
454 test_path(GrContext* ctx, GrRenderTargetContext* renderTargetContext, const SkPath& path, const SkMatrix& matrix = SkMatrix::I(), GrAAType aaType = GrAAType::kNone, std::unique_ptr<GrFragmentProcessor> fp = nullptr) argument
[all...]
/external/curl/src/
H A Dtool_bname.c30 char *tool_basename(char *path) argument
35 s1 = strrchr(path, '/');
36 s2 = strrchr(path, '\\');
39 path = (s1 > s2) ? s1 + 1 : s2 + 1;
42 path = s1 + 1;
44 path = s2 + 1;
46 return path;
/external/skia/tools/
H A Dfix_pythonpath.py7 """Add the checkout root to sys.path, provide mechanisms for adding others."""
14 CHECKOUT_ROOT = os.path.realpath(os.path.join(
15 os.path.dirname(os.path.abspath(__file__)), os.pardir))
18 def add_to_pythonpath(path):
20 sys.path.append(path)
/external/skqp/tools/
H A Dfix_pythonpath.py7 """Add the checkout root to sys.path, provide mechanisms for adding others."""
14 CHECKOUT_ROOT = os.path.realpath(os.path.join(
15 os.path.dirname(os.path.abspath(__file__)), os.pardir))
18 def add_to_pythonpath(path):
20 sys.path.append(path)
/external/syslinux/gpxe/src/core/
H A Dbasename.c24 * Get base name of path
32 * Return base name from path
34 * @v path Full path
37 char * basename ( char *path ) {
40 basename = strrchr ( path, '/' );
41 return ( basename ? ( basename + 1 ) : path );
45 * Return directory name from path
47 * @v path Full path
[all...]
/external/chromium-trace/catapult/systrace/profile_chrome/
H A D__init__.py9 _CATAPULT_DIR = os.path.join(
10 os.path.dirname(os.path.abspath(__file__)), '..', '..')
11 sys.path.append(os.path.join(_CATAPULT_DIR, 'devil'))
12 sys.path.append(os.path.join(_CATAPULT_DIR, 'systrace'))
13 sys.path.append(os.path.join(_CATAPULT_DIR, 'common', 'py_utils'))
/external/tensorflow/tensorflow/contrib/util/
H A Dloader.py30 def load_op_library(path):
31 """Loads a contrib op library from the given path.
38 path: An absolute path to a shared object file.
47 path = re.sub(r'\.so$', '.dll', path)
52 if not os.path.exists(path):
54 path = resource_loader.get_path_to_datafile(path)
[all...]
/external/llvm/bindings/python/llvm/tests/
H A Dbase.py1 import os.path namespace
26 path = os.path.join(d, lib)
28 if os.path.exists(path):
29 return path
35 return os.path.join(os.path.dirname(os.path.abspath(__file__)), "test_file")
38 return os.path
[all...]
/external/strace/tests/
H A Dskip_unavailable.c7 skip_if_unavailable(const char *const path) argument
11 if (stat(path, &st))
12 perror_msg_and_skip("stat: %s", path);
/external/strace/tests-m32/
H A Dskip_unavailable.c7 skip_if_unavailable(const char *const path) argument
11 if (stat(path, &st))
12 perror_msg_and_skip("stat: %s", path);
/external/strace/tests-mx32/
H A Dskip_unavailable.c7 skip_if_unavailable(const char *const path) argument
11 if (stat(path, &st))
12 perror_msg_and_skip("stat: %s", path);
/external/tensorflow/tensorflow/stream_executor/lib/
H A Dpath.cc16 #include "tensorflow/stream_executor/lib/path.h"
24 static bool IsAbsolutePath(port::StringPiece path) { argument
25 return !path.empty() && path[0] == '/';
29 // ensuring that the proper path separators are inserted between them.
33 for (port::StringPiece path : paths) {
34 if (path.empty()) continue;
37 result = path.ToString();
42 if (IsAbsolutePath(path)) {
43 StrAppend(&result, path
[all...]
/external/pdfium/testing/utils/
H A Dpath_service.cpp21 bool PathService::EndsWithSeparator(const std::string& path) { argument
22 return path.size() > 1 && path[path.size() - 1] == PATH_SEPARATOR;
26 bool PathService::GetExecutableDir(std::string* path) { argument
27 // Get the current executable file path.
34 *path = std::string(path_buffer);
36 ASSERT(path);
42 path->reserve(path_length);
43 path
68 GetSourceDir(std::string* path) argument
85 GetTestDataDir(std::string* path) argument
98 GetTestFilePath(const std::string& file_name, std::string* path) argument
[all...]
/external/chromium-trace/catapult/common/eslint/bin/
H A Drun_tests10 _CATAPULT_PATH = os.path.abspath(
11 os.path.join(os.path.dirname(__file__),
12 os.path.pardir, os.path.pardir, os.path.pardir))
15 _ESLINT_PATH = os.path.abspath(
16 os.path.join(os.path.dirname(__file__), os.path
[all...]
/external/libmojo/build/android/pylib/constants/
H A Dhost_paths.py11 os.path.abspath(os.path.join(os.path.dirname(__file__),
14 BUILD_COMMON_PATH = os.path.join(
18 ANDROID_PLATFORM_DEVELOPMENT_SCRIPTS_PATH = os.path.join(
21 DEVIL_PATH = os.path.join(
23 PYMOCK_PATH = os.path.join(
27 def SysPath(path, position=None):
29 sys.path.append(path)
[all...]
/external/fio/os/windows/posix/include/
H A Dlibgen.h4 char *basename(char *path);
/external/ply/ply/test/pkg_test1/
H A D__init__.py5 if '..' not in sys.path:
6 sys.path.insert(0, '..')
/external/ply/ply/test/pkg_test2/
H A D__init__.py5 if '..' not in sys.path:
6 sys.path.insert(0, '..')
/external/ply/ply/test/pkg_test3/
H A D__init__.py5 if '..' not in sys.path:
6 sys.path.insert(0, '..')
/external/ply/ply/test/pkg_test5/
H A D__init__.py5 if '..' not in sys.path:
6 sys.path.insert(0, '..')
/external/ply/ply/test/pkg_test6/
H A D__init__.py5 if '..' not in sys.path:
6 sys.path.insert(0, '..')
/external/autotest/client/bin/result_tools/
H A Dresult_info_lib.py11 def _get_file_stat(path):
12 """Get the os.stat of the file at the given path.
14 @param path: Path to the file.
18 return os.stat(path)
24 def get_file_size(path):
25 """Get the size of the file in bytes for the given path.
27 @param path: Path to the file.
30 stat = _get_file_stat(path)
34 def get_last_modification_time(path):
35 """Get the last modification time for the given path
[all...]

Completed in 5305 milliseconds

1234567891011>>