HomeSort by relevance Sort by last modified time
    Searched full:path (Results 751 - 775 of 4958) sorted by null

<<31323334353637383940>>

  /external/skia/src/core/
SkStrokerPriv.cpp 22 static void ButtCapper(SkPath* path, const SkPoint& pivot,
26 path->lineTo(stop.fX, stop.fY);
29 static void RoundCapper(SkPath* path, const SkPoint& pivot,
40 path->cubicTo(px + nx + CWX(sx, sy), py + ny + CWY(sx, sy),
43 path->cubicTo(px + CWX(nx, ny) - sx, py + CWY(nx, ny) - sy,
48 static void SquareCapper(SkPath* path, const SkPoint& pivot,
57 path->setLastPt(pivot.fX + normal.fX + parallel.fX, pivot.fY + normal.fY + parallel.fY);
58 path->lineTo(pivot.fX - normal.fX + parallel.fX, pivot.fY - normal.fY + parallel.fY);
62 path->lineTo(pivot.fX + normal.fX + parallel.fX, pivot.fY + normal.fY + parallel.fY);
63 path->lineTo(pivot.fX - normal.fX + parallel.fX, pivot.fY - normal.fY + parallel.fY)
    [all...]
  /external/skia/xcode/Simple/Simple.xcodeproj/
project.pbxproj 36 0099A4C90EF176A5004F1DA4 /* SimpleApp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SimpleApp.cpp; sourceTree = "<group>"; };
37 00AFCD300EF165CE00BD2FF1 /* skia2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = skia2.xcodeproj; path = ../skia2.xcodeproj; sourceTree = SOURCE_ROOT; };
38 00AFCD730EF1679700BD2FF1 /* skia_mac.cp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = skia_mac.cp; path = ../ports/skia_mac.cp; sourceTree = SOURCE_ROOT; };
39 0867D6ABFE840B52C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
40 1870340FFE93FCAF11CA0CD7 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/main.nib; sourceTree = "<group>"; };
41 20286C33FDCF999611CA2CEA /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; };
42 5048396D09E3307300765E4B /* SimpleProj.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; path = SimpleProj.xcconfig; sourceTree = "<group>"; };
43 5048396E09E3307300765E4B /* SimpleTarget.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; path = SimpleTarget.xcconfig; sourceTree = "<group>"; };
44 508344B209E5C41E0093A071 /* Simple.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Simple.app; sourceTree = BUILT_PRODUCTS_DIR; };
45 8D0C4E960486CD37000505A6 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }
    [all...]
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 50 #include "Path.h"
517 static void inline drawFilledShadowPath(GraphicsContext* context, QPainter* p, const QPainterPath& path)
524 p->fillPath(path, QBrush(shadowColor));
535 QPainterPath path = m_data->currentPath; local
536 path.setFillRule(toQtFillRule(fillRule()));
539 drawFilledShadowPath(this, p, path);
542 p->fillPath(path, QBrush(m_common->state.fillPattern->createPlatformPattern(affine)));
546 p->fillPath(path, brush);
549 p->fillPath(path, p->brush());
562 QPainterPath path = m_data->currentPath local
1068 QPainterPath path; local
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
ExtraPackage.java 37 private static final String PROP_PATH = "Extra.Path"; //$NON-NLS-1$
41 * The install folder name. It must be a single-segment path.
77 String path,
95 // The path argument comes before whatever could be in the properties
96 mPath = path != null ? path : getProperty(props, PROP_PATH, path);
126 * Static helper to check if a given path is acceptable for an "extra" package.
139 * The install folder name. It must be a single-segment path.
217 * @param osSdkRoot The OS path of the SDK root folder.
    [all...]
  /external/webkit/WebCore/platform/graphics/android/
GraphicsContextAndroid.cpp 33 #include "Path.h"
590 SkPath path;
607 path.addArc(oval, SkIntToScalar(-startAngle), SkIntToScalar(-angleSpan));
608 GC2Canvas(this)->drawPath(path, paint);
620 SkPath path; local
622 path.incReserve(numPoints);
623 path.moveTo(SkFloatToScalar(points[0].x()), SkFloatToScalar(points[0].y()));
625 path.lineTo(SkFloatToScalar(points[i].x()), SkFloatToScalar(points[i].y()));
627 if (GC2Canvas(this)->quickReject(path, shouldAntialias ?
635 GC2Canvas(this)->drawPath(path, paint)
653 SkPath path; local
1119 SkPath* path = m_data->getPath(); local
1144 const SkPath* path = m_data->getPath(); local
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/
rebaseline_chromium_webkit_tests.py 91 # Use a shell for subcommands on Windows to get a PATH search.
162 elif not os.path.exists(html_directory):
165 html_directory = os.path.join(html_directory, 'rebaseline_html')
168 if os.path.exists(html_directory):
172 if not os.path.exists(html_directory):
179 """Get full path of the baseline result file.
188 Full path of the baseline file for rebaselining result comparison.
191 base, ext = os.path.splitext(baseline_filename)
193 fullpath = os.path.join(html_directory, result_filename)
194 logging.debug(' Result file full path: "%s".', fullpath
    [all...]
  /external/libpng/projects/xcode/libpng.xcodeproj/
project.pbxproj 32 14461C5D09C3C37F005840C0 /* png.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = png.c; path = ../../png.c; sourceTree = SOURCE_ROOT; };
33 14461C5E09C3C37F005840C0 /* png.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = png.h; path = ../../png.h; sourceTree = SOURCE_ROOT; };
34 14461C5F09C3C37F005840C0 /* pngconf.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = pngconf.h; path = ../../pngconf.h; sourceTree = SOURCE_ROOT; };
35 14461C6009C3C37F005840C0 /* pngerror.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = pngerror.c; path = ../../pngerror.c; sourceTree = SOURCE_ROOT; };
36 14461C6109C3C37F005840C0 /* pnggccrd.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = pnggccrd.c; path = ../../pnggccrd.c; sourceTree = SOURCE_ROOT; };
37 14461C6209C3C37F005840C0 /* pngget.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = pngget.c; path = ../../pngget.c; sourceTree = SOURCE_ROOT; };
38 14461C6309C3C37F005840C0 /* pngmem.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = pngmem.c; path = ../../pngmem.c; sourceTree = SOURCE_ROOT; };
39 14461C6409C3C37F005840C0 /* pngpread.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = pngpread.c; path = ../../pngpread.c; sourceTree = SOURCE_ROOT; };
40 14461C6509C3C37F005840C0 /* pngread.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = pngread.c; path = ../../pngread.c; sourceTree = SOURCE_ROOT; };
41 14461C6609C3C37F005840C0 /* pngrio.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = pngrio.c; path = ../../pngrio.c; sourceTree = SOURCE_ROOT; }
    [all...]
  /system/core/init/
devices.c 45 const char *path; member in struct:uevent
239 static int get_device_perm_inner(struct perms_ *perms, const char *path,
246 if(strncmp(path, perms[i].name, strlen(perms[i].name)))
249 if(strcmp(path, perms[i].name))
261 static mode_t get_device_perm(const char *path, unsigned *uid, unsigned *gid)
265 if (get_device_perm_inner(qemu_perms, path, uid, gid, &perm) == 0) {
267 } else if (get_device_perm_inner(devperms, path, uid, gid, &perm) == 0) {
280 if (strncmp(path, dp->name, strlen(dp->name)))
283 if (strcmp(path, dp->name))
298 static void make_device(const char *path, int block, int major, int minor
    [all...]
  /external/icu4c/tools/gencnval/
gencnval.c 147 * path to convrtrs.txt
149 const char *path; variable
245 "\t-d or --destdir destination directory, followed by the path\n"
246 "\t-s or --sourcedir source directory, followed by the path\n",
256 path=argv[1];
258 path=options[SOURCEDIR].value;
259 if(path!=NULL && *path!=0) {
262 uprv_strcpy(pathBuf, path);
268 path=pathBuf
    [all...]
  /external/bluetooth/glib/gio/
glocalfileinfo.c 191 get_selinux_context (const char *path,
205 if (lgetfilecon_raw (path, &context) < 0)
210 if (getfilecon_raw (path, &context) < 0)
231 #define g_setxattr(path,name,value,size) setxattr(path,name,value,size,0,0)
235 #define g_setxattr(path,name,value,size) setxattr(path,name,value,size,0)
239 g_getxattr (const char *path, const char *name, void *value, size_t size,
243 return getxattr (path, name, value, size, 0, follow_symlinks ? 0 : XATTR_NOFOLLOW);
246 return getxattr (path, name, value, size)
    [all...]
  /bionic/libc/unistd/
ftok.c 32 key_t ftok(const char* path, int id)
36 if ( lstat(path, &st) < 0 )
statfs.c 32 int statfs(const char* path, struct statfs* stat)
34 return __statfs64(path, sizeof(struct statfs), stat);
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebIconDatabaseTest.java 86 final File path = new File(mFilePath); local
88 assertNull(path.listFiles());
96 return path.listFiles() != null;
100 assertTrue(path.listFiles().length > 0);
238 File path = new File(mFilePath); local
239 if (path.exists()) {
243 File[] files = path.listFiles();
249 path.delete();
  /dalvik/libcore/archive/src/main/native/
sieb.c 44 void sieb_convertToPlatform(char *path) {
47 pathIndex = path;
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URITest.java 52 URI uri = new URI("http://host:-8096/path/index.html");
85 new URI("","//authority/path", "fragment");
159 uri1 = new URI("http://MixedCaseHost/path/resource");
160 uri2 = new URI("http://mixedcasehost/path/resource");
165 uri1 = new URI("http://anyhost:80/path/resource");
166 uri2 = new URI("http://anyhost/path/resource");
171 uri1 = new URI("http://user-info@anyhost/path/resource");
172 uri2 = new URI("http://anyhost/path/resource");
  /dalvik/libcore/security/src/main/java/java/security/cert/
CertPathBuilderSpi.java 35 * Builds a certification path with the specified algorithm parameters.
43 * if the specified parameters cannot be used to build the path
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/axes/
PathComponent.java 25 * static analysis of a path component.
30 * Get the analysis bits for this path component, as defined in the WalkerFactory.
  /dalvik/vm/mterp/x86/
OP_CONST_CLASS.S 21 /* This is the less common path, so we'll redo some work
22 here rather than force spills on the common path */
OP_CONST_STRING.S 21 /* This is the less common path, so we'll redo some work
22 here rather than force spills on the common path */
OP_CONST_STRING_JUMBO.S 21 /* This is the less common path, so we'll redo some work
22 here rather than force spills on the common path */
  /external/bluetooth/bluez/audio/
Android.mk 35 $(call include-path-for, glib) \
36 $(call include-path-for, dbus)
  /external/bluetooth/bluez/network/
connection.h 26 int connection_register(struct btd_device *device, const char *path,
28 void connection_unregister(const char *path, uint16_t id);
  /external/bluetooth/bluez/src/
dbus-common.h 37 const char *path,
43 const char *path,
  /external/bluetooth/bluez/test/
test-discovery 29 path = manager.DefaultAdapter()
30 adapter = dbus.Interface(bus.get_object("org.bluez", path),
  /external/bluetooth/glib/gio/inotify/
inotify-kernel.h 42 gint32 _ik_watch (const char *path,
45 int _ik_ignore (const char *path,

Completed in 156 milliseconds

<<31323334353637383940>>