Home
last modified time | relevance | path

Searched defs:ColumnInfo (Results 1 – 3 of 3) sorted by relevance

/developtools/smartperf_host/smartperf_host/trace_streamer/sdk/demo_sdk/table/
Ddemo_table_base.h96 struct ColumnInfo { struct
97ColumnInfo(const std::string &name, const std::string &type) : columnName(name), columnType(type) … in ColumnInfo() argument
98 std::string columnName;
99 std::string columnType;
/developtools/smartperf_host/smartperf_host/trace_streamer/src/table/base/include/
Dtable_base.h143 struct ColumnInfo { struct
144 ColumnInfo(const std::string &name, const std::string &type) : name_(name), type_(type) {} in ColumnInfo() argument
145 std::string name_;
146 std::string type_;
/developtools/smartperf_host/smartperf_host/trace_streamer/src/table/base/
Dspan_join.cpp425 const auto ColumnInfo = spanTable_->mTableColumnInfo_[column]; in Column() local