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

/external/clang/lib/Tooling/
H A DFileMatchTrie.cpp38 /// \brief Inserts 'NewPath' into this trie. \c ConsumedLength denotes
39 /// the number of \c NewPath's trailing characters already consumed during
52 void insert(StringRef NewPath, unsigned ConsumedLength = 0) { argument
55 if (llvm::sys::path::is_relative(NewPath))
58 // This is an empty leaf. Store NewPath and return.
59 Path = NewPath;
63 // This is a leaf, ignore duplicate entry if 'Path' equals 'NewPath'.
64 if (NewPath == Path)
72 StringRef(NewPath).drop_back(ConsumedLength)));
73 Children[Element].insert(NewPath, ConsumedLengt
170 insert(StringRef NewPath) argument
[all...]
/external/clang/include/clang/Tooling/
H A DFileMatchTrie.h69 void insert(StringRef NewPath);
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_path.cpp409 FX_BOOL CFX_PathData::GetZeroAreaPath(CFX_PathData& NewPath, CFX_AffineMatrix* pMatrix, FX_BOOL&bThin, FX_BOOL bAdjust) const
417 NewPath.AddPointCount(2);
424 NewPath.SetPoint(0, x, y, FXPT_MOVETO);
429 NewPath.SetPoint(1, x, y, FXPT_LINETO);
433 NewPath.SetPoint(0, x, y, FXPT_MOVETO);
435 NewPath.SetPoint(1, x, y, FXPT_LINETO);
438 NewPath.SetPoint(0, m_pPoints[0].m_PointX, m_pPoints[0].m_PointY, FXPT_MOVETO);
439 NewPath.SetPoint(1, m_pPoints[1].m_PointX, m_pPoints[1].m_PointY, FXPT_LINETO);
463 NewPath.Append(&t_path, NULL);
485 int new_count = NewPath
[all...]
/external/clang/lib/Basic/
H A DFileManager.cpp377 SmallString<128> NewPath(FileSystemOpts.WorkingDir);
378 llvm::sys::path::append(NewPath, pathRef);
379 path = NewPath;
/external/clang/lib/StaticAnalyzer/Core/
H A DPathDiagnostic.cpp92 PathPieces NewPath; local
93 Macro->subPieces.flattenTo(Primary, NewPath, ShouldFlattenMacros);
95 Macro->subPieces = NewPath;
/external/pdfium/core/include/fxge/
H A Dfx_ge.h203 FX_BOOL GetZeroAreaPath(CFX_PathData& NewPath, CFX_AffineMatrix* pMatrix, FX_BOOL&bThin, FX_BOOL bAdjust) const;

Completed in 1641 milliseconds