HomeSort by relevance Sort by last modified time
    Searched refs:Path (Results 1 - 25 of 532) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/graphics/haiku/
PathHaiku.cpp 29 #include "Path.h"
40 Path::Path()
45 Path::~Path()
50 Path::Path(const Path& other)
55 Path& Path::operator=(const Path& other
    [all...]
  /ndk/sources/host-tools/make-3.81/w32/include/
pathstuff.h 1 /* Definitions for Windows path manipulation.
21 extern char * convert_Path_to_windows32(char *Path, char to_delim);
22 extern char * convert_vpath_to_windows32(char *Path, char to_delim);
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/data/
PathTest.java 28 Path p = Path.fromString("/hello/world");
31 p = Path.fromString("/a");
34 p = Path.fromString("");
40 Path p = Path.fromString("/hello/world");
46 p = Path.fromString("");
52 Path p = Path.fromString("/hello/world");
55 p = Path.fromString("")
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
PathWinCE.cpp 21 #include "Path.h"
32 Path::Path()
37 Path::Path(const Path& other)
42 Path::~Path()
47 Path& Path::operator=(const Path& other
    [all...]
  /external/llvm/include/llvm/Support/
Program.h 17 #include "llvm/Support/Path.h"
27 /// programs from the path and to execute them in various ways. The sys::Path
52 /// invoking program. If Path::executable() does not return true when this
58 ( const Path& path, ///< sys::Path object providing the path of the
67 const sys::Path** redirects = 0, ///< An optional array of pointers to
72 ///< When an empty Path is passed in, the corresponding fil
    [all...]
Signals.h 18 #include "llvm/Support/Path.h"
30 bool RemoveFileOnSignal(const Path &Filename, std::string* ErrMsg = 0);
34 void DontRemoveFileOnSignal(const Path &Filename);
SystemUtils.h 22 namespace sys { class Path; }
33 /// PrependMainExecutablePath - Prepend the path to the program being executed
37 /// just mainpulates the path and doesn't check for executability.
39 sys::Path PrependMainExecutablePath(const std::string &ExeName,
PathV1.h 1 //===- llvm/Support/PathV1.h - Path Operating System Concept ----*- C++ -*-===//
10 // This file declares the llvm::sys::Path class.
63 /// This class provides an abstraction for the path to a file or directory
65 /// on it. Note that this class only represents the name of a path to a file
68 /// extensions and several omissions (not relevant to LLVM). A Path object
69 /// ensures that the path it encapsulates is syntactically valid for the
71 /// any particular file system. That is, a syntactically valid path might
72 /// specify path components that do not exist in the file system and using
73 /// such a Path to act on the file system could produce errors. There is one
74 /// invalid Path value which is permitted: the empty path. The class shoul
626 mutable std::string path; \/\/\/< Storage for the path name. member in class:llvm::sys::Path
    [all...]
  /external/llvm/lib/Support/
SystemUtils.cpp 35 /// PrependMainExecutablePath - Prepend the path to the program being executed
39 /// just mainpulates the path and doesn't check for executability.
41 sys::Path llvm::PrependMainExecutablePath(const std::string &ExeName,
45 // is a relative path to the executable itself.
46 sys::Path Result = sys::Path::GetMainExecutable(Argv0, MainAddr);
51 Result.appendSuffix(sys::Path::GetEXESuffix());
Program.cpp 25 Program::ExecuteAndWait(const Path& path,
28 const Path** redirects,
33 if (prg.Execute(path, args, envp, redirects, memoryLimit, ErrMsg))
34 return prg.Wait(path, secondsToWait, ErrMsg);
40 Program::ExecuteNoWait(const Path& path,
43 const Path** redirects,
47 prg.Execute(path, args, envp, redirects, memoryLimit, ErrMsg);
ToolOutputFile.cpp 22 sys::RemoveFileOnSignal(sys::Path(Filename));
28 sys::Path(Filename).eraseFromDisk();
33 sys::DontRemoveFileOnSignal(sys::Path(Filename));
  /external/skia/src/svg/
SkSVGPath.h 24 DECLARE_SVG_INFO(Path);
  /external/webkit/Source/WebCore/platform/graphics/wx/
PathWx.cpp 27 #include "Path.h"
51 Path::Path()
62 wxGraphicsPath path = renderer->CreatePath(); local
63 m_path = new wxGraphicsPath(path);
68 Path::~Path()
73 Path::Path(const Path& path
134 wxGraphicsPath path = renderer->CreatePath(); local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PathFillTypes.java 38 private Path mPath;
45 mPath = new Path();
46 mPath.addCircle(40, 40, 45, Path.Direction.CCW);
47 mPath.addCircle(80, 80, 45, Path.Direction.CCW);
50 private void showPath(Canvas canvas, int x, int y, Path.FillType ft,
70 showPath(canvas, 0, 0, Path.FillType.WINDING, paint);
71 showPath(canvas, 160, 0, Path.FillType.EVEN_ODD, paint);
72 showPath(canvas, 0, 160, Path.FillType.INVERSE_WINDING, paint);
73 showPath(canvas, 160, 160, Path.FillType.INVERSE_EVEN_ODD, paint);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
Path.java 25 public class Path {
26 private static final String TAG = "Path";
27 private static Path sRoot = new Path(null, "ROOT");
29 private final Path mParent;
32 private IdentityCache<String, Path> mChildren;
34 private Path(Path parent, String segment) {
39 public Path getChild(String segment) {
40 synchronized (Path.class)
    [all...]
TagClustering.java 31 private ArrayList<ArrayList<Path>> mClusters;
41 final TreeMap<String, ArrayList<Path>> map =
42 new TreeMap<String, ArrayList<Path>>();
43 final ArrayList<Path> untagged = new ArrayList<Path>();
47 Path path = item.getPath();
51 untagged.add(path);
56 ArrayList<Path> list = map.get(key);
58 list = new ArrayList<Path>();
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathTest.java 21 import android.graphics.Path;
29 @TestTargetClass(Path.class)
43 method = "Path",
48 method = "Path",
49 args = {android.graphics.Path.class}
53 // new the Path instance
54 new Path();
56 // another the Path instance with different params
57 new Path(new Path());
75 Path path = new Path(); local
98 Path path = new Path(); local
115 Path path = new Path(); local
133 Path path = new Path(); local
161 Path path = new Path(); local
187 Path path = new Path(); local
207 Path path = new Path(); local
242 Path path = new Path(); local
258 Path path = new Path(); local
278 Path path = new Path(); local
298 Path path = new Path(); local
318 Path path = new Path(); local
339 Path path = new Path(); local
355 Path path = new Path(); local
382 Path path = new Path(); local
417 Path path = new Path(); local
435 Path path = new Path(); local
449 Path path = new Path(); local
473 Path path = new Path(); local
489 Path path = new Path(); local
506 Path path = new Path(); local
535 Path path = new Path(); local
557 Path path = new Path(); local
579 Path path = new Path(); local
603 Path path = new Path(); local
625 Path path = new Path(); local
651 Path path = new Path(); local
664 Path path = new Path(); local
699 Path path = new Path(); local
729 Path path = new Path(); local
753 Path path = new Path(); local
773 Path path = new Path(); local
794 Path path = new Path(); local
    [all...]
PathMeasureTest.java 25 import android.graphics.Path;
27 import android.graphics.Path.Direction;
33 private Path mPath;
38 mPath = new Path();
52 args = {android.graphics.Path.class, boolean.class}
59 Path path = new Path(); local
60 mPathMeasure = new PathMeasure(path, true);
63 mPathMeasure = new PathMeasure(path, false)
    [all...]
  /external/clang/lib/Basic/
FileSystemStatCache.cpp 15 #include "llvm/Support/Path.h"
32 /// path, using the cache to accelerate it if possible. This returns true if
33 /// the path does not exist or false if it exists.
40 bool FileSystemStatCache::get(const char *Path, struct stat &StatBuf,
47 R = Cache->getStat(Path, StatBuf, FileDescriptor);
50 R = ::stat(Path, &StatBuf) != 0 ? CacheMissing : CacheExists;
63 *FileDescriptor = ::open(Path, OpenFlags);
84 // If the path doesn't exist, return failure.
87 // If the path exists, make sure that its "directoryness" matches the clients
104 MemorizeStatCalls::getStat(const char *Path, struct stat &StatBuf
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PathList.java 37 public class PathList extends SIPHeaderList<Path> {
42 super(Path.class, PathHeader.NAME);
  /external/webkit/Source/WebCore/platform/graphics/cg/
PathCG.cpp 28 #include "Path.h"
68 Path::Path()
73 Path::~Path()
78 Path::Path(const Path& other)
83 Path& Path::operator=(const Path& other
85 CGMutablePathRef path = CGPathCreateMutableCopy(other.m_path); local
93 CGMutablePathRef path = static_cast<CGMutablePathRef>(info); local
119 CGMutablePathRef path = CGPathCreateMutable(); local
303 CGMutablePathRef path = CGPathCreateMutable(); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
PathSkia.cpp 31 #include "Path.h"
46 Path::Path()
51 Path::Path(const Path& other)
56 Path::~Path()
61 Path& Path::operator=(const Path& other
    [all...]
  /external/llvm/include/llvm/
Linker.h 22 namespace sys { class Path; }
111 /// This method gets the list of libraries that form the path that the
113 /// @brief Get the Linkers library path
114 const std::vector<sys::Path>& getLibPaths() const { return LibPaths; }
130 /// Add a path to the list of paths that the Linker will search. The Linker
135 /// @brief Add a path.
136 void addPath(const sys::Path& path);
157 /// file name with fully qualified path, or a library for which the Linker's
180 const std::vector<sys::Path> & Files ///< Files to link i
    [all...]
  /external/llvm/include/llvm-c/
BitWriter.h 31 /** Writes a module to the specified path. Returns 0 on success. */
32 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path);
  /external/webkit/Source/WebCore/html/
HTMLAreaElement.h 34 class Path;
45 Path computePath(RenderObject*) const;
63 Path getRegion(const IntSize&) const;
65 OwnPtr<Path> m_region;

Completed in 649 milliseconds

1 2 3 4 5 6 7 8 91011>>