Home
last modified time | relevance | path

Searched refs:fileName_ (Results 1 – 5 of 5) sorted by relevance

/drivers/hdf_core/framework/tools/hdi-gen/codegen/
Dcode_emitter.h30 HeaderFile(HeaderFileType type, std::string fileName) : type_(type), fileName_(fileName) {} in HeaderFile()
35 int compareRet = lhs.fileName_.compare(rhs.fileName_); in operator()
53 return StringHelper::Format("#include \"%s.h\"", fileName_.c_str()); in ToString()
57 return StringHelper::Format("#include <%s.h>", fileName_.c_str()); in ToString()
59 return StringHelper::Format("#include <%s>", fileName_.c_str()); in ToString()
68 std::string fileName_; member
/drivers/hdf_core/framework/tools/hdi-gen/preprocessor/
Dpreprocessor.h26 return StringHelper::Format("%s.%s", packageName_.c_str(), fileName_.c_str()); in GetFullName()
33 std::string fileName_; variable
Dpreprocessor.cpp26 sb.AppendFormat("fileName:%s\n", fileName_.c_str()); in Dump()
136 info.fileName_ = StringHelper::SubStr(info.filePath_, startIndex + 1, endIndex); in ParseFileDetail()
/drivers/hdf_core/framework/tools/hc-gen/src/
Ddecompile.h74 std::string fileName_; variable
Ddecompile.cpp17 Decompile::Decompile(const std::string &fileName) : isAlign_(false), fileName_(fileName) {} in Decompile()
21 file_.open(fileName_.data(), std::ios::binary); in InitDecompileFile()
23 Logger().Error() << "Failed to open decompile file: " << fileName_; in InitDecompileFile()