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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/unittests/Support/
raw_pwrite_stream_test.cpp 36 SmallString<64> Path;
38 sys::fs::createTemporaryFile("foo", "bar", FD, Path);
SpecialCaseListTest.cpp 37 SmallString<64> Path;
38 sys::fs::createTemporaryFile("SpecialCaseListTest", "temp", FD, Path);
42 return Path.str();
  /external/boringssl/src/util/fipstools/
delocate_test.go 21 "path/filepath"
26 testDataDir = flag.String("testdata", "testdata", "The path to the test data directory.")
36 func (test *delocateTest) Path(file string) string {
60 path: test.Path(in),
74 ioutil.WriteFile(test.Path(test.out), buf.Bytes(), 0666)
76 expected, err := ioutil.ReadFile(test.Path(test.out))
78 t.Fatalf("could not read %q: %s", test.Path(test.out), err)
  /external/llvm/tools/dsymutil/
MachOUtils.h 24 std::string Arch, Path;
25 ArchAndFilename(StringRef Arch, StringRef Path) : Arch(Arch), Path(Path) {}
  /external/skia/experimental/sksg/geometry/
SkSGPath.cpp 15 Path::Path(const SkPath& path) : fPath(path) {}
17 void Path::onClip(SkCanvas* canvas, bool antiAlias) const {
21 void Path::onDraw(SkCanvas* canvas, const SkPaint& paint) const {
25 SkRect Path::onRevalidate(InvalidationController*, const SkMatrix&) {
31 SkPath Path::onAsPath() const {
SkSGPath.h 23 class Path : public GeometryNode {
25 static sk_sp<Path> Make() { return sk_sp<Path>(new Path(SkPath())); }
26 static sk_sp<Path> Make(const SkPath& r) { return sk_sp<Path>(new Path(r)); }
28 SG_ATTRIBUTE(Path, SkPath, fPath)
38 explicit Path(const SkPath&);
  /external/skqp/experimental/sksg/geometry/
SkSGPath.cpp 15 Path::Path(const SkPath& path) : fPath(path) {}
17 void Path::onClip(SkCanvas* canvas, bool antiAlias) const {
21 void Path::onDraw(SkCanvas* canvas, const SkPaint& paint) const {
25 SkRect Path::onRevalidate(InvalidationController*, const SkMatrix&) {
31 SkPath Path::onAsPath() const {
SkSGPath.h 23 class Path : public GeometryNode {
25 static sk_sp<Path> Make() { return sk_sp<Path>(new Path(SkPath())); }
26 static sk_sp<Path> Make(const SkPath& r) { return sk_sp<Path>(new Path(r)); }
28 SG_ATTRIBUTE(Path, SkPath, fPath)
38 explicit Path(const SkPath&);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/Path/
AccuracyPath.java 16 package com.android.cts.verifier.sensors.sixdof.Utils.Path;
19 * Class with the implementation for the Accuracy path
21 public class AccuracyPath extends Path {
23 * Implementation of the abstract class in path but left empty because there is nothing extra to
Path.java 16 package com.android.cts.verifier.sensors.sixdof.Utils.Path;
24 import com.android.cts.verifier.sensors.sixdof.Utils.Path.PathUtilityClasses.Waypoint;
29 * Contains all the information of the current path.
31 public abstract class Path {
36 * Creates a waypoint and adds it to the path.
88 * Removes the last maker in the current path.
100 * Returns the current path.
107 * Returns the markers for the current path.
114 * Returns the size of the path.
  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 192 const std::string &Path = Clang->getFrontendOpts().Plugins[i];
194 if (llvm::sys::DynamicLibrary::LoadLibraryPermanently(Path.c_str(), &Error))
196 << Path << Error;
  /external/llvm/include/llvm/Support/
CachePruning.h 22 /// Handle pruning a directory provided a path and some options to control what
26 /// Prepare to prune \p Path.
27 CachePruning(StringRef Path) : Path(Path) {}
61 std::string Path;
Path.h 1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===//
10 // This file declares the llvm::sys::path namespace. It is designed after
12 // path class.
25 namespace path { namespace in namespace:llvm::sys
30 /// @brief Path iterator.
33 /// \a path. The traversal order is as follows:
51 StringRef Path; ///< The entire path.
52 StringRef Component; ///< The current component. Not necessarily in Path
    [all...]
  /external/tensorflow/tensorflow/contrib/learn/python/learn/utils/
gc.py 16 r"""System for specifying garbage collection (GC) of path based data.
18 This framework allows for GC of data specified by path names, for example files
19 on disk. gc.Path objects each represent a single item stored at a path and may
29 A gc filter function takes and returns a list of gc.Path items. Filter
30 functions are responsible for selecting Path items for preservation or deletion.
41 def parser(path):
42 match = re.match(path_regex, path.path)
45 return path._replace(export_version=int(match.group(1))
    [all...]
  /external/tensorflow/tensorflow/contrib/session_bundle/
gc.py 16 r"""System for specifying garbage collection (GC) of path based data.
18 This framework allows for GC of data specified by path names, for example files
19 on disk. gc.Path objects each represent a single item stored at a path and may
29 A gc filter function takes and returns a list of gc.Path items. Filter
30 functions are responsible for selecting Path items for preservation or deletion.
40 def parser(path):
41 match = re.match("^" + base_dir + "/(\\d+)$", path.path)
44 return path._replace(export_version=int(match.group(1))
    [all...]
  /external/tensorflow/tensorflow/python/estimator/
gc.py 16 r"""System for specifying garbage collection (GC) of path based data.
18 This framework allows for GC of data specified by path names, for example files
19 on disk. gc.Path objects each represent a single item stored at a path and may
29 A gc filter function takes and returns a list of gc.Path items. Filter
30 functions are responsible for selecting Path items for preservation or deletion.
41 def parser(path):
42 match = re.match(path_regex, path.path)
45 return path._replace(export_version=int(match.group(1))
    [all...]
  /frameworks/compile/mclinker/lib/Support/
Path.cpp 1 //===- Path.cpp -----------------------------------------------------------===//
9 #include "mcld/Support/Path.h"
34 const Path::StringType separator_str("/");
41 const Path::StringType separator_str("/");
47 // Path
49 Path::Path() : m_PathName() {
52 Path::Path(const Path::ValueType* s) : m_PathName(s)
    [all...]
  /build/soong/android/
hooks.go 78 Path() OutputPath
83 // The installed path is available from InstallHookContext.Path(), and
92 path OutputPath
96 func (x *installHookContext) Path() OutputPath {
97 return x.path
104 func (x *hooks) runInstallHooks(ctx ModuleContext, path OutputPath, symlink bool) {
108 path: path,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/Path/PathUtilityClasses/
Waypoint.java 16 package com.android.cts.verifier.sensors.sixdof.Utils.Path.PathUtilityClasses;
32 * @param userGenerated indicates whether it is a marker or a path point
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellCommandLib/
UefiShellCommandLib.h 65 CHAR16 *Path;
  /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...]
  /external/libcxx/test/support/
platform_support.h 78 char Path[MAX_PATH + 1];
80 do { } while (0 == GetTempPath(MAX_PATH+1, Path));
81 do { } while (0 == GetTempFileName(Path, "libcxx", 0, FN));
  /external/llvm/lib/IR/
ModuleSummaryIndex.cpp 34 // Add the module path string ref for this module if we haven't already
37 auto Path = Summary->modulePath();
38 ModPath = addModulePath(Path, NextModuleId, Other->getModuleHash(Path))
44 // Note the module path string ref was copied above and is still owned by
45 // the original per-module index. Reset it to the new module path
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
Path.java 43 public class Path
51 public Path(AddressImpl address) {
59 public Path()
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Path.h 1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===//
10 // This file declares the llvm::sys::path namespace. It is designed after
12 // path class.
25 namespace path { namespace in namespace:llvm::sys
30 /// @brief Path iterator.
33 /// \a path. The traversal order is as follows:
51 StringRef Path; ///< The entire path.
52 StringRef Component; ///< The current component. Not necessarily in Path
    [all...]

Completed in 590 milliseconds

1 2 3 4 5 6 7 8 91011>>