HomeSort by relevance Sort by last modified time
    Searched refs:Path (Results 201 - 225 of 531) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/llvm/include/llvm/Support/
FileSystem.h 12 // path class.
108 /// @brief Make \a path an absolute path.
110 /// Makes \a path absolute using the current directory if it is not already. An
111 /// empty \a path will result in the current directory.
113 /// /absolute/path => /absolute/path
114 /// relative/../path => <current-directory>/relative/../path
116 /// @param path A path that is modified to be an absolute path
471 const std::string &path() const { return Path; } function in class:llvm::sys::fs::directory_entry
    [all...]
  /external/llvm/lib/Support/
CMakeLists.txt 68 Path.cpp
84 Unix/Path.inc
97 Windows/Path.inc
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
BatteryHistoryChart.java 26 import android.graphics.Path;
124 final Path mBatLevelPath = new Path();
125 final Path mBatGoodPath = new Path();
126 final Path mBatWarnPath = new Path();
127 final Path mBatCriticalPath = new Path();
128 final Path mChargingPath = new Path()
534 Path path; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
MenuExecutor.java 36 import com.android.gallery3d.data.Path;
169 private Path getSingleSelectedPath() {
170 ArrayList<Path> ids = mSelectionManager.getSelected(true);
188 Path path = getSingleSelectedPath(); local
189 String mimeType = getMimeType(manager.getMediaType(path));
191 .setDataAndType(manager.getContentUri(path), mimeType);
196 Path path = getSingleSelectedPath(); local
197 int type = manager.getMediaType(path);
    [all...]
ManageCacheDrawer.java 21 import com.android.gallery3d.data.Path;
59 int height, int rotation, Path path,
63 boolean selected = mSelectionManager.isItemSelected(path);
92 drawCachingPin(canvas, path, dataSourceType, isCaching, chooseToCache,
95 if (mSelectionManager.isPressedPath(path)) {
100 private void drawCachingPin(GLCanvas canvas, Path path, int dataSourceType,
  /sdk/anttasks/src/com/android/ant/
NewSetupTask.java 35 import org.apache.tools.ant.types.Path;
36 import org.apache.tools.ant.types.Path.PathElement;
65 * <li>Resolve library dependencies and setup various Path references for them</li>
192 // Make sure the OS sdk path ends with a directory separator
297 Path includePath = new Path(antProject);
311 // create the Path object
312 Path bootclasspath = new Path(antProject);
333 // sets the path in the project with a referenc
    [all...]
  /packages/apps/Settings/src/com/android/settings/widget/
ChartNetworkSeriesView.java 29 import android.graphics.Path;
57 private Path mPathStroke;
58 private Path mPathFill;
59 private Path mPathEstimate;
100 mPathStroke = new Path();
101 mPathFill = new Path();
102 mPathEstimate = new Path();
163 * Erase any existing {@link Path} and generate series outline based on
305 // haven't generated path yet; fall back to raw data
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 35 #include "llvm/Support/Path.h"
52 createHTMLDiagnosticConsumer(llvm::sys::path::parent_path(prefix), PP);
302 // Path-sensitive checking.
378 llvm::sys::Path Dir, Filename;
385 UbigraphViz(raw_ostream *out, llvm::sys::Path& dir,
386 llvm::sys::Path& filename);
398 llvm::sys::Path Dir = llvm::sys::Path::GetTemporaryDirectory(&ErrMsg);
402 llvm::sys::Path Filename = Dir;
454 UbigraphViz::UbigraphViz(raw_ostream *out, llvm::sys::Path& dir
    [all...]
  /external/clang/lib/Driver/
Compilation.cpp 111 llvm::sys::Path P(*it);
123 // llvm::sys::Path, we want to know if the removal gave ENOENT.
142 llvm::sys::Path Prog(C.getExecutable());
225 Redirects = new const llvm::sys::Path*[3]();
226 Redirects[1] = new const llvm::sys::Path();
227 Redirects[2] = new const llvm::sys::Path();
  /external/webkit/Source/WebCore/svg/
SVGAnimateMotionElement.cpp 94 m_path = Path();
113 Path SVGAnimateMotionElement::animationPath() const
119 Path path; local
121 pathElement->toPathData(path);
122 return path;
127 return Path();
199 Path path = animationPath(); local
200 float positionOnPath = path.length() * percentage
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Region.java 99 * Set the region to the area described by the path and clip.
101 * that is identical to the pixels that would be drawn by the path
104 public boolean setPath(Path path, Region clip) {
105 return nativeSetPath(mNativeRegion, path.ni(), clip.mNativeRegion);
145 * Return the boundary of the region as a new Path. If the region is empty,
146 * the path will also be empty.
148 public Path getBoundaryPath() {
149 Path path = new Path() local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalVideo.java 43 static final Path ITEM_PATH = Path.fromString("/local/video/item");
80 public LocalVideo(Path path, GalleryApp application, Cursor cursor) {
81 super(path, nextVersionNumber());
86 public LocalVideo(Path path, GalleryApp context, int id) {
87 super(path, nextVersionNumber());
93 throw new RuntimeException("cannot get cursor for: " + path);
99 throw new RuntimeException("cannot find data for: " + path);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/
RotateView.java 23 import android.graphics.Path;
52 private final Path grids = new Path();
53 private final Path referenceLine = new Path();
DoodleView.java 24 import android.graphics.Path;
48 private final Path drawingPath = new Path();
  /packages/apps/Settings/src/com/android/settings/applications/
LinearColorBar.java 10 import android.graphics.Path;
34 final Path mColorPath = new Path();
35 final Path mEdgePath = new Path();
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TextAlign.java 37 private Path mPath;
45 private static final String TEXTONPATH = "Along a path";
47 private static void makePath(Path p) {
78 mPath = new Path();
135 // now draw the text on path
  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 139 const std::string &Path = Clang->getFrontendOpts().Plugins[i];
141 if (llvm::sys::DynamicLibrary::LoadLibraryPermanently(Path.c_str(), &Error))
143 << Path << Error;
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 479 llvm::SmallVector<char, 8> Path; // actually of DifferenceEngine::DiffChange
510 Cur[I].Path.push_back(DC_left);
517 Next[0].Path.push_back(DC_right);
524 Next[Index].Path.push_back(DC_match);
529 Next[Index].Path.push_back(DC_left);
533 Next[Index].Path.push_back(DC_right);
544 SmallVectorImpl<char> &Path = Cur[NL].Path;
550 while (Path.back() == DC_match)
551 Path.pop_back()
    [all...]
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLSquareRoot.cpp 36 #include "Path.h"
125 Path root;
142 Path mask;
155 Path line;
  /external/webkit/Source/WebKit2/UIProcess/
FindIndicator.cpp 33 #include <WebCore/Path.h>
137 static Path pathWithRoundedRect(const FloatRect& pathRect, float radius)
139 Path path; local
140 path.addRoundedRect(pathRect, FloatSize(radius, radius));
142 return path;
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
WidgetService.java 24 import com.android.gallery3d.data.Path;
39 public static final String EXTRA_ALBUM_PATH = "album-path";
99 Path path = Path.fromString(mAlbumPath); local
101 MediaSet mediaSet = (MediaSet) manager.getMediaObject(path);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/io/
IFolderWrapper.java 29 import org.eclipse.core.runtime.Path;
113 IFile file = mContainer.getFile(new Path(name));
149 IFolder folder = mContainer.getFolder(new Path(name));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/templates/
SetFolders.java 34 import org.eclipse.core.runtime.Path;
86 IFolder folder = project.getFolder(new Path(sourceFolder));
93 IFolder folder = project.getFolder(new Path(outputFolder));
SimpleFile.java 34 import org.eclipse.core.runtime.Path;
91 IFile destFile = project.getFile(new Path(op.destination));
99 URL sourceURL = FileLocator.find(bundle, new Path(op.source), null);
  /development/samples/GlobalTime/src/com/android/globaltime/
Clock.java 25 import android.graphics.Path;
58 * Adds a line to the given Path. The line extends from
62 * @param path the Path to draw to
70 private static void drawLine(Path path,
87 path.moveTo(p0x - ox, p0y - oy);
88 path.lineTo(p1x - ox, p1y - oy);
89 path.lineTo(p1x + ox, p1y + oy);
90 path.lineTo(p0x + ox, p0y + oy)
    [all...]

Completed in 1188 milliseconds

1 2 3 4 5 6 7 891011>>