HomeSort by relevance Sort by last modified time
    Searched refs:Path (Results 51 - 75 of 1075) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libcxx/test/support/
platform_support.h 76 char Path[MAX_PATH+1];
78 do { } while (0 == GetTempPath(MAX_PATH+1, Path));
79 do { } while (0 == GetTempFileName(Path, "libcxx", 0, FN));
  /external/opencv3/modules/viz/test/
test_precomp.cpp 3 cv::String cv::Path::combine(const String& item1, const String& item2)
17 cv::String cv::Path::combine(const String& item1, const String& item2, const String& item3)
20 cv::String cv::Path::change_extension(const String& file, const String& ext)
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
GradientDrawable_Delegate.java 21 import android.graphics.Path;
36 * circle isn't complete. LayoutLib cannot handle drawing full circles (requires path
40 /*package*/ static Path buildRing(GradientDrawable thisDrawable, GradientState st) {
62 Path path = thisDrawable.buildRing_Original(st); local
71 return path;
  /packages/services/Car/car-support-lib/src/android/support/car/ui/
ClippableFrameLayout.java 20 import android.graphics.Path;
26 * FrameLayout that enables the user to set a Path that the view will be clipped to
31 private Path mClipPath;
38 public void setClipPath(Path clipPath) {
  /external/clang/include/clang/Basic/
FileSystemStatCache.h 61 /// \brief Get the 'stat' information for the specified path, using the cache
64 /// \returns \c true if the path does not exist or \c false if it exists.
71 static bool get(const char *Path, FileData &Data, bool isFile,
95 virtual LookupResult getStat(const char *Path, FileData &Data, bool isFile,
99 LookupResult statChained(const char *Path, FileData &Data, bool isFile,
102 return Next->getStat(Path, Data, isFile, F, FS);
106 return get(Path, Data, isFile, F, nullptr, FS) ? CacheMissing : CacheExists;
124 LookupResult getStat(const char *Path, FileData &Data, bool isFile,
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathDashPathEffectTest.java 24 import android.graphics.Path;
28 import android.graphics.Path.Direction;
48 canvas.drawPath(path(), p); method
73 private static Path path() { method in class:PathDashPathEffectTest
74 Path p = new Path();
80 private static Path shape() {
81 Path p = new Path();
    [all...]
Path_DirectionTest.java 19 import android.graphics.Path;
20 import android.graphics.Path.Direction;
  /external/clang/unittests/Tooling/
RewriterTestContext.h 25 #include "llvm/Support/Path.h"
68 SmallString<1024> Path;
70 std::error_code EC = llvm::sys::fs::createTemporaryFile(Name, "", FD, Path);
77 const FileEntry *File = Files.getFile(Path);
81 TemporaryFiles.insert(std::make_pair(Name, Path.str())).first->second;
82 assert(Found == Path);
103 std::string Path = TemporaryFiles.lookup(Name);
104 assert(!Path.empty());
110 auto FileBuffer = Files.getBufferForFile(Path);
  /external/llvm/bindings/ocaml/bitwriter/
bitwriter_ocaml.c 25 CAMLprim value llvm_write_bitcode_file(LLVMModuleRef M, value Path) {
26 int Result = LLVMWriteBitcodeToFile(M, String_val(Path));
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
RoundRectShape.java 22 import android.graphics.Path;
38 private Path mPath; // this is what we actually draw
74 mPath = new Path();
91 // can't call simple constructors, use path
112 mPath.addRoundRect(r, mOuterRadii, Path.Direction.CW);
114 mPath.addRect(r, Path.Direction.CW);
121 mPath.addRoundRect(mInnerRect, mInnerRadii, Path.Direction.CCW);
123 mPath.addRect(mInnerRect, Path.Direction.CCW);
136 shape.mPath = new Path(mPath);
  /frameworks/base/services/core/java/com/android/server/wm/animation/
CurvedTranslateAnimation.java 21 import android.graphics.Path;
27 * Translate animation which follows a curved path.
33 public CurvedTranslateAnimation(Path path) {
34 mKeyframes = KeyframeSet.ofPath(path);
  /frameworks/compile/mclinker/include/mcld/Support/
MemoryAreaFactory.h 14 #include "mcld/Support/Path.h"
45 MemoryArea* produce(const sys::fs::Path& pPath, FileHandle::OpenMode pMode);
48 MemoryArea* produce(const sys::fs::Path& pPath,
  /frameworks/compile/mclinker/lib/Support/
FileSystem.cpp 11 #include "mcld/Support/Path.h"
16 bool mcld::sys::fs::exists(const Path& pPath) {
23 bool mcld::sys::fs::is_directory(const Path& pPath) {
  /frameworks/support/compat/api21/android/support/v4/view/animation/
PathInterpolatorCompatApi21.java 19 import android.graphics.Path;
24 * API 21+ implementation for path interpolator compatibility.
32 public static Interpolator create(Path path) {
33 return new PathInterpolator(path);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ClusterAlbum.java 24 private ArrayList<Path> mPaths = new ArrayList<Path>();
30 public ClusterAlbum(Path path, DataManager dataManager,
32 super(path, nextVersionNumber());
47 void setMediaItems(ArrayList<Path> paths) {
51 ArrayList<Path> getMediaItems() {
75 ArrayList<Path> paths, int start, int count,
81 ArrayList<Path> subset = new ArrayList<Path>(paths.subList(start, end))
    [all...]
  /packages/apps/PhoneCommon/src/com/android/phone/common/compat/
PathInterpolatorCompat.java 19 import android.graphics.Path;
36 * Governs the accuracy of the approximation of the {@link Path}.
43 public PathInterpolatorBase(Path path) {
44 final PathMeasure pathMeasure = new PathMeasure(path, false /* forceClosed */);
105 private static Path createQuad(float controlX, float controlY) {
106 final Path path = new Path(); local
107 path.moveTo(0.0f, 0.0f)
114 final Path path = new Path(); local
    [all...]
  /prebuilts/go/darwin-x86/doc/articles/wiki/
http-sample.go 9 fmt.Fprintf(w, "Hi there, I love %s!", r.URL.Path[1:])
  /prebuilts/go/linux-x86/doc/articles/wiki/
http-sample.go 9 fmt.Fprintf(w, "Hi there, I love %s!", r.URL.Path[1:])
  /external/clang/lib/Tooling/
FileMatchTrie.cpp 17 #include "llvm/Support/Path.h"
36 /// Each node has storage for up to one path and a map mapping a path segment to
44 /// An insert of a path
47 /// - If the node has a path 'p2' but no children, take the last path segment
53 /// An insert operation is linear in the number of a path's segments.
55 // We cannot put relative paths into the FileMatchTrie as then a path can be
56 // a postfix of another path, violating a core assumption of the trie.
57 if (llvm::sys::path::is_relative(NewPath)
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TextOnPathActivity.java 23 import android.graphics.Path;
30 private Path mPath;
31 private Path mStraightPath;
44 private static Path makePath() {
45 Path path = new Path(); local
46 buildPath(path);
47 return path;
50 private static void buildPath(Path path)
58 Path path = new Path(); local
    [all...]
  /external/jsoncpp/include/json/
forwards.h 28 class Path;
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Path.java 19 /** Interface that specifies a path of type T within the window 0.0<=t<=1.0.
21 public interface Path<T> {
24 /** @return The value of the path at t where 0<=t<=1 */
27 /** @return The approximated value (between 0 and 1) on the path which is closest to the specified value. Note that the
32 /** @return The precise location (between 0 and 1) on the path which is closest to the specified value. Note that the
  /external/llvm/include/llvm-c/
BitWriter.h 37 /** Writes a module to the specified path. Returns 0 on success. */
38 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path);
  /frameworks/base/core/java/android/gesture/
OrientedBoundingBox.java 20 import android.graphics.Path;
55 public Path toPath() {
56 Path path = new Path(); local
64 path.moveTo(point[0], point[1]);
69 path.lineTo(point[0], point[1]);
74 path.lineTo(point[0], point[1]);
79 path.lineTo(point[0], point[1]);
81 path.close()
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
HeadsUpAppearInterpolator.java 19 import android.graphics.Path;
30 private static Path getAppearPath() {
31 Path path = new Path(); local
32 path.moveTo(0, 0);
40 path.cubicTo(x1 * 0.9f / xTot, 0f,
43 path.cubicTo((x1 + x2 * 0.4f) / xTot, y1 / y3,
46 path.cubicTo((x1 + x2 + x3 * 0.4f) / xTot, y2 / y3,
49 return path;
    [all...]

Completed in 1387 milliseconds

1 23 4 5 6 7 8 91011>>