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

  /external/llvm/tools/lli/
lli.cpp 244 // directory specified by CacheDir, using a filename provided in the module
246 // file exists. CacheDir defaults to "", in which case objects are cached
251 LLIObjectCache(const std::string& CacheDir) : CacheDir(CacheDir) {
253 if (!this->CacheDir.empty() &&
254 this->CacheDir[this->CacheDir.size() - 1] != '/')
255 this->CacheDir += '/';
264 if (!CacheDir.empty()) { // Create user-defined cache dir
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 676 sys::fs::current_path(CacheDir);
677 sys::path::append(CacheDir, "toy_object_cache");
690 SmallString<128>IRCacheFile = CacheDir;
692 if (!sys::fs::exists(CacheDir.str()) && sys::fs::create_directory(CacheDir.str())) {
712 SmallString<128> IRCacheFile = CacheDir;
731 SmallString<128> CacheDir;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 695 sys::fs::current_path(CacheDir);
696 sys::path::append(CacheDir, "toy_object_cache");
709 SmallString<128>IRCacheFile = CacheDir;
711 if (!sys::fs::exists(CacheDir.str()) && sys::fs::create_directory(CacheDir.str())) {
731 SmallString<128> IRCacheFile = CacheDir;
750 SmallString<128> CacheDir;
    [all...]
  /external/llvm/unittests/Support/
Path.cpp 326 SmallString<13> CacheDir;
328 auto Status = path::user_cache_directory(CacheDir, "");
329 EXPECT_TRUE(Status ^ CacheDir.empty());
333 EXPECT_EQ(CacheDir, CacheDir2); // and return same paths
335 EXPECT_TRUE(path::user_cache_directory(CacheDir, "A", "B", "file.c"));
336 auto It = path::rbegin(CacheDir);
    [all...]
  /external/mesa3d/scons/
gallium.py 228 env.CacheDir(os.environ['SCONS_CACHE_DIR'])

Completed in 214 milliseconds