Searched refs:outPutFileName (Results 1 – 3 of 3) sorted by relevance
321 std::string outPutFileName = Option::Instance().GetOutputName(); in DoDecompile() local322 if (outPutFileName.empty()) { in DoDecompile()323 outPutFileName = Option::Instance().GetSourceName(); in DoDecompile()324 } else if (!isalpha(outPutFileName[outPutFileName.length() - 1])) { in DoDecompile()325 outPutFileName.append(Option::Instance().GetSourceNameBase()); in DoDecompile()327 DecompileGen decompileGen(ast, outPutFileName); in DoDecompile()
21 DecompileGen(std::shared_ptr<Ast> ast, std::string outPutFileName);
16 DecompileGen::DecompileGen(std::shared_ptr<Ast> ast, std::string outPutFileName) in DecompileGen() argument18 outPutFileName_(Util::File::StripSuffix(std::move(outPutFileName)).append(".d.hcs")), in DecompileGen()