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 40 /// \brief Inserts 'NewPath' into this trie. \c ConsumedLength denotes
41 /// the number of \c NewPath's trailing characters already consumed during
54 void insert(StringRef NewPath, unsigned ConsumedLength = 0) {
57 if (llvm::sys::path::is_relative(NewPath))
60 // This is an empty leaf. Store NewPath and return.
61 Path = NewPath;
65 // This is a leaf, ignore duplicate entry if 'Path' equals 'NewPath'.
66 if (NewPath == Path)
74 StringRef(NewPath).drop_back(ConsumedLength)));
75 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 390 FX_BOOL CFX_PathData::GetZeroAreaPath(CFX_PathData& NewPath, CFX_AffineMatrix* pMatrix, FX_BOOL&bThin, FX_BOOL bAdjust) const
398 NewPath.AddPointCount(2);
405 NewPath.SetPoint(0, x, y, FXPT_MOVETO);
410 NewPath.SetPoint(1, x, y, FXPT_LINETO);
414 NewPath.SetPoint(0, x, y, FXPT_MOVETO);
416 NewPath.SetPoint(1, x, y, FXPT_LINETO);
419 NewPath.SetPoint(0, m_pPoints[0].m_PointX, m_pPoints[0].m_PointY, FXPT_MOVETO);
420 NewPath.SetPoint(1, m_pPoints[1].m_PointX, m_pPoints[1].m_PointY, FXPT_LINETO);
444 NewPath.Append(&t_path, NULL);
466 int new_count = NewPath.GetPointCount()
    [all...]
  /external/clang/lib/Basic/
FileManager.cpp 398 SmallString<128> NewPath(FileSystemOpts.WorkingDir);
399 llvm::sys::path::append(NewPath, pathRef);
400 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 200 FX_BOOL GetZeroAreaPath(CFX_PathData& NewPath, CFX_AffineMatrix* pMatrix, FX_BOOL&bThin, FX_BOOL bAdjust) const;

Completed in 250 milliseconds