Home
last modified time | relevance | path

Searched refs:NewPath (Results 1 – 13 of 13) sorted by relevance

/external/clang/lib/Tooling/
DFileMatchTrie.cpp54 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/pdfium/core/fxge/ge/
Dcfx_pathdata.cpp290 CFX_PathData* NewPath, in GetZeroAreaPath() argument
310 NewPath->AppendPoint( in GetZeroAreaPath()
341 NewPath->Append(&t_path, nullptr); in GetZeroAreaPath()
369 NewPath->AppendPoint(m_Points[pre].m_Point, FXPT_TYPE::MoveTo, false); in GetZeroAreaPath()
370 NewPath->AppendPoint(m_Points[next].m_Point, FXPT_TYPE::LineTo, in GetZeroAreaPath()
384 NewPath->AppendPoint(m_Points[pre].m_Point, FXPT_TYPE::MoveTo, false); in GetZeroAreaPath()
385 NewPath->AppendPoint(m_Points[next].m_Point, FXPT_TYPE::LineTo, in GetZeroAreaPath()
391 NewPath->AppendPoint(m_Points[i - 1].m_Point, FXPT_TYPE::MoveTo, in GetZeroAreaPath()
393 NewPath->AppendPoint(m_Points[i].m_Point, FXPT_TYPE::LineTo, false); in GetZeroAreaPath()
403 size_t new_path_size = NewPath->GetPoints().size(); in GetZeroAreaPath()
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/
Ddpath.c334 EFI_DEVICE_PATH *Src, *Dest, *NewPath; in UnpackDevicePath() local
359 NewPath = AllocateZeroPool (Size); in UnpackDevicePath()
360 if (NewPath) { in UnpackDevicePath()
362 ASSERT (((UINTN)NewPath) % MIN_ALIGNMENT_SIZE == 0); in UnpackDevicePath()
369 Dest = NewPath; in UnpackDevicePath()
386 return NewPath; in UnpackDevicePath()
/external/clang/include/clang/Tooling/
DFileMatchTrie.h69 void insert(StringRef NewPath);
/external/skia/experimental/go-demo/
Dmain.go51 path := skia.NewPath()
/external/pdfium/core/fxge/
Dcfx_pathdata.h56 CFX_PathData* NewPath,
/external/clang/lib/Basic/
DFileManager.cpp397 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/
Dllvm-lto.cpp329 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-subzero/lib/Support/
DPath.cpp542 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/llvm/lib/Support/
DPath.cpp542 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/skia/experimental/go-skia/
Dskia.go158 func NewPath() *Path { func
/external/llvm/tools/gold/
Dgold-plugin.cpp1291 SmallString<128> NewPath(Path); in getThinLTOOutputFile() local
1292 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix); in getThinLTOOutputFile()
1293 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str()); in getThinLTOOutputFile()
1300 return NewPath.str(); in getThinLTOOutputFile()
/external/clang/lib/StaticAnalyzer/Core/
DPathDiagnostic.cpp89 PathPieces NewPath; in flattenTo() local
90 Macro->subPieces.flattenTo(Primary, NewPath, ShouldFlattenMacros); in flattenTo()
92 Macro->subPieces = NewPath; in flattenTo()