Home
last modified time | relevance | path

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

/test/ostest/wukong/report/src/
Dformat_csv.cpp31 void FormatCSV::FormatDetail(std::shared_ptr<Table> tablePtr, std::string &target) in FormatDetail() argument
33 std::vector<std::string> header = tablePtr->GetHeader(); in FormatDetail()
34 std::vector<std::vector<std::string>> record = tablePtr->GetRecord(); in FormatDetail()
35 std::vector<int> column_size_ = tablePtr->GetColumnSize(); in FormatDetail()
38 ss << "name, " << tablePtr->GetName() << ", detail, " << tablePtr->GetDetail() << std::endl; in FormatDetail()
Dformat_json.cpp28 void FormatJSON::FormatDetail(std::shared_ptr<Table> tablePtr, std::string &target) in FormatDetail() argument
30 std::vector<std::string> header = tablePtr->GetHeader(); in FormatDetail()
31 std::vector<std::vector<std::string>> record = tablePtr->GetRecord(); in FormatDetail()
Dformat.cpp26 void Format::FormatDetail(std::shared_ptr<Table> tablePtr, std::string &target) in FormatDetail() argument
/test/ostest/wukong/report/include/
Dformat_csv.h27 void FormatDetail(std::shared_ptr<Table> tablePtr, std::string &target);
Dformat_json.h30 void FormatDetail(std::shared_ptr<Table> tablePtr, std::string &target);
Dformat.h32 virtual void FormatDetail(std::shared_ptr<Table> tablePtr, std::string &target);