HomeSort by relevance Sort by last modified time
    Searched refs:path (Results 176 - 200 of 18318) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/autotest/client/site_tests/firmware_TouchMTB/tools/
common.py 9 cwd = os.path.dirname(sys.modules[__name__].__file__)
10 client_dir = os.path.abspath(os.path.join(cwd, '..'))
11 sys.path.insert(0, client_dir)
  /external/chromium-trace/catapult/systrace/bin/
adb_profile_chrome 11 systrace_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
12 sys.path.append(systrace_path)
  /external/clang/test/Analysis/
unix-api.c 14 void open_1(const char *path) {
16 fd = open(path, O_RDONLY); // no-warning
21 void open_2(const char *path) {
24 fd = open(path, O_RDONLY, mode, NULL); // expected-warning{{Call to 'open' with more than three arguments}}
29 void open_3(const char *path) {
31 fd = open(path, O_RDONLY, NULL); // expected-warning{{Third argument to 'open' is not an integer}}
36 void open_4(const char *path) {
38 fd = open(path, O_RDONLY, ""); // expected-warning{{Third argument to 'open' is not an integer}}
43 void open_5(const char *path) {
48 fd = open(path, O_RDONLY, st); // expected-warning{{Third argument to 'open' is not an integer}
    [all...]
  /external/fio/oslib/
linux-dev-lookup.h 4 int blktrace_lookup_device(const char *redirect, char *path, unsigned int maj,
  /external/fonttools/MetaTools/
buildChangeLog.py 5 fontToolsDir = os.path.dirname(os.path.dirname(os.path.normpath(
6 os.path.join(os.getcwd(), sys.argv[0]))))
  /external/libchrome/base/test/
test_file_util.cc 12 bool EvictFileFromSystemCacheWithRetry(const FilePath& path) {
16 if (EvictFileFromSystemCache(path))
24 void PrintTo(const FilePath& path, std::ostream* out) {
25 *out << path.value();
  /external/libcxx/utils/libcxx/android/
build.py 5 def mm(path, android_build_top):
7 env['ONE_SHOT_MAKEFILE'] = os.path.join(path, 'Android.mk')
11 'MODULES-IN-' + path.replace('/', '-'), '-B'
  /external/llvm/utils/llvm-lit/
llvm-lit.in 11 sys.path.insert(0, os.path.join(llvm_source_root, 'utils', 'lit'))
17 'llvm_site_config' : os.path.join(llvm_obj_root, 'test', 'lit.site.cfg'),
18 'llvm_unit_site_config' : os.path.join(llvm_obj_root, 'test', 'Unit',
22 clang_obj_root = os.path.join(llvm_obj_root, 'tools', 'clang')
24 if os.path.exists(clang_obj_root):
26 os.path.join(clang_obj_root, 'test', 'lit.site.cfg')
27 clang_tools_extra_obj_root = os.path.join(clang_obj_root, 'tools', 'extra')
28 if os.path.exists(clang_tools_extra_obj_root):
30 os.path.join(clang_tools_extra_obj_root, 'test', 'lit.site.cfg'
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
InvalidFilenameException.java 19 * 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>
31 * @param path - the path involved in the file system operation that caused the exception
33 public InvalidFilenameException(String path) {
34 super(path, MESSAGE_KEY);
38 * @param path - the path involved in the file system operation that caused the exception
41 public InvalidFilenameException(String path, Throwable cause)
    [all...]
  /external/ply/ply/test/pkg_test1/
__init__.py 5 if '..' not in sys.path:
6 sys.path.insert(0, '..')
  /external/ply/ply/test/pkg_test2/
__init__.py 5 if '..' not in sys.path:
6 sys.path.insert(0, '..')
  /external/ply/ply/test/pkg_test3/
__init__.py 5 if '..' not in sys.path:
6 sys.path.insert(0, '..')
  /external/ply/ply/test/pkg_test5/
__init__.py 5 if '..' not in sys.path:
6 sys.path.insert(0, '..')
  /external/ply/ply/test/pkg_test6/
__init__.py 5 if '..' not in sys.path:
6 sys.path.insert(0, '..')
  /external/skia/gm/
bug615686.cpp 16 SkPath path; local
17 path.moveTo(0, 0);
18 path.cubicTo(200, 200, 0, 200, 200, 0);
19 canvas->drawPath(path, p);
smallarc.cpp 21 SkPath path; local
22 path.moveTo(75, 0);
23 path.cubicTo(33.5, 0, 0, 33.5, 0, 75);
27 canvas->drawPath(path, p);
  /external/skqp/gm/
bug615686.cpp 16 SkPath path; local
17 path.moveTo(0, 0);
18 path.cubicTo(200, 200, 0, 200, 200, 0);
19 canvas->drawPath(path, p);
smallarc.cpp 21 SkPath path; local
22 path.moveTo(75, 0);
23 path.cubicTo(33.5, 0, 0, 33.5, 0, 75);
27 canvas->drawPath(path, p);
  /external/toybox/toys/other/
pwdx.c 23 char *path = toybuf; local
26 if (!readlink0(path, toybuf, sizeof(toybuf))) {
27 path = strerror(errno);
31 xprintf("%s: %s\n", *optargs, path);
  /frameworks/rs/rsov/compiler/tests/
llvm-lit 7 # to determine correct path for the root of the source tree.
10 llvm_source_root = os.path.join(android_source_root, 'external', 'llvm')
13 sys.path.append(os.path.join(llvm_source_root, 'utils', 'lit'))
18 'llvm_site_config' : os.path.join('./', 'lit.site.cfg')
  /libcore/ojluni/src/main/java/java/nio/file/
PathMatcher.java 35 * @see Files#newDirectoryStream(Path,String)
40 * Tells if given path matches this matcher's pattern.
42 * @param path
43 * the path to match
45 * @return {@code true} if, and only if, the path matches this
48 boolean matches(Path path);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
prefix.h 30 /* Update PATH using KEY if PATH starts with PREFIX. The returned
33 extern char *update_path (const char *path, const char *key);
  /prebuilts/go/darwin-x86/src/path/filepath/
symlink_unix.go 5 func evalSymlinks(path string) (string, error) {
6 return walkSymlinks(path)
  /prebuilts/go/linux-x86/src/path/filepath/
symlink_unix.go 5 func evalSymlinks(path string) (string, error) {
6 return walkSymlinks(path)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/libcxx/android/
build.py 5 def mm(path, android_build_top):
7 env['ONE_SHOT_MAKEFILE'] = os.path.join(path, 'Android.mk')
11 'MODULES-IN-' + path.replace('/', '-'), '-B'

Completed in 511 milliseconds

1 2 3 4 5 6 78 91011>>