Home
last modified time | relevance | path

Searched +full:- +full:path (Results 1 – 25 of 1256) sorted by relevance

12345678910>>...51

/external/skia/bench/
DBigPath.cpp4 * Use of this source code is governed by a BSD-style license that can be
20 SkPathBuilder path; in make_big_path() local
22 path.moveTo(-1113, 81); in make_big_path()
23 path.lineTo(-1113, 83); in make_big_path()
24 path.lineTo(-1113, 82); in make_big_path()
25 path.lineTo(-1112, 82); in make_big_path()
26 path.lineTo(-1112, 83); in make_big_path()
27 path.lineTo(-1111, 82); in make_big_path()
28 path.lineTo(-1111, 82); in make_big_path()
29 path.lineTo(-1110, 81); in make_big_path()
[all …]
/external/libcxx/include/experimental/
Dfilesystem1 // -*- C++ -*-
2 //===--------------------------- filesystem -------------------------------===//
9 //===----------------------------------------------------------------------===//
17 class path;
19 void swap(path& lhs, path& rhs) noexcept;
20 size_t hash_value(const path& p) noexcept;
22 bool operator==(const path& lhs, const path& rhs) noexcept;
23 bool operator!=(const path& lhs, const path& rhs) noexcept;
24 bool operator< (const path& lhs, const path& rhs) noexcept;
25 bool operator<=(const path& lhs, const path& rhs) noexcept;
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/include/
Dfilesystem1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
18 // `class path` from http://eel.is/c++draft/fs.class.path.general#6
19 class path {
27 path() noexcept;
28 path(const path& p);
29 path(path&& p) noexcept;
30 path(string_type&& source, format fmt = auto_format);
[all …]
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/groovy/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.groovy8 * http://www.apache.org/licenses/LICENSE-2.0
32 * @version $Revision: $ - $Date: $
53 * @param entry - the subclass of AbstractFileSystemEntry to add
56 def normalized = normalize(entry.path)
58 throw new FileSystemException("The path [" + normalized + "] already exists")
73 * @param path - the path of the filename to create
76 * @throws AssertionError - if path is null
77 * @throws FileSystemException - if an I/O error occurs
79 public boolean createFile(String path) {
80 assert path != null
[all …]
DFileSystem.groovy8 * http://www.apache.org/licenses/LICENSE-2.0
27 * @version $Revision: $ - $Date: $
36 * @param path - the path of the filename to create
39 * @throws AssertionError - if path is null
40 * @throws FileSystemException - if an I/O error occurs
42 public boolean createFile(String path)
47 * @param path - the path of the directory to create
50 * @throws AssertionError - if path is null
52 public boolean createDirectory(String path)
55 * Create and return a new OutputStream for writing to the file at the specified path
[all …]
/external/skia/gm/
Dpathfill.cpp4 * Use of this source code is governed by a BSD-style license that can be
23 SkPath path; member
33 SkPath path = SkPath::RRect(SkRRect::MakeRectXY(r, 15, 15)); in make_frame() local
37 skpathutils::FillPathWithPaint(path, paint, &path); in make_frame()
38 return {path, 15}; in make_frame()
85 builder.lineTo(x, y - dy); in make_sawtooth()
140 SkScalar rad = -SK_ScalarPI / 2; in make_star()
144 builder.moveTo(c, c - r); in make_star()
157 // We don't expect any output from this path.
173 SkPathBuilder path; in make_info() local
[all …]
Dstrokefill.cpp4 * Use of this source code is governed by a BSD-style license that can be
26 SkASSERT(paint->getPathEffect() == nullptr); in set_strokeandfill()
27 paint->setPathEffect(SkStrokeAndFillPathEffect::Make()); in set_strokeandfill()
28 paint->setStroke(true); in set_strokeandfill()
36 SkPath path; in papyrus_hello() local
37 path.moveTo(169.824f, 83.4102f); in papyrus_hello()
38 path.lineTo(167.285f, 85.6074f); in papyrus_hello()
39 path.lineTo(166.504f, 87.2188f); in papyrus_hello()
40 path.lineTo(165.82f, 86.7793f); in papyrus_hello()
41 path.lineTo(165.186f, 87.1211f); in papyrus_hello()
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/include/__filesystem/
Doperations.h1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
20 #include <__filesystem/path.h>
37 _LIBCPP_FUNC_VIS path __absolute(const path&, error_code* __ec = nullptr);
38 _LIBCPP_FUNC_VIS path __canonical(const path&, error_code* __ec = nullptr);
39 _LIBCPP_FUNC_VIS bool __copy_file(const path& __from, const path& __to, copy_options __opt, error_c…
40 _LIBCPP_FUNC_VIS void __copy_symlink(const path& __existing_symlink, const path& __new_symlink, err…
41 _LIBCPP_FUNC_VIS void __copy(const path& __from, const path& __to, copy_options __opt, error_code* …
[all …]
/external/skia/tests/
DPathOpsOpTest.cpp4 * Use of this source code is governed by a BSD-style license that can be
32 PathTest_Private(SkPath* path) in PathTest_Private() argument
33 : fPath(path) {} in PathTest_Private()
36 fPath->setPt(index, x, y); in setPt()
42 static void path_edit(const SkPoint& from, const SkPoint& to, SkPath* path) { in path_edit() argument
43 PathTest_Private testPath(path); in path_edit()
44 for (int index = 0; index < path->countPoints(); ++index) { in path_edit()
45 if (SkDPoint::ApproximatelyEqual(path->getPoint(index), from)) { in path_edit()
53 SkPath path, pathB; in cubicOp1d() local
54 path.setFillType(SkPathFillType::kWinding); in cubicOp1d()
[all …]
DTriangulatingPathRendererTests.cpp4 * Use of this source code is governed by a BSD-style license that can be
79 []() -> SkPath { in __anon7111d3d00102()
80 SkPath path; in __anon7111d3d00102() local
81 path.moveTo(229.127044677734375f, 67.34100341796875f); in __anon7111d3d00102()
82 path.lineTo(187.8097381591796875f, -6.7729740142822265625f); in __anon7111d3d00102()
83 path.lineTo(171.411407470703125f, 50.94266510009765625f); in __anon7111d3d00102()
84 path.lineTo(245.5253753662109375f, 9.6253643035888671875f); in __anon7111d3d00102()
85 path.moveTo(208.4683990478515625f, 30.284009933471679688f); in __anon7111d3d00102()
86 path.lineTo(171.411407470703125f, 50.94266510009765625f); in __anon7111d3d00102()
87 path.lineTo(187.8097381591796875f, -6.7729740142822265625f); in __anon7111d3d00102()
[all …]
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java8 * http://www.apache.org/licenses/LICENSE-2.0
42 * filesystem-specific manner. This property must be initialized by concrete subclasses.
45 * @version $Revision: 142 $ - $Date: 2008-10-30 21:11:18 -0400 (Thu, 30 Oct 2008) $
67 //-------------------------------------------------------------------------
69 //-------------------------------------------------------------------------
91 * @param entriesToAdd - the List of FileSystemEntry entries to add
103 * @param entry - the FileSystemEntry to add
106 String path = entry.getPath(); in add() local
107 checkForInvalidFilename(path); in add()
108 if (getEntry(path) != null) { in add()
[all …]
/external/llvm/include/llvm/Support/
DPath.h1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===//
8 //===----------------------------------------------------------------------===//
10 // This file declares the llvm::sys::path namespace. It is designed after
12 // path class.
14 //===----------------------------------------------------------------------===//
25 namespace path {
30 /// @brief Path iterator.
33 /// \a path. The traversal order is as follows:
34 /// * The root-name element, if present.
35 /// * The root-directory element, if present.
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DPath.h1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===//
8 //===----------------------------------------------------------------------===//
10 // This file declares the llvm::sys::path namespace. It is designed after
12 // path class.
14 //===----------------------------------------------------------------------===//
25 namespace path {
30 /// @brief Path iterator.
33 /// \a path. The traversal order is as follows:
34 /// * The root-name element, if present.
35 /// * The root-directory element, if present.
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DPath.h1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file declares the llvm::sys::path namespace. It is designed after
11 // path class.
13 //===----------------------------------------------------------------------===//
26 namespace path {
33 /// Path iterator.
36 /// \a path. The traversal order is as follows:
37 /// * The root-name element, if present.
[all …]
/external/tensorflow/tensorflow/lite/g3doc/
D_book.yaml2 - name: "Install"
5 - include: /install/_toc.yaml
7 - name: "Learn"
8 path: /learn/
11 - include: /learn/_menu_toc.yaml
17 - name: "Guide"
19 - title: "Overview"
20 path: /lite/guide
21 - title: "Running ML models"
22 path: /lite/guide/inference
[all …]
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java8 * http://www.apache.org/licenses/LICENSE-2.0
43 * filesystem-specific manner. This property must be initialized by concrete subclasses.
46 * @version $Revision$ - $Date$
68 //-------------------------------------------------------------------------
70 //-------------------------------------------------------------------------
92 * @param entriesToAdd - the List of FileSystemEntry entries to add
104 * @param entry - the FileSystemEntry to add
107 String path = entry.getPath(); in add() local
108 checkForInvalidFilename(path); in add()
109 if (getEntry(path) != null) { in add()
[all …]
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java8 * http://www.apache.org/licenses/LICENSE-2.0
42 * filesystem-specific manner. This property must be initialized by concrete subclasses.
45 * @version $Revision$ - $Date$
67 //-------------------------------------------------------------------------
69 //-------------------------------------------------------------------------
91 * @param entriesToAdd - the List of FileSystemEntry entries to add
103 * @param entry - the FileSystemEntry to add
106 String path = entry.getPath(); in add() local
107 checkForInvalidFilename(path); in add()
108 if (getEntry(path) != null) { in add()
[all …]
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java8 * http://www.apache.org/licenses/LICENSE-2.0
42 * filesystem-specific manner. This property must be initialized by concrete subclasses.
45 * @version $Revision$ - $Date$
67 //-------------------------------------------------------------------------
69 //-------------------------------------------------------------------------
91 * @param entriesToAdd - the List of FileSystemEntry entries to add
103 * @param entry - the FileSystemEntry to add
106 String path = entry.getPath(); in add() local
107 checkForInvalidFilename(path); in add()
108 if (getEntry(path) != null) { in add()
[all …]
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java8 * http://www.apache.org/licenses/LICENSE-2.0
42 * filesystem-specific manner. This property must be initialized by concrete subclasses.
45 * @version $Revision$ - $Date$
67 //-------------------------------------------------------------------------
69 //-------------------------------------------------------------------------
91 * @param entriesToAdd - the List of FileSystemEntry entries to add
103 * @param entry - the FileSystemEntry to add
106 String path = entry.getPath(); in add() local
107 checkForInvalidFilename(path); in add()
108 if (getEntry(path) != null) { in add()
[all …]
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java8 * http://www.apache.org/licenses/LICENSE-2.0
42 * filesystem-specific manner. This property must be initialized by concrete subclasses.
45 * @version $Revision$ - $Date$
67 //-------------------------------------------------------------------------
69 //-------------------------------------------------------------------------
91 * @param entriesToAdd - the List of FileSystemEntry entries to add
103 * @param entry - the FileSystemEntry to add
106 String path = entry.getPath(); in add() local
107 checkForInvalidFilename(path); in add()
108 if (getEntry(path) != null) { in add()
[all …]
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java8 * http://www.apache.org/licenses/LICENSE-2.0
42 * filesystem-specific manner. This property must be initialized by concrete subclasses.
45 * @version $Revision$ - $Date$
67 //-------------------------------------------------------------------------
69 //-------------------------------------------------------------------------
91 * @param entriesToAdd - the List of FileSystemEntry entries to add
103 * @param entry - the FileSystemEntry to add
106 String path = entry.getPath(); in add() local
107 checkForInvalidFilename(path); in add()
108 if (getEntry(path) != null) { in add()
[all …]
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java8 * http://www.apache.org/licenses/LICENSE-2.0
43 * filesystem-specific manner. This property must be initialized by concrete subclasses.
46 * @version $Revision$ - $Date$
68 //-------------------------------------------------------------------------
70 //-------------------------------------------------------------------------
92 * @param entriesToAdd - the List of FileSystemEntry entries to add
104 * @param entry - the FileSystemEntry to add
107 String path = entry.getPath(); in add() local
108 checkForInvalidFilename(path); in add()
109 if (getEntry(path) != null) { in add()
[all …]
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java8 * http://www.apache.org/licenses/LICENSE-2.0
42 * filesystem-specific manner. This property must be initialized by concrete subclasses.
45 * @version $Revision$ - $Date$
67 //-------------------------------------------------------------------------
69 //-------------------------------------------------------------------------
91 * @param entriesToAdd - the List of FileSystemEntry entries to add
103 * @param entry - the FileSystemEntry to add
106 String path = entry.getPath(); in add() local
107 checkForInvalidFilename(path); in add()
108 if (getEntry(path) != null) { in add()
[all …]
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java8 * http://www.apache.org/licenses/LICENSE-2.0
43 * filesystem-specific manner. This property must be initialized by concrete subclasses.
46 * @version $Revision$ - $Date$
68 //-------------------------------------------------------------------------
70 //-------------------------------------------------------------------------
92 * @param entriesToAdd - the List of FileSystemEntry entries to add
104 * @param entry - the FileSystemEntry to add
107 String path = entry.getPath(); in add() local
108 checkForInvalidFilename(path); in add()
109 if (getEntry(path) != null) { in add()
[all …]
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java8 * http://www.apache.org/licenses/LICENSE-2.0
42 * filesystem-specific manner. This property must be initialized by concrete subclasses.
45 * @version $Revision$ - $Date$
67 //-------------------------------------------------------------------------
69 //-------------------------------------------------------------------------
91 * @param entriesToAdd - the List of FileSystemEntry entries to add
103 * @param entry - the FileSystemEntry to add
106 String path = entry.getPath(); in add() local
107 checkForInvalidFilename(path); in add()
108 if (getEntry(path) != null) { in add()
[all …]

12345678910>>...51