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

1 2 3 4 56 7 8 91011>>

  /external/clang/include/clang/Basic/
FileManager.h 36 namespace sys { class Path; }
152 bool getStatValue(const char *Path, struct stat &StatBuf,
155 /// Add all ancestors of the given path (pointing to either a file
157 void addAncestorsAsVirtualDirs(StringRef Path);
213 // getNoncachedStatValue - Will get the 'stat' information for the given path.
214 // If the path is relative, it will be resolved against the WorkingDir of the
216 bool getNoncachedStatValue(StringRef Path, struct stat &StatBuf);
218 /// \brief If path is not absolute and FileSystemOptions set the working
219 /// directory, the path is modified to be relative to the given
221 void FixupRelativePath(SmallVectorImpl<char> &path) const
    [all...]
  /external/clang/lib/Rewrite/
FrontendActions.cpp 23 #include "llvm/Support/Path.h"
61 llvm::SmallString<128> Path(Filename);
62 llvm::sys::path::replace_extension(Path,
63 NewSuffix + llvm::sys::path::extension(Path));
64 return Path.str();
  /external/emma/ant/ant14/com/vladium/emma/report/
reportTask.java 12 import org.apache.tools.ant.types.Path;
58 final Path srcpath = m_reportCfg.getSourcepath ();
85 public void setSourcepath (final Path path)
87 m_reportCfg.setSourcepath (path);
95 public Path createSourcepath ()
  /external/llvm/include/llvm/Bitcode/
Archive.h 22 #include "llvm/Support/Path.h"
55 HasPathFlag = 64, ///< Member has a full or partial path
68 /// @returns the path to the Archive's file
69 /// @brief Get the path to the archive member
70 const sys::Path& getPath() const { return path; }
137 /// @returns true iff the file name contains a path (directory) component.
138 /// @brief Determine if the member has a path
142 /// up to sixteen characters in its header and doesn't allow a path
152 /// modification time. The contents of the Path::StatusInfo structure, othe
172 sys::PathWithStatus path; \/\/\/< Path of file containing the member member in class:llvm::ArchiveMember
    [all...]
  /external/llvm/include/llvm/Object/
Binary.h 62 error_code createBinary(StringRef Path, OwningPtr<Binary> &Result);
  /external/llvm/tools/bugpoint/
ToolRunner.h 24 #include "llvm/Support/Path.h"
40 sys::Path GCCPath; // The path to the gcc executable.
41 sys::Path RemoteClientPath; // The path to the rsh / ssh executable.
43 GCC(const sys::Path &gccPath, const sys::Path &RemotePath,
128 sys::Path &OutFile, std::string &Error,
157 sys::Path LLCPath; // The path to the `llc' executable
    [all...]
OptimizerDriver.cpp 29 #include "llvm/Support/Path.h"
114 sys::Path uniqueFilename(OutputPrefix + "-output.bc");
124 sys::Path inputFilename(OutputPrefix + "-input.bc");
148 sys::Path tool = PrependMainExecutablePath("opt", getToolName(),
195 sys::Path prog;
202 sys::Path Nowhere;
203 const sys::Path *Redirects[3] = {0, &Nowhere, &Nowhere};
212 sys::Path(OutputFilename).eraseFromDisk();
263 sys::Path(BitcodeResult).eraseFromDisk(); // No longer need the file on disk
  /external/proguard/src/proguard/ant/
ClassPathElement.java 31 * This FileSet represents a class path entry (or a set of class path entries)
36 public class ClassPathElement extends Path
46 * @see Path#Path(Project)
55 * Adds the contents of this class path element to the given class path.
56 * @param classPath the class path to be extended.
66 // Get the referenced path or file set.
70 if (referencedObject instanceof Path)
72 Path path = (Path)referencedObject; local
    [all...]
  /external/skia/src/animator/
SkTextOnPath.cpp 29 SK_MEMBER(path, Path),
37 SkTextOnPath::SkTextOnPath() : offset(0), path(NULL), text(NULL) {
42 SkASSERT(path);
45 path->getPath(), offset, 0, *maker.fPaint);
  /external/skia/src/svg/
SkSVGPath.cpp 25 DEFINE_SVG_INFO(Path)
28 parser._startElement("path");
  /external/webkit/Source/WebCore/platform/graphics/
PathTraversalState.h 34 class Path;
  /external/webkit/Source/WebCore/svg/
SVGCircleElement.h 53 virtual void toPathData(Path&) const;
SVGEllipseElement.h 52 virtual void toPathData(Path&) const;
SVGLineElement.h 52 virtual void toPathData(Path&) const;
SVGPolygonElement.cpp 26 #include "Path.h"
40 void SVGPolygonElement::toPathData(Path& path) const
42 ASSERT(path.isEmpty());
48 path.moveTo(points.first());
52 path.addLineTo(points.at(i));
54 path.closeSubpath();
SVGPolylineElement.cpp 26 #include "Path.h"
40 void SVGPolylineElement::toPathData(Path& path) const
42 ASSERT(path.isEmpty());
48 path.moveTo(points.first());
52 path.addLineTo(points.at(i));
SVGRectElement.h 52 virtual void toPathData(Path&) const;
  /frameworks/base/core/java/android/text/style/
BulletSpan.java 21 import android.graphics.Path;
22 import android.graphics.Path.Direction;
35 private static Path sBulletPath = null;
97 sBulletPath = new Path();
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/
Doodle.java 22 import android.graphics.Path;
31 * Doodle that consists of a color and doodling path for drawing.
36 private final Path normalizedPath = new Path();
58 * Adds control points whose coordinates range from 0 to 1 to construct the doodle path.
60 * @return true if the constructed path is in (0, 0, 1, 1) bounds; otherwise, false.
81 * Gets the drawing path from the normalized doodle path.
83 public void getDrawingPath(Matrix matrix, Path path) {
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/data/
MockItem.java 25 public MockItem(Path path) {
26 super(path, nextVersionNumber());
MockSource.java 37 public MediaObject createMediaObject(Path path) {
39 switch (mMatcher.match(path)) {
41 return new MockSet(path, mApplication.getDataManager());
43 return new MockItem(path);
45 throw new RuntimeException("bad path: " + path);
  /frameworks/base/core/java/android/gesture/
Gesture.java 22 import android.graphics.Path;
125 public Path toPath() {
129 public Path toPath(Path path) {
130 if (path == null) path = new Path();
136 path.addPath(strokes.get(i).getPath());
139 return path;
204 Path path = strokes.get(i).toPath(width - 2 * edge, height - 2 * edge, numSample); local
234 final Path path = toPath(); local
    [all...]
  /cts/tests/tests/gesture/src/android/gesture/cts/
LineGestureStrokeHelper.java 20 import android.graphics.Path;
54 * Helper method to assert expected values for a path derived from createLineGesture
59 void assertLineBoundingBox(Path linePath) {
  /external/chromium/chrome/browser/chromeos/frame/
bubble_frame_view.h 15 class Path;
41 virtual void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask)
  /external/qemu/distrib/sdl-1.2.12/src/main/beos/
SDL_BeApp.cc 27 #include <storage/Path.h>
68 BPath path; local
69 if (B_OK == path.SetTo(&entry)) {
70 if (B_OK == path.GetParent(&path)) {
71 chdir(path.Path());

Completed in 663 milliseconds

1 2 3 4 56 7 8 91011>>