Home
last modified time | relevance | path

Searched refs:outPutFileName (Results 1 – 3 of 3) sorted by relevance

/drivers/hdf_core/framework/tools/hc-gen/src/
Ddecompile.cpp321 std::string outPutFileName = Option::Instance().GetOutputName(); in DoDecompile() local
322 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()
Ddecompile_gen.h21 DecompileGen(std::shared_ptr<Ast> ast, std::string outPutFileName);
Ddecompile_gen.cpp16 DecompileGen::DecompileGen(std::shared_ptr<Ast> ast, std::string outPutFileName) in DecompileGen() argument
18 outPutFileName_(Util::File::StripSuffix(std::move(outPutFileName)).append(".d.hcs")), in DecompileGen()