HomeSort by relevance Sort by last modified time
    Searched refs:NewPath (Results 1 - 7 of 7) sorted by null

  /external/clang/lib/Tooling/
FileMatchTrie.cpp 38 /// \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) {
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, ConsumedLength + Element.size() + 1)
    [all...]
  /external/clang/include/clang/Tooling/
FileMatchTrie.h 69 void insert(StringRef NewPath);
  /external/pdfium/core/src/fxge/ge/
fx_ge_path.cpp 409 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.GetPointCount();
    [all...]
  /external/clang/lib/Basic/
FileManager.cpp 377 SmallString<128> NewPath(FileSystemOpts.WorkingDir);
378 llvm::sys::path::append(NewPath, pathRef);
379 path = NewPath;
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 92 PathPieces NewPath;
93 Macro->subPieces.flattenTo(Primary, NewPath, ShouldFlattenMacros);
95 Macro->subPieces = NewPath;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
lmdfs.h 332 NET_API_STATUS WINAPI NetDfsRename(LPWSTR Path,LPWSTR NewPath);
  /external/pdfium/core/include/fxge/
fx_ge.h 203 FX_BOOL GetZeroAreaPath(CFX_PathData& NewPath, CFX_AffineMatrix* pMatrix, FX_BOOL&bThin, FX_BOOL bAdjust) const;

Completed in 1270 milliseconds