HomeSort by relevance Sort by last modified time
    Searched refs:Path (Results 251 - 275 of 909) sorted by null

<<11121314151617181920>>

  /external/chromium_org/ui/views/window/
non_client_view.h 12 class Path;
78 gfx::Path* window_mask) = 0;
183 void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask);
native_frame_view.h 27 gfx::Path* window_mask) OVERRIDE;
  /external/fonttools/Lib/fontTools/pens/
reportLabPen.py 4 from reportlab.graphics.shapes import Path
9 """A pen for drawing onto a reportlab.graphics.shapes.Path object."""
11 def __init__(self, glyphSet, path=None):
13 if path is None:
14 path = Path()
15 self.path = path
19 self.path.moveTo(x,y)
23 self.path.lineTo(x,y
47 path = sys.argv[1] variable
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ClearActivity.java 25 import android.graphics.Path;
43 private final Path mPath;
58 mPath = new Path();
ScaledPathsActivity.java 23 import android.graphics.Path;
39 private final Path mPath;
51 mPath = new Path();
ViewLayersActivity5.java 24 import android.graphics.Path;
52 private final Path mClipPath = new Path();
77 Math.min(getWidth(), getHeight()) / 3.0f, Path.Direction.CW);
  /external/llvm/lib/CodeGen/
Analysis.cpp 317 /// Return true if this scalar return value only has bits discarded on its path
379 /// represented is SubTypes.back()->getTypeAtIndex(Path.back() - 1).
381 /// @param Path Set of extractvalue indices leading from the outermost type
386 /// false. SubTypes.back()->getTypeAtIndex(Path.back()) is either an empty
389 SmallVectorImpl<unsigned> &Path) {
391 // coordinates in Path.
392 while (!Path.empty() && !indexReallyValid(SubTypes.back(), Path.back() + 1)) {
393 Path.pop_back();
398 if (Path.empty()
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
PhotoDataAdapter.java 31 import com.android.gallery3d.data.Path;
118 // The ImageCache is a Path-to-ImageEntry map. It only holds the
123 private HashMap<Path, ImageEntry> mImageCache =
124 new HashMap<Path, ImageEntry>();
136 // mPaths keeps the corresponding Path (of MediaItem) for the images. This
138 private final Path mPaths[] = new Path[IMAGE_CACHE_SIZE];
149 private Path mItemPath;
156 private Path mFocusHintPath = null;
159 public void onPhotoChanged(int index, Path item)
813 Path path = item.getPath(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
JSystem.cs 77 return System.IO.Path.GetTempPath();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
JSystem.cs 76 return System.IO.Path.GetTempPath();
  /external/chromium_org/athena/main/
athena_frame_view.h 32 gfx::Path* window_mask) OVERRIDE {}
  /external/chromium_org/chrome/browser/ui/views/apps/
glass_app_window_frame_view_win.h 33 gfx::Path* window_mask) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderEmbeddedObject.h 61 bool getReplacementTextGeometry(const LayoutPoint& accumulatedOffset, FloatRect& contentRect, Path&, FloatRect& replacementTextRect, Font&, TextRun&, float& textWidth) const;
  /external/chromium_org/third_party/skia/src/animator/
SkTextToPath.cpp 21 SK_MEMBER(path, Path),
29 SkTextToPath::SkTextToPath() : paint(NULL), path(NULL), text(NULL) {
33 path->draw(maker);
38 if (paint == NULL || path == NULL || text == NULL) {
46 text->y, &path->getPath());
  /external/chromium_org/ui/gfx/
gdi_util.h 13 #include "ui/gfx/path.h"
40 GFX_EXPORT HRGN ConvertPathToHRGN(const gfx::Path& path);
  /external/chromium_org/ui/wm/core/
masked_window_targeter.cc 8 #include "ui/gfx/path.h"
23 gfx::Path mask;
  /external/clang/include/clang/Lex/
ModuleLoader.h 82 /// \param Path The identifiers (and their locations) of the module
83 /// "path", e.g., "std.vector" would be split into "std" and "vector".
95 ModuleIdPath Path,
  /external/llvm/include/llvm/Support/
FileOutputBuffer.h 39 /// to the file at the specified path.
59 /// Returns path where file will show up if buffer is committed.
81 StringRef Path, StringRef TempPath);
FileSystem.h 12 // path class.
266 /// @brief Make \a path an absolute path.
268 /// Makes \a path absolute using the current directory if it is not already. An
269 /// empty \a path will result in the current directory.
271 /// /absolute/path => /absolute/path
272 /// relative/../path => <current-directory>/relative/../path
274 /// @param path A path that is modified to be an absolute path
726 const std::string &path() const { return Path; } function in class:llvm::sys::fs::directory_entry
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DebugIR.cpp 32 #include "llvm/Support/Path.h"
462 Filename = sys::path::filename(PathStr);
463 SmallVector<char, 16> Path(PathStr.begin(), PathStr.end());
464 sys::path::remove_filename(Path);
465 Directory = StringRef(Path.data(), Path.size());
510 StringRef Path(PathVec.data(), PathVec.size());
511 Filename = sys::path::filename(Path);
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
WorkDir.cpp 16 UString GetWorkDir(const NWorkDir::CInfo &workDirInfo, const UString &path)
23 UString prefix = path.Left(3);
43 return ExtractDirPrefixFromPath(path);
47 UString tempDir = workDirInfo.Path;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCanvas.java 88 public void drawPath(Path path, Paint paint) {
89 pathPaintEvents.add(new PathPaintHistoryEvent(path, paint));
92 appendDescription("Path " + shadowOf(path).getPoints().toString());
141 public Path getDrawnPath(int i) {
159 private Path drawnPath;
162 PathPaintHistoryEvent(Path drawnPath, Paint pathPaint) {
  /external/skia/src/animator/
SkTextToPath.cpp 21 SK_MEMBER(path, Path),
29 SkTextToPath::SkTextToPath() : paint(NULL), path(NULL), text(NULL) {
33 path->draw(maker);
38 if (paint == NULL || path == NULL || text == NULL) {
46 text->y, &path->getPath());
  /frameworks/base/core/java/android/transition/
ArcMotion.java 22 import android.graphics.Path;
27 * A PathMotion that generates a curved path along an arc on an imaginary circle containing
35 * the path, {@link #setMinimumHorizontalAngle(float)} and
83 * circle will be far from both points, giving a near straight path between the points.
85 * exaggerated curve to the path.
88 * @param angleInDegrees The minimum angle of the arc on a circle describing the Path
100 * circle will be far from both points, giving a near straight path between the points.
102 * exaggerated curve to the path.
115 * circle will be far from both points, giving a near straight path between the points.
117 * exaggerated curve to the path
199 Path path = new Path(); local
    [all...]
  /frameworks/compile/mclinker/lib/MC/
InputFactory.cpp 35 const sys::fs::Path& pPath,

Completed in 1318 milliseconds

<<11121314151617181920>>