/external/clang/lib/Tooling/ |
D | FileMatchTrie.cpp | 54 void insert(StringRef NewPath, unsigned ConsumedLength = 0) { in insert() argument 57 if (llvm::sys::path::is_relative(NewPath)) in insert() 61 Path = NewPath; in insert() 66 if (NewPath == Path) in insert() 74 StringRef(NewPath).drop_back(ConsumedLength))); in insert() 75 Children[Element].insert(NewPath, ConsumedLength + Element.size() + 1); in insert() 174 void FileMatchTrie::insert(StringRef NewPath) { in insert() argument 175 Root->insert(NewPath); in insert()
|
/external/skqp/modules/pathkit/tests/ |
D | path2d.spec.js | 22 let path = PathKit.NewPath(); 48 let secondPath = PathKit.NewPath(); 93 let path = PathKit.NewPath(); 124 let path = PathKit.NewPath() 136 let path = PathKit.NewPath(); 146 let basePath = PathKit.NewPath(); 167 let path = PathKit.NewPath();
|
D | path.spec.js | 21 let path = PathKit.NewPath(); 33 let blank = PathKit.NewPath(); 82 let copy = PathKit.NewPath(orig); 115 let path = PathKit.NewPath(); 131 let path = PathKit.NewPath(); 164 let path = PathKit.NewPath();
|
D | svg.spec.js | 95 let path = PathKit.NewPath();
|
D | effects.spec.js | 21 let path = PathKit.NewPath();
|
/external/skia/modules/pathkit/tests/ |
D | path2d.spec.js | 22 let path = PathKit.NewPath(); 48 let secondPath = PathKit.NewPath(); 93 let path = PathKit.NewPath(); 124 let path = PathKit.NewPath() 136 let path = PathKit.NewPath(); 146 let basePath = PathKit.NewPath(); 167 let path = PathKit.NewPath();
|
D | path.spec.js | 21 let path = PathKit.NewPath(); 33 let blank = PathKit.NewPath(); 82 let copy = PathKit.NewPath(orig); 115 let path = PathKit.NewPath(); 131 let path = PathKit.NewPath(); 164 let path = PathKit.NewPath();
|
D | svg.spec.js | 95 let path = PathKit.NewPath();
|
D | effects.spec.js | 21 let path = PathKit.NewPath();
|
/external/skqp/modules/pathkit/perf/ |
D | path.bench.js | 20 let path = PathKit.NewPath(); 45 let secondPath = PathKit.NewPath(); 103 let p = PathKit.NewPath() 228 let path = PathKit.NewPath(); 242 let path = PathKit.NewPath(); 270 let path = PathKit.NewPath(); 296 let path = PathKit.NewPath();
|
D | effects.bench.js | 21 let p = PathKit.NewPath();
|
/external/skia/modules/pathkit/perf/ |
D | path.bench.js | 20 let path = PathKit.NewPath(); 45 let secondPath = PathKit.NewPath(); 103 let p = PathKit.NewPath() 228 let path = PathKit.NewPath(); 242 let path = PathKit.NewPath(); 270 let path = PathKit.NewPath(); 296 let path = PathKit.NewPath();
|
D | effects.bench.js | 21 let p = PathKit.NewPath();
|
/external/pdfium/core/fxge/ |
D | cfx_pathdata.cpp | 299 CFX_PathData* NewPath, in GetZeroAreaPath() argument 319 NewPath->AppendPoint( in GetZeroAreaPath() 350 NewPath->Append(&t_path, nullptr); in GetZeroAreaPath() 378 NewPath->AppendPoint(m_Points[pre].m_Point, FXPT_TYPE::MoveTo, false); in GetZeroAreaPath() 379 NewPath->AppendPoint(m_Points[next].m_Point, FXPT_TYPE::LineTo, in GetZeroAreaPath() 393 NewPath->AppendPoint(m_Points[pre].m_Point, FXPT_TYPE::MoveTo, false); in GetZeroAreaPath() 394 NewPath->AppendPoint(m_Points[next].m_Point, FXPT_TYPE::LineTo, in GetZeroAreaPath() 400 NewPath->AppendPoint(m_Points[i - 1].m_Point, FXPT_TYPE::MoveTo, in GetZeroAreaPath() 402 NewPath->AppendPoint(m_Points[i].m_Point, FXPT_TYPE::LineTo, false); in GetZeroAreaPath() 412 size_t new_path_size = NewPath->GetPoints().size(); in GetZeroAreaPath()
|
D | cfx_pathdata.h | 56 CFX_PathData* NewPath,
|
/external/skqp/site/user/modules/ |
D | pathkit.md | 131 let path = PathKit.NewPath(); 170 let path = drawStar(PathKit.NewPath()); 231 - From `PathKit.NewPath()` (It will be blank) 232 - As a copy of an existing `SkPath` with `path.copy()` or `PathKit.NewPath(path)` 283 // let path = PathKit.NewPath().moveTo(0, 10).lineTo(30, 40).quadTo(20, 50, 45, 60); 286 #### `NewPath()` #### 292 let path = PathKit.NewPath(); 299 #### `NewPath(pathToCopy)` #### 307 let clone = PathKit.NewPath(otherPath); 323 let pathOne = PathKit.NewPath().moveTo(0, 20).lineTo(10, 10).lineTo(20, 20).close(); [all …]
|
/external/skia/site/user/modules/ |
D | pathkit.md | 130 let path = PathKit.NewPath(); 169 let path = drawStar(PathKit.NewPath()); 230 - From `PathKit.NewPath()` (It will be blank) 231 - As a copy of an existing `SkPath` with `path.copy()` or `PathKit.NewPath(path)` 282 // let path = PathKit.NewPath().moveTo(0, 10).lineTo(30, 40).quadTo(20, 50, 45, 60); 285 #### `NewPath()` #### 291 let path = PathKit.NewPath(); 298 #### `NewPath(pathToCopy)` #### 306 let clone = PathKit.NewPath(otherPath); 322 let pathOne = PathKit.NewPath().moveTo(0, 20).lineTo(10, 10).lineTo(20, 20).close(); [all …]
|
/external/clang/include/clang/Tooling/ |
D | FileMatchTrie.h | 69 void insert(StringRef NewPath);
|
/external/skqp/experimental/go-demo/ |
D | main.go | 51 path := skia.NewPath()
|
/external/skia/experimental/go-demo/ |
D | main.go | 51 path := skia.NewPath()
|
/external/clang/lib/Basic/ |
D | FileManager.cpp | 397 SmallString<128> NewPath(FileSystemOpts.WorkingDir); in FixupRelativePath() local 398 llvm::sys::path::append(NewPath, pathRef); in FixupRelativePath() 399 path = NewPath; in FixupRelativePath()
|
/external/llvm/tools/llvm-lto/ |
D | llvm-lto.cpp | 329 SmallString<128> NewPath(Path); in getThinLTOOutputFile() local 330 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix); in getThinLTOOutputFile() 331 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str()); in getThinLTOOutputFile() 337 return NewPath.str(); in getThinLTOOutputFile()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-lto/ |
D | llvm-lto.cpp | 414 SmallString<128> NewPath(Path); in getThinLTOOutputFile() local 415 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix); in getThinLTOOutputFile() 416 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str()); in getThinLTOOutputFile() 422 return NewPath.str(); in getThinLTOOutputFile()
|
/external/llvm/lib/Support/ |
D | Path.cpp | 542 SmallString<256> NewPath; in replace_path_prefix() local 543 path::append(NewPath, NewPrefix); in replace_path_prefix() 544 path::append(NewPath, RelPath); in replace_path_prefix() 545 Path.swap(NewPath); in replace_path_prefix()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Path.cpp | 542 SmallString<256> NewPath; in replace_path_prefix() local 543 path::append(NewPath, NewPrefix); in replace_path_prefix() 544 path::append(NewPath, RelPath); in replace_path_prefix() 545 Path.swap(NewPath); in replace_path_prefix()
|