HomeSort by relevance Sort by last modified time
    Searched full:path (Results 1076 - 1100 of 27077) sorted by null

<<41424344454647484950>>

  /external/selinux/libselinux/src/
getenforce.c 15 char path[PATH_MAX]; local
23 snprintf(path, sizeof path, "%s/enforce", selinux_mnt);
24 fd = open(path, O_RDONLY);
policyvers.c 16 char path[PATH_MAX]; local
25 snprintf(path, sizeof path, "%s/policyvers", selinux_mnt);
26 fd = open(path, O_RDONLY);
  /external/skia/gm/
complexclip.cpp 44 SkPath path; local
45 path.moveTo(SkIntToScalar(0), SkIntToScalar(50));
46 path.quadTo(SkIntToScalar(0), SkIntToScalar(0), SkIntToScalar(50), SkIntToScalar(0));
47 path.lineTo(SkIntToScalar(175), SkIntToScalar(0));
48 path.quadTo(SkIntToScalar(200), SkIntToScalar(0), SkIntToScalar(200), SkIntToScalar(25));
49 path.lineTo(SkIntToScalar(200), SkIntToScalar(150));
50 path.quadTo(SkIntToScalar(200), SkIntToScalar(200), SkIntToScalar(150), SkIntToScalar(200));
51 path.lineTo(SkIntToScalar(0), SkIntToScalar(200));
52 path.close();
53 path.moveTo(SkIntToScalar(50), SkIntToScalar(50))
    [all...]
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/skia/include/core/
SkPathMeasure.h 19 /** Initialize the pathmeasure with the specified path. The path must remain valid
21 a different path (or null), since the measure object keeps a pointer to the
22 path object (does not copy its data).
27 SkPathMeasure(const SkPath& path, bool forceClosed, SkScalar resScale = 1);
30 /** Reset the pathmeasure with the specified path. The path must remain valid
32 a different path (or null), since the measure object keeps a pointer to the
33 path object (does not copy its data).
37 /** Return the total length of the current contour, or 0 if no path
    [all...]
  /external/skia/platform_tools/android/gyp_gen/
android_framework_gyp.py 15 SCRIPT_DIR = os.path.abspath(os.path.dirname(__file__))
20 SKIA_DIR = os.path.normpath(os.path.join(SCRIPT_DIR, os.pardir, os.pardir,
42 path: Path to root gypd file created by running gyp.
49 gyp_source_dir = os.path.join(SKIA_DIR, 'third_party', 'externals', 'gyp')
53 if not os.path.exists(gyp_source_dir):
56 assert os.path.exists(gyp_source_dir)
58 sys.path.insert(0, os.path.join(gyp_source_dir, 'pylib')
    [all...]
  /external/skia/src/gpu/
GrBlurUtils.h 30 * Draw a path handling the mask filter if present.
43 * Draw a path handling the mask filter. The mask filter is not optional. The path effect is
49 const SkPath& path,
  /external/skia/tools/lua/
dump_clipstack_at_restore.lua 19 if (element["type"] == "path") then
20 io.write(", fill: ", element["path"]:getFillType())
21 io.write(", segments: \"", element["path"]:getSegmentTypes(), "\"")
22 io.write(", convex:", tostring(element["path"]:isConvex()))
  /external/testng/src/test/resources/param-inheritance/
parent-suite.xml 4 <suite-file path="./child-suite.xml" />
  /external/v8/build/android/gyp/
create_test_runner_script.py 26 script_directory = os.path.dirname(__file__)
28 def ResolvePath(path):
29 \"\"\"Returns an absolute filepath given a path relative to this script.
31 return os.path.abspath(os.path.join(script_directory, path))
36 for arg, path in test_runner_path_args:
37 test_runner_args.extend([arg, ResolvePath(path)])
48 parser.add_argument('--script-output-path',
49 help='Output path for executable script.'
    [all...]
  /external/v8/build/linux/unbundle/
remove_bundled_libraries.py 14 import os.path namespace
19 my_dirname = os.path.abspath(os.path.dirname(__file__))
20 source_tree_root = os.path.abspath(
21 os.path.join(my_dirname, '..', '..', '..'))
23 if os.path.join(source_tree_root, 'build', 'linux', 'unbundle') != my_dirname:
40 root_relpath = os.path.relpath(root, source_tree_root)
45 path = os.path.join(root, f)
46 relpath = os.path.relpath(path, source_tree_root
    [all...]
  /external/v8/test/benchmarks/
testcfg.py 55 self.testroot = os.path.join(root, "data")
123 if testcase.path.startswith("kraken"):
124 result.append(os.path.join(self.testroot, "%s-data.js" % testcase.path))
125 result.append(os.path.join(self.testroot, "%s.js" % testcase.path))
126 elif testcase.path.startswith("octane"):
127 result.append(os.path.join(self.testroot, "octane/base.js"))
128 result.append(os.path.join(self.testroot, "%s.js" % testcase.path))
    [all...]
  /frameworks/av/drm/common/
DrmEngineBase.cpp 30 int uniqueId, const String8* path, int action) {
31 return onGetConstraints(uniqueId, path, action);
34 DrmMetadata* DrmEngineBase::getMetadata(int uniqueId, const String8* path) {
35 return onGetMetadata(uniqueId, path);
51 bool DrmEngineBase::canHandle(int uniqueId, const String8& path) {
52 return onCanHandle(uniqueId, path);
69 String8 DrmEngineBase::getOriginalMimeType(int uniqueId, const String8& path, int fd) {
70 return onGetOriginalMimeType(uniqueId, path, fd);
73 int DrmEngineBase::getDrmObjectType(int uniqueId, const String8& path, const String8& mimeType) {
74 return onGetDrmObjectType(uniqueId, path, mimeType)
    [all...]
  /frameworks/av/media/libeffects/testlibs/
Android.mk_ 20 $(call include-path-for, audio-effects) \
21 $(call include-path-for, graphics corecg)
49 $(call include-path-for, graphics corecg) \
50 $(call include-path-for, audio-effects)
  /frameworks/base/core/java/android/gesture/
GestureStroke.java 21 import android.graphics.Path;
42 private Path mCachedPath;
112 public Path getPath() {
124 Path path = null; local
132 if (path == null) {
133 path = new Path();
134 path.moveTo(x, y);
141 path.quadTo(mX, mY, (x + mX) / 2, (y + mY) / 2)
174 Path path = null; local
    [all...]
  /frameworks/base/docs/html/sdk/1.0_r1/
index.jd 3 sdk.redirect.path=index.html
  /frameworks/base/docs/html/sdk/1.0_r2/
index.jd 3 sdk.redirect.path=index.html
  /frameworks/base/docs/html/sdk/1.1_r1/
index.jd 3 sdk.redirect.path=index.html
  /frameworks/base/docs/html/sdk/1.5_r1/
index.jd 3 sdk.redirect.path=index.html
  /frameworks/base/docs/html/sdk/1.5_r2/
index.jd 3 sdk.redirect.path=index.html
  /frameworks/base/docs/html/sdk/1.5_r3/
index.jd 3 sdk.redirect.path=index.html
  /frameworks/base/docs/html/sdk/1.6_r1/
index.jd 3 sdk.redirect.path=index.html
  /frameworks/base/media/java/android/media/
MediaHTTPService.java 33 String path) {
34 if (path.startsWith("http://")
35 || path.startsWith("https://")
36 || path.startsWith("widevine://")) {
  /frameworks/compile/mclinker/include/mcld/Support/
FileSystem.h 11 // path class.
69 class Path;
73 bool exists(const Path& pPath);
74 bool is_directory(const Path& pPath);
78 extern Path::StringType static_library_extension;
79 extern Path::StringType shared_library_extension;
80 extern Path::StringType executable_extension;
81 extern Path::StringType relocatable_extension;
82 extern Path::StringType assembly_extension;
83 extern Path::StringType bitcode_extension
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/
pygram.py 15 _GRAMMAR_FILE = os.path.join(os.path.dirname(__file__), "Grammar.txt")
16 _PATTERN_GRAMMAR_FILE = os.path.join(os.path.dirname(__file__),

Completed in 1389 milliseconds

<<41424344454647484950>>