HomeSort by relevance Sort by last modified time
    Searched refs:Path (Results 76 - 100 of 528) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/tools/libclang/
CIndexer.cpp 49 // Did we already compute the path?
56 char path[MAX_PATH]; local
59 GetModuleFileNameA((HINSTANCE)mbi.AllocationBase, path, MAX_PATH);
63 strcpy(w32path, path);
65 cygwin_conv_path(CCP_WIN_A_TO_POSIX, w32path, path, MAX_PATH);
67 cygwin_conv_to_full_posix_path(w32path, path);
71 llvm::sys::Path LibClangPath(path);
79 llvm::sys::Path LibClangPath(info.dli_fname);
93 static llvm::sys::Path GetTemporaryPath()
    [all...]
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/
Path.h 104 class Path {
107 Path();
108 ~Path();
110 Path(const Path&);
111 Path& operator=(const Path&);
124 // Gets the current point of the current path, which is conceptually the final point reached by the path so far.
125 // Note the Path can be empty (isEmpty() == true) and still have a current point
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
SizeClustering.java 30 private ArrayList<Path>[] mClusters;
53 final ArrayList<Path>[] group =
54 (ArrayList<Path>[]) new ArrayList[SIZE_LEVELS.length];
66 ArrayList<Path> list = group[i];
68 list = new ArrayList<Path>();
82 mClusters = (ArrayList<Path>[]) new ArrayList[count];
126 public ArrayList<Path> getCluster(int index) {
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;
125 final HashSet<Path> existing = new HashSet<Path>();
137 ArrayList<Path> oldPaths = mAlbums.get(i).getMediaItems();
138 ArrayList<Path> newPaths = new ArrayList<Path>();
141 Path p = oldPaths.get(j)
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderDetailsMarker.cpp 45 static Path createPath(const FloatPoint* path)
47 Path result;
48 result.moveTo(FloatPoint(path[0].x(), path[0].y()));
50 result.addLineTo(FloatPoint(path[i].x(), path[i].y()));
54 static Path createDownArrowPath()
60 static Path createUpArrowPath()
66 static Path createLeftArrowPath(
    [all...]
  /cts/tests/tests/gesture/src/android/gesture/cts/
GestureStrokeTest.java 23 import android.graphics.Path;
46 // null path currently returned
55 Path emptyPath = emptyStroke.getPath();
56 // expect an empty path
65 Path linePath = lineStroke.getPath();
71 * for a single line, where the given toPath bounds exceeds the expected path.
76 // bound the path by the endpoint
77 Path linePath = lineStroke.toPath(LineGestureStrokeHelper.LINE_END_POINT,
88 * truncates the expected path.
93 // bound the path by the midpoin
    [all...]
  /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...]
  /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) {
38 StatCalls[Path] = statBuf;
43 void InjectFile(const char *Path, ino_t INode) {
44 InjectFileOrDirectory(Path, INode, /*IsFile=*/true);
48 void InjectDirectory(const char *Path, ino_t INode) {
49 InjectFileOrDirectory(Path, INode, /*IsFile=*/false);
53 virtual LookupResult getStat(const char *Path, struct stat &StatBuf,
55 if (StatCalls.count(Path) != 0) {
56 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/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/
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...]

Completed in 496 milliseconds

1 2 34 5 6 7 8 91011>>