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 394 FX_BOOL CFX_PathData::GetZeroAreaPath(CFX_PathData& NewPath,
406 NewPath.AddPointCount(2);
413 NewPath.SetPoint(0, x, y, FXPT_MOVETO);
418 NewPath.SetPoint(1, x, y, FXPT_LINETO);
423 NewPath.SetPoint(0, x, y, FXPT_MOVETO);
426 NewPath.SetPoint(1, x, y, FXPT_LINETO);
429 NewPath.SetPoint(0, m_pPoints[0].m_PointX, m_pPoints[0].m_PointY,
431 NewPath.SetPoint(1, m_pPoints[1].m_PointX, m_pPoints[1].m_PointY,
462 NewPath.Append(&t_path, NULL);
488 int new_count = NewPath.GetPointCount()
    [all...]
  /external/clang/lib/Basic/
FileManager.cpp 395 SmallString<128> NewPath(FileSystemOpts.WorkingDir);
396 llvm::sys::path::append(NewPath, pathRef);
397 path = NewPath;
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 90 PathPieces NewPath;
91 Macro->subPieces.flattenTo(Primary, NewPath, ShouldFlattenMacros);
93 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 143 FX_BOOL GetZeroAreaPath(CFX_PathData& NewPath,

Completed in 173 milliseconds