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

  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 37 std::string infoFile = getRemapInfoFile(outputDir);
39 llvm::sys::fs::remove(infoFile, existed);
46 llvm::sys::Path infoFile = dir;
47 infoFile.appendComponent("remap");
48 return infoFile.str();
55 std::string infoFile = getRemapInfoFile(outputDir);
57 llvm::sys::fs::exists(infoFile, fileExists);
64 if (llvm::error_code ec = llvm::MemoryBuffer::getFile(infoFile.c_str(),
66 return report("Error opening file: " + infoFile, Diag);
113 std::string infoFile = getRemapInfoFile(outputDir)
    [all...]
  /frameworks/compile/libbcc/lib/ExecutionEngine/
Script.cpp 271 FileHandle infoFile;
272 if (infoFile.open(infoPath.c_str(), OpenMode::Read) < 0) {
300 return !reader.checkCacheFile(&objFile, &infoFile, this);
303 ScriptCached *cached = reader.readCacheFile(&objFile, &infoFile, this);
408 FileHandle infoFile;
411 infoFile.open(infoPath.c_str(), OpenMode::Write) >= 0) {
440 if (!writer.writeCacheFile(&objFile, &infoFile, this, libRS_threadable)) {
449 infoFile.truncate();
450 infoFile.close();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/discovery/
NdkDiscoveredPathInfo.java 132 File infoFile = getInfoFile();
133 infoFile.getParentFile().mkdirs();
134 PrintStream out = new PrintStream(infoFile);
164 File infoFile = getInfoFile();
165 if (!infoFile.exists())
172 BufferedReader reader = new BufferedReader(new FileReader(infoFile));

Completed in 1223 milliseconds