Home
last modified time | relevance | path

Searched refs:TmpFile (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/clang/tools/clang-nvlink-wrapper/
H A DClangNvlinkWrapper.cpp139 for (auto &TmpFile : TmpFiles) { in cleanupTmpFiles() local
140 if (std::error_code EC = sys::fs::remove(TmpFile)) in cleanupTmpFiles()
141 return createFileError(TmpFile, errc::no_such_file_or_directory); in cleanupTmpFiles()
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/
H A Downing-memory-legacy-functions.cpp189 FILE *TmpFile = tmpfile(); in test_legacy_consumers() local
191 FILE *File6 = freopen("testfile.txt", "w", TmpFile); // Bad, both return and argument in test_legacy_consumers()
/llvm-project-15.0.7/clang/tools/scan-build/libexec/
H A Dccc-analyzer34 my ($TmpFH, $TmpFile) = tempfile("temp_buf_XXXXXX",
37 open(STDOUT, ">$TmpFile");
/llvm-project-15.0.7/clang/lib/Driver/ToolChains/
H A DHIPSPV.cpp33 auto TmpFile = C.getDriver().GetTemporaryPath(Prefix, Extension); in getTempFile() local
34 return C.addTempFile(C.getArgs().MakeArgString(TmpFile)); in getTempFile()
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Ddwarf2yaml.cpp395 DWARFYAML::File TmpFile; in dumpDebugLines() local
396 if (dumpFileEntry(LineData, Offset, TmpFile)) in dumpDebugLines()
397 DebugLines.Files.push_back(TmpFile); in dumpDebugLines()
/llvm-project-15.0.7/clang/lib/Frontend/
H A DPrecompiledPreamble.cpp204 if (const char *TmpFile = ::getenv("CINDEXTEST_PREAMBLE_FILE")) in create() local
205 return std::unique_ptr<TempPCHFile>(new TempPCHFile(TmpFile)); in create()