HomeSort by relevance Sort by last modified time
    Searched full:temppath2 (Results 1 - 2 of 2) sorted by null

  /external/llvm/unittests/Support/
Path.cpp 295 SmallString<64> TempPath2;
297 fs::createTemporaryFile("prefix", "temp", FileDescriptor2, TempPath2));
300 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath2), D));
304 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2)));
308 ASSERT_NO_ERROR(fs::create_link(Twine(TempPath), Twine(TempPath2)));
310 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath2), D2));
343 SmallString<64> TempPath2;
344 ASSERT_NO_ERROR(fs::createTemporaryFile("prefix", "temp", FD2, TempPath2));
345 ASSERT_TRUE(TempPath2.endswith(".temp"));
346 ASSERT_NE(TempPath.str(), TempPath2.str())
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldURLClassLoaderTest.java 237 String tempPath2 = tempFile2.getAbsolutePath();
238 URLClassLoader urlLoader = getURLClassLoader(tempPath1, tempPath2);
245 urlLoader = getURLClassLoader(tempPath1, tempPath2, tempPath3);

Completed in 218 milliseconds