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

  /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/lib/ExecutionEngine/
EventListenerCommon.h 50 SmallString<256> FullPath;
52 FullPath = DirName;
55 sys::path::append(FullPath, FileName);
57 P = FullPath.str();
  /external/llvm/lib/Support/
Path.cpp 192 sys::Path FullPath(LibPaths[i]);
193 FullPath.appendComponent("lib" + name + LTDL_SHLIB_EXT);
194 if (FullPath.isDynamicLibrary())
195 return FullPath;
196 FullPath.eraseSuffix();
197 FullPath.appendSuffix("a");
198 if (FullPath.isArchive())
199 return FullPath;
  /external/clang/lib/Basic/
FileManager.cpp 89 std::string FullPath(GetFullPath(Name));
90 return UniqueDirs.GetOrCreateValue(FullPath).getValue();
106 std::string FullPath(GetFullPath(Name));
109 FullPath = StringRef(FullPath).lower();
110 return UniqueFiles.GetOrCreateValue(FullPath).getValue();
116 std::string FullPath(GetFullPath(Entry->getName()));
119 FullPath = StringRef(FullPath).lower();
120 UniqueFiles.erase(FullPath);
    [all...]
  /external/chromium/base/memory/
scoped_temp_dir_unittest.cc 10 TEST(ScopedTempDir, FullPath) {
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 97 bool FullPath = false; ///< 'P' modifier
202 case 'P': FullPath = true; break;

Completed in 71 milliseconds