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

<<21222324252627282930>>

  /system/vold/
CheckEncryption.h 25 /* Check encryption of private volume mounted at the given path */
26 int CheckEncryption(const std::string& path);
Process.h 23 int KillProcessesWithOpenFiles(const std::string& path, int signal);
  /external/skia/samplecode/
SamplePathFill.cpp 17 static SkScalar make_frame(SkPath* path) {
19 path->addRoundRect(r, 15, 15);
24 paint.getFillPath(*path, path);
28 static SkScalar make_triangle(SkPath* path) {
32 path->moveTo(SkIntToScalar(gCoord[0]), SkIntToScalar(gCoord[1]));
33 path->lineTo(SkIntToScalar(gCoord[2]), SkIntToScalar(gCoord[3]));
34 path->lineTo(SkIntToScalar(gCoord[4]), SkIntToScalar(gCoord[5]));
35 path->close();
36 path->offset(10, 0)
    [all...]
  /external/skqp/samplecode/
SamplePathFill.cpp 17 static SkScalar make_frame(SkPath* path) {
19 path->addRoundRect(r, 15, 15);
24 paint.getFillPath(*path, path);
28 static SkScalar make_triangle(SkPath* path) {
32 path->moveTo(SkIntToScalar(gCoord[0]), SkIntToScalar(gCoord[1]));
33 path->lineTo(SkIntToScalar(gCoord[2]), SkIntToScalar(gCoord[3]));
34 path->lineTo(SkIntToScalar(gCoord[4]), SkIntToScalar(gCoord[5]));
35 path->close();
36 path->offset(10, 0)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
posixpath.py 4 this module as os.path. The "os.path" name is an alias for this
6 os.path provides the same operations in a manner specific to that
28 # strings representing various path-related bits and pieces
48 # Return whether a path is absolute.
52 """Test whether a path is absolute"""
62 If any component is an absolute path, all previous path components
64 path = a
67 path = b
    [all...]
  /bootable/recovery/
roots.h 30 // Make sure that the volume 'path' is on is mounted. Returns 0 on
32 int ensure_path_mounted(const char* path);
35 int ensure_path_mounted_at(const char* path, const char* mount_point);
37 // Make sure that the volume 'path' is on is unmounted. Returns 0 on
39 int ensure_path_unmounted(const char* path);
  /external/annotation-tools/annotation-file-utilities/src/annotator/find/
InPackageCriterion.java 30 public boolean isSatisfiedBy(TreePath path, Tree leaf) {
31 assert path == null || path.getLeaf() == leaf;
32 return isSatisfiedBy(path);
37 public boolean isSatisfiedBy(TreePath path) {
38 if (path == null) {
43 Main.pathToString(path), this.toString());
46 Tree tree = path.getLeaf();
57 path = path.getParentPath()
    [all...]
  /external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.native.obs/
native.pass.cpp 14 // class path
32 path p(value);
33 ASSERT_SAME_TYPE(path::string_type const&, decltype(p.native()));
37 path p(value);
  /external/libmojo/base/android/java/src/org/chromium/base/
PathService.java 21 public static void override(int what, String path) {
22 nativeOverride(what, path);
25 private static native void nativeOverride(int what, String path);
  /external/ltp/include/old/
old_safe_file_ops.h 33 #define FILE_SCANF(path, fmt, ...) \
35 (path), (fmt), ## __VA_ARGS__)
37 #define SAFE_FILE_SCANF(cleanup_fn, path, fmt, ...) \
39 (path), (fmt), ## __VA_ARGS__)
41 #define FILE_LINES_SCANF(cleanup_fn, path, fmt, ...) \
43 (path), (fmt), ## __VA_ARGS__)
45 #define SAFE_FILE_LINES_SCANF(cleanup_fn, path, fmt, ...) \
47 (path), (fmt), ## __VA_ARGS__)
49 #define FILE_PRINTF(path, fmt, ...) \
51 (path), (fmt), ## __VA_ARGS__
    [all...]
  /external/ltp/lib/
tst_fs_has_free.c 29 int tst_fs_has_free_(void (*cleanup)(void), const char *path,
34 if (statfs(path, &sf)) {
36 "tst_fs_has_free: failed to statfs(%s)", path);
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
AbstractFileSystemEntry.java 30 private String path; field in class:AbstractFileSystemEntry
72 * Construct a new instance without setting its path
78 * Construct a new instance with the specified value for its path
80 * @param path - the value for path
82 public AbstractFileSystemEntry(String path) {
83 this.path = path;
87 * @return the path for this entry
90 return path;
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
TestUnixFakeFileSystem.groovy 47 List listNames(String path) {
51 super.listNames(path)
54 List listFiles(String path) {
58 super.listFiles(path)
61 boolean delete(String path) {
65 super.delete(path)
  /external/perf_data_converter/src/
perf_to_profile_lib.h 17 // Checks and returns whether or not the file at the given |path| already
19 bool FileExists(const string& path);
21 // Reads a file at the given |path| as a string and returns it.
22 string ReadFileToString(const string& path);
24 // Creates a file at the given |path|. If |overwriteOutput| is set to true,
25 // overwrites the file at the given path.
26 void CreateFile(const string& path, std::ofstream* file, bool overwriteOutput);
  /external/skia/gm/
crbug_691386.cpp 12 SkPath path; local
13 if (!SkParsePath::FromSVGString("M -1 0 A 1 1 0 0 0 1 0 Z", &path)) {
21 canvas->drawPath(path, p);
  /external/skia/src/gpu/
GrPathRenderer.cpp 13 void GrPathRenderer::GetPathDevBounds(const SkPath& path,
17 if (path.isInverseFillType()) {
21 *bounds = path.getBounds();
  /external/skqp/gm/
crbug_691386.cpp 12 SkPath path; local
13 if (!SkParsePath::FromSVGString("M -1 0 A 1 1 0 0 0 1 0 Z", &path)) {
21 canvas->drawPath(path, p);
  /external/skqp/src/gpu/
GrPathRenderer.cpp 13 void GrPathRenderer::GetPathDevBounds(const SkPath& path,
17 if (path.isInverseFillType()) {
21 *bounds = path.getBounds();
  /external/skqp/tests/
PathMeasureTest.cpp 12 SkPath path; local
19 path.moveTo(pts[0]);
21 path.cubicTo(pts[i], pts[i + 1], pts[i + 2]);
24 SkPathMeasure meas(path, false);
29 SkPath path; local
36 path.moveTo(pts[0]);
38 path.quadTo(pts[i], pts[i + 1]);
40 SkPathMeasure meas(path, false);
45 SkPath path; local
54 path.moveTo(pts[0])
77 SkPath path; local
    [all...]
  /external/swiftshader/src/Common/
SharedLibrary.hpp 24 void *getLibraryHandle(const char *path);
25 void *loadLibrary(const char *path);
66 inline void *loadLibrary(const char *path)
68 return (void*)LoadLibrary(path);
71 inline void *getLibraryHandle(const char *path)
74 GetModuleHandleEx(0, path, &module);
88 inline void *loadLibrary(const char *path)
90 return dlopen(path, RTLD_LAZY | RTLD_LOCAL);
93 inline void *getLibraryHandle(const char *path)
97 return dlopen(path, RTLD_NOW | RTLD_LOCAL)
    [all...]
  /external/v8/tools/gcmole/
download_gcmole_tools.py 10 GCMOLE_PATH = os.path.dirname(os.path.abspath(__file__))
11 SHA1_PATH = os.path.join(GCMOLE_PATH, 'gcmole-tools.tar.gz.sha1')
  /external/v8/tools/jsfunfuzz/
download_jsfunfuzz.py 10 FUZZ_PATH = os.path.dirname(os.path.abspath(__file__))
11 SHA1_PATH = os.path.join(FUZZ_PATH, 'jsfunfuzz.tar.gz.sha1')
  /prebuilts/go/darwin-x86/src/path/
example_test.go 9 "path"
13 fmt.Println(path.Base("/a/b"))
14 fmt.Println(path.Base("/"))
15 fmt.Println(path.Base(""))
34 fmt.Printf("Clean(%q) = %q\n", p, path.Clean(p))
48 fmt.Println(path.Dir("/a/b/c"))
49 fmt.Println(path.Dir("a/b/c"))
50 fmt.Println(path.Dir("/a/"))
51 fmt.Println(path.Dir("a/"))
52 fmt.Println(path.Dir("/")
    [all...]
  /prebuilts/go/linux-x86/src/path/
example_test.go 9 "path"
13 fmt.Println(path.Base("/a/b"))
14 fmt.Println(path.Base("/"))
15 fmt.Println(path.Base(""))
34 fmt.Printf("Clean(%q) = %q\n", p, path.Clean(p))
48 fmt.Println(path.Dir("/a/b/c"))
49 fmt.Println(path.Dir("a/b/c"))
50 fmt.Println(path.Dir("/a/"))
51 fmt.Println(path.Dir("a/"))
52 fmt.Println(path.Dir("/")
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.path/path.member/path.native.obs/
native.pass.cpp 14 // class path
32 path p(value);
33 ASSERT_SAME_TYPE(path::string_type const&, decltype(p.native()));
37 path p(value);

Completed in 815 milliseconds

<<21222324252627282930>>