HomeSort by relevance Sort by last modified time
    Searched refs:Path (Results 126 - 150 of 897) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/data/
FilterTypeSet.java 29 private final ArrayList<Path> mPaths = new ArrayList<Path>();
32 public FilterTypeSet(Path path, DataManager dataManager, MediaSet baseSet,
34 super(path, INVALID_DATA_VERSION);
100 final Path[] buf = new Path[total];
107 Path path = item.getPath();
108 buf[index] = path;
    [all...]
ClusterAlbumSet.java 36 public ClusterAlbumSet(Path path, GalleryApp application,
38 super(path, INVALID_DATA_VERSION);
105 Path childPath;
131 final HashSet<Path> existing = new HashSet<Path>();
144 ArrayList<Path> oldPaths = mAlbums.get(i).getMediaItems();
145 ArrayList<Path> newPaths = new ArrayList<Path>();
148 Path p = oldPaths.get(j)
    [all...]
SecureSource.java 37 public static boolean isSecurePath(String path) {
38 return (SECURE_ALBUM == mMatcher.match(Path.fromString(path)));
42 public MediaObject createMediaObject(Path path) {
43 switch (mMatcher.match(path)) {
48 return new SecureAlbum(path, mApplication, unlock);
51 return new UnlockImage(path, mApplication);
53 throw new RuntimeException("bad path: " + path);
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
Path_FillTypeTest.java 19 import android.graphics.Path;
20 import android.graphics.Path.FillType;
SumPathEffectTest.java 26 import android.graphics.Path;
30 import android.graphics.Path.Direction;
45 Path path = new Path(); local
46 path.addRect(10, 10, WIDTH - 10, HEIGHT - 10, Direction.CW);
55 canvas.drawPath(path, paint);
59 canvas.drawPath(path, paint);
64 canvas.drawPath(path, paint);
  /development/libraries/stereocamera/
source.properties 8 Extra.Path=stereocamera
  /external/chromium_org/build/android/gyp/
strip_library_for_device.py 28 help='Path to the toolchain\'s strip binary')
36 help='Path to json file containing list of libraries')
37 parser.add_option('--stamp', help='Path to touch on success')
48 library_path = os.path.join(options.libraries_dir, library)
49 stripped_library_path = os.path.join(
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasPathMethods.h 32 #include "platform/graphics/Path.h"
57 CanvasPathMethods(const Path& path) : m_path(path) { }
58 Path m_path;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResource.h 49 class Path;
63 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short, const Path*, const RenderSVGShape*) { }
RenderSVGPath.h 49 Path* zeroLengthLinecapPath(const FloatPoint&) const;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimateMotionElement.h 25 #include "platform/graphics/Path.h"
70 Path m_path;
71 Path m_animationPath;
  /external/chromium_org/ui/aura/
window_delegate.h 17 class Path;
101 virtual void GetHitTestMask(gfx::Path* mask) const = 0;
  /frameworks/base/core/java/android/view/animation/
PathInterpolator.java 22 import android.graphics.Path;
30 * An interpolator that can traverse a Path that extends from <code>Point</code>
31 * <code>(0, 0)</code> to <code>(1, 1)</code>. The x coordinate along the <code>Path</code>
33 * This means that the Path must conform to a function <code>y = f(x)</code>.
35 * <p>The <code>Path</code> must not have gaps in the x direction and must not
39 * Path path = new Path();
40 * path.lineTo(0.25f, 0.25f);
41 * path.moveTo(0.25f, 0.5f)
110 Path path = PathParser.createPathFromPathData(pathData); local
144 Path path = new Path(); local
151 Path path = new Path(); local
    [all...]
  /frameworks/compile/mclinker/lib/Core/
LinkerScript.cpp 24 const mcld::sys::fs::Path& LinkerScript::sysroot() const
29 void LinkerScript::setSysroot(const mcld::sys::fs::Path &pSysroot)
  /frameworks/compile/mclinker/lib/Support/
Directory.cpp 27 const Path dot_path(".");
28 const Path dot_dot_path("..");
44 Directory::Directory(const Path& pPath,
85 void Directory::assign(const Path& pPath,
170 Path* DirIterator::path() function in class:DirIterator
177 const Path* DirIterator::path() const function in class:DirIterator
243 const Path* x_path = path();
    [all...]
  /cts/tests/tests/gesture/src/android/gesture/cts/
GestureTest.java 20 import android.graphics.Path;
81 // assert path is same as bounding box for individual gesture
86 * Test method for {@link android.gesture.Gesture#toPath(android.graphics.Path)}.
90 // assert path is valid when null argument is passed in
92 Path myPath = new Path();
93 Path generatedPath = mGesture.toPath(myPath);
94 // check that provided path argument was used in construction
99 // TODO: check scenario where provided Path already has data
  /external/chromium_org/content/common/
cookie_data.cc 22 path(c.Path()),
  /external/chromium_org/third_party/skia/src/animator/
SkDrawClip.cpp 20 SK_MEMBER(path, Path),
28 SkDrawClip::SkDrawClip() : rect(NULL), path(NULL) {
35 SkASSERT(path != NULL);
36 maker.fCanvas->clipPath(path->fPath);
  /external/chromium_org/ui/gfx/
path_win.cc 10 #include "ui/gfx/path.h"
27 HRGN CreateHRGNFromSkPath(const SkPath& path) {
28 int point_count = path.getPoints(NULL, 0);
30 path.getPoints(points.get(), point_count);
43 NativeRegion Path::CreateNativeRegion() const {
48 NativeRegion Path::IntersectRegions(NativeRegion r1, NativeRegion r2) {
55 NativeRegion Path::CombineRegions(NativeRegion r1, NativeRegion r2) {
62 NativeRegion Path::SubtractRegion(NativeRegion r1, NativeRegion r2) {
  /external/clang/include/clang/Lex/
HeaderSearchOptions.h 25 /// path starts at the -iquote group, then searches the Angled group, then
48 std::string Path;
52 /// IgnoreSysRoot - This is false if an absolute path should be treated
54 /// path.
57 Entry(StringRef path, frontend::IncludeDirGroup group, bool isFramework,
59 : Path(path), Group(group), IsFramework(isFramework),
173 /// AddPath - Add the \p Path path to the specified \p Group list.
174 void AddPath(StringRef Path, frontend::IncludeDirGroup Group
    [all...]
  /external/skia/src/animator/
SkDrawClip.cpp 20 SK_MEMBER(path, Path),
28 SkDrawClip::SkDrawClip() : rect(NULL), path(NULL) {
35 SkASSERT(path != NULL);
36 maker.fCanvas->clipPath(path->fPath);
  /frameworks/base/graphics/java/android/graphics/
PathDashPathEffect.java 33 * Dash the drawn path by stamping it with the specified shape. This only
37 * @param shape The path to stamp along
42 public PathDashPathEffect(Path shape, float advance, float phase,
PathMeasure.java 20 private Path mPath;
24 * of a path, and/or to find the position and tangent along it, call
27 * Note that once a path is associated with the measure object, it is
28 * undefined if the path is subsequently modified and the the measure object
29 * is used. If the path is modified, you must call setPath with the path.
37 * Create a PathMeasure object associated with the specified path object
39 * path's length, and the position and tangent of any position along the
40 * path.
42 * Note that once a path is associated with the measure object, it i
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ClipRegionActivity.java 24 import android.graphics.Path;
59 private final Path mClipPath = new Path();
83 getWidth() / 4.0f, Path.Direction.CW);
  /frameworks/compile/mclinker/include/mcld/Support/
CommandLine.h 61 // parser<mcld::sys::fs::Path>
64 class parser<mcld::sys::fs::Path> : public basic_parser<mcld::sys::fs::Path>
70 mcld::sys::fs::Path &Val);
72 virtual const char *getValueName() const { return "path"; }
74 const mcld::sys::fs::Path &V,

Completed in 2080 milliseconds

1 2 3 4 56 7 8 91011>>