Home
last modified time | relevance | path

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

/external/clang/lib/Tooling/
DFileMatchTrie.cpp52 void insert(StringRef NewPath, unsigned ConsumedLength = 0) { in insert() argument
55 if (llvm::sys::path::is_relative(NewPath)) in insert()
59 Path = NewPath; in insert()
64 if (NewPath == Path) in insert()
72 StringRef(NewPath).drop_back(ConsumedLength))); in insert()
73 Children[Element].insert(NewPath, ConsumedLength + Element.size() + 1); in insert()
170 void FileMatchTrie::insert(StringRef NewPath) { in insert() argument
171 Root->insert(NewPath); in insert()
/external/pdfium/core/src/fxge/ge/
Dfx_ge_path.cpp409 FX_BOOL CFX_PathData::GetZeroAreaPath(CFX_PathData& NewPath, CFX_AffineMatrix* pMatrix, FX_BOOL&bTh… in GetZeroAreaPath() argument
417 NewPath.AddPointCount(2); in GetZeroAreaPath()
424 NewPath.SetPoint(0, x, y, FXPT_MOVETO); in GetZeroAreaPath()
429 NewPath.SetPoint(1, x, y, FXPT_LINETO); in GetZeroAreaPath()
433 NewPath.SetPoint(0, x, y, FXPT_MOVETO); in GetZeroAreaPath()
435 NewPath.SetPoint(1, x, y, FXPT_LINETO); in GetZeroAreaPath()
438 NewPath.SetPoint(0, m_pPoints[0].m_PointX, m_pPoints[0].m_PointY, FXPT_MOVETO); in GetZeroAreaPath()
439 NewPath.SetPoint(1, m_pPoints[1].m_PointX, m_pPoints[1].m_PointY, FXPT_LINETO); in GetZeroAreaPath()
463 NewPath.Append(&t_path, NULL); in GetZeroAreaPath()
485 int new_count = NewPath.GetPointCount(); in GetZeroAreaPath()
[all …]
/external/clang/include/clang/Tooling/
DFileMatchTrie.h69 void insert(StringRef NewPath);
/external/clang/lib/Basic/
DFileManager.cpp377 SmallString<128> NewPath(FileSystemOpts.WorkingDir); in FixupRelativePath() local
378 llvm::sys::path::append(NewPath, pathRef); in FixupRelativePath()
379 path = NewPath; in FixupRelativePath()
/external/clang/lib/StaticAnalyzer/Core/
DPathDiagnostic.cpp92 PathPieces NewPath; in flattenTo() local
93 Macro->subPieces.flattenTo(Primary, NewPath, ShouldFlattenMacros); in flattenTo()
95 Macro->subPieces = NewPath; in flattenTo()
/external/pdfium/core/include/fxge/
Dfx_ge.h203 …FX_BOOL GetZeroAreaPath(CFX_PathData& NewPath, CFX_AffineMatrix* pMatrix, FX_BOOL&bThin, FX_BOO…