HomeSort by relevance Sort by last modified time
    Searched defs:FullPath (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/ExecutionEngine/
EventListenerCommon.h 50 SmallString<256> FullPath;
52 FullPath = DirName;
55 sys::path::append(FullPath, FileName);
57 P = FullPath.str();
  /external/llvm/lib/Linker/
Linker.cpp 121 sys::Path FullPath(Directory);
124 FullPath.appendComponent(("lib" + Name).str());
125 FullPath.appendSuffix("a");
126 if (FullPath.isArchive())
127 return FullPath;
130 FullPath.eraseSuffix();
131 FullPath.appendSuffix("bca");
132 if (FullPath.isArchive())
133 return FullPath;
136 FullPath.eraseSuffix()
    [all...]
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 98 bool FullPath = false; ///< 'P' modifier
204 case 'P': FullPath = true; break;

Completed in 56 milliseconds