/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
StripDrawer.java | 20 import com.android.gallery3d.data.Path; 29 private Path mPressedPath; 37 public void setPressedPath(Path path) { 38 mPressedPath = path; 41 private boolean isPressedPath(Path path) { 42 return path != null && path == mPressedPath; 51 int width, int height, int rotation, Path path [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
DataManager.java | 46 // path. And it's used to identify a specific media set even if the process is 67 // This is the path for the media set seen by the user at top level. 144 public MediaObject peekMediaObject(Path path) { 145 return path.getObject(); 148 public MediaSet peekMediaSet(Path path) { 149 return (MediaSet) path.getObject(); 152 public MediaObject getMediaObject(Path path) { 204 Path path = list.get(i); local 254 Path path = source.findPathByUri(uri); local [all...] |
FilterSet.java | 31 private final ArrayList<Path> mPaths = new ArrayList<Path>(); 34 public FilterSet(Path path, DataManager dataManager, MediaSet baseSet, 36 super(path, INVALID_DATA_VERSION); 102 final Path[] buf = new Path[total]; 108 Path path = item.getPath(); 109 buf[index] = path; [all...] |
ClusterAlbumSet.java | 35 public ClusterAlbumSet(Path path, GalleryApp application, 37 super(path, INVALID_DATA_VERSION); 103 Path childPath; 126 final HashSet<Path> existing = new HashSet<Path>(); 138 ArrayList<Path> oldPaths = mAlbums.get(i).getMediaItems(); 139 ArrayList<Path> newPaths = new ArrayList<Path>(); 142 Path p = oldPaths.get(j) [all...] |
/external/clang/unittests/Basic/ |
FileManagerTest.cpp | 26 // Maps a file/directory path to its desired stat result. Anything 30 void InjectFileOrDirectory(const char *Path, ino_t INode, bool IsFile) { 39 StatCalls[Path] = statBuf; 44 void InjectFile(const char *Path, ino_t INode) { 45 InjectFileOrDirectory(Path, INode, /*IsFile=*/true); 49 void InjectDirectory(const char *Path, ino_t INode) { 50 InjectFileOrDirectory(Path, INode, /*IsFile=*/false); 54 virtual LookupResult getStat(const char *Path, struct stat &StatBuf, 56 if (StatCalls.count(Path) != 0) { 57 StatBuf = StatCalls[Path]; [all...] |
/external/chromium/chrome/browser/ui/views/ |
dropdown_bar_host.cc | 14 #include "ui/gfx/path.h" 36 using gfx::Path; 213 const Path::Point polygon[] = { 228 Path path(polygon, arraysize(polygon)); 229 ScopedPlatformRegion region(path.CreateNativeRegion()); 243 Path animation_path; 249 region.Set(Path::IntersectRegions(animation_region.Get(), region.Get())); 254 Path::Point left_curve[] = { 257 Path::Point right_curve[] = [all...] |
/packages/apps/Settings/src/com/android/settings/widget/ |
PieChartView.java | 26 import android.graphics.Path; 27 import android.graphics.Path.Direction; 55 private Path mPathSide = new Path(); 56 private Path mPathSideOutline = new Path(); 58 private Path mPathOutline = new Path(); 65 public Path path = new Path() field in class:PieChartView.Slice [all...] |
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
GLES2Canvas.h | 52 class Path; 61 void fillPath(const Path&); 77 void clipPath(const Path&); 78 void clipOut(const Path&); 110 void tesselateAndFillPath(const Path&, const Color&); 111 void fillPathInternal(const Path&, const Color&); 132 // Members for GPU-accelerated path rendering.
|
/external/llvm/tools/bugpoint/ |
ToolRunner.cpp | 56 static int RunProgramWithTimeout(const sys::Path &ProgramPath, 58 const sys::Path &StdInFile, 59 const sys::Path &StdOutFile, 60 const sys::Path &StdErrFile, 64 const sys::Path* redirects[3]; 89 static int RunProgramRemotelyWithTimeout(const sys::Path &RemoteClientPath, 91 const sys::Path &StdInFile, 92 const sys::Path &StdOutFile, 93 const sys::Path &StdErrFile, 96 const sys::Path* redirects[3] [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
FilterUtils.java | 21 import com.android.gallery3d.data.Path; 41 // newPath operation: create a new path based on a source path and put an extra 52 // For all fixed set in the path defined above, if some clusterType and 79 public static void setupMenuItems(GalleryActionBar model, Path path, boolean inAlbum) { 81 getAppliedFilters(path, result); 116 // Gets the filters applied in the path. 117 private static void getAppliedFilters(Path path, int[] result) [all...] |
/development/libraries/stereocamera/ |
source.properties | 8 Extra.Path=stereocamera
|
/external/clang/tools/libclang/ |
CIndexer.h | 20 #include "llvm/Support/Path.h" 31 llvm::sys::Path ResourcesPath; 48 /// \brief Get the path of the clang resource files. 65 std::vector<llvm::sys::Path> &TemporaryFiles);
|
/external/webkit/Source/WebCore/platform/graphics/cairo/ |
CairoUtilities.h | 38 class Path; 44 void appendWebCorePathToCairoContext(cairo_t* context, const Path& path);
|
/external/webkit/Source/WebCore/platform/haiku/ |
FileSystemHaiku.cpp | 40 #include <Path.h> 52 BPath path; local 53 if (find_directory(B_USER_DIRECTORY, &path) != B_OK) 56 return String(path.Path()); 83 Vector<String> listDirectory(const String& path, const String& filter) 86 BDirectory directory(path.utf8().data());
|
/external/webkit/Source/WebCore/rendering/svg/ |
RenderSVGResource.h | 50 class Path; 64 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short, const Path*) { }
|
SVGMarkerLayoutInfo.h | 31 class Path; 52 FloatRect calculateBoundaries(RenderSVGResourceMarker* startMarker, RenderSVGResourceMarker* midMarker, RenderSVGResourceMarker* endMarker, float strokeWidth, const Path&);
|
/external/webkit/Source/WebCore/svg/ |
SVGAnimateMotionElement.h | 25 #include "Path.h" 47 virtual Path animationPath() const; 67 Path m_path;
|
SVGPathBuilder.h | 29 #include "Path.h" 38 void setCurrentPath(Path* path) { m_path = path; } 59 Path* m_path;
|
/external/webkit/Tools/Scripts/ |
update-webkit-chromium | 31 use File::Path;
|
/sdk/anttasks/src/com/android/ant/ |
BuildConfigTask.java | 22 import org.apache.tools.ant.types.Path; 31 public void setGenFolder(Path path) { 32 mGenFolder = TaskHelper.checkSinglePath("genFolder", path);
|
DexExecTask.java | 22 import org.apache.tools.ant.types.Path; 39 private List<Path> mPathInputs; 47 public void setExecutable(Path executable) { 63 public void setOutput(Path output) { 76 * Returns an object representing a nested <var>path</var> element. 80 mPathInputs = new ArrayList<Path>(); 83 Path path = new Path(getProject()); local 84 mPathInputs.add(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/llvm/include/llvm/Support/ |
Process.h | 142 /// Change the program working directory to that given by \arg Path. 143 static void SetWorkingDirectory(std::string Path);
|
/external/skia/src/animator/ |
SkDrawClip.cpp | 28 SK_MEMBER(path, Path), 36 SkDrawClip::SkDrawClip() : rect(NULL), path(NULL) { 43 SkASSERT(path != NULL); 44 maker.fCanvas->clipPath(path->fPath);
|
/external/webkit/Source/JavaScriptCore/wtf/url/src/ |
URLSegments.h | 48 Path, 85 // Path: 13 13 98 URLComponent path; member in class:WTF::URLSegments
|