本文整理汇总了C++中Mapping::getRowCount方法的典型用法代码示例。如果您正苦于以下问题:C++ Mapping::getRowCount方法的具体用法?C++ Mapping::getRowCount怎么用?C++ Mapping::getRowCount使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mapping
的用法示例。
在下文中一共展示了Mapping::getRowCount方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: serialize
const string serialize(const Mapping& map)
{
string result = "";
size_t column = 0;
size_t source = 0;
size_t in_line = 0;
size_t in_col = 0;
size_t token = 0;
for(size_t i = 0; i < map.getRowCount(); ++i) {
Row row = map.rows[i];
for(size_t n = 0; n < row.getEntryCount(); ++n) {
Entry entry = row.getEntry(n);
if (entry.getType() == 1) {
result += encodeVLQ(entry.getCol() - column);
source = entry.getCol();
} else if (entry.getType() == 4) {
result += encodeVLQ(entry.getCol() - column);
result += encodeVLQ(entry.getSource() - source);
result += encodeVLQ(entry.getSrcLine() - in_line);
result += encodeVLQ(entry.getSrcCol() - in_col);
column = entry.getCol();
source = entry.getSource();
in_line = entry.getSrcLine();
in_col = entry.getSrcCol();
} else if (entry.getType() == 5) {
result += encodeVLQ(entry.getCol() - column);
result += encodeVLQ(entry.getSource() - source);
result += encodeVLQ(entry.getSrcLine() - in_line);
result += encodeVLQ(entry.getSrcCol() - in_col);
result += encodeVLQ(entry.getToken() - token);
column = entry.getCol();
source = entry.getSource();
in_line = entry.getSrcLine();
in_col = entry.getSrcCol();
token = entry.getToken();
}
if (n + 1 != row.getEntryCount()) result += ",";
}
if (i + 1 != map.getRowCount()) result += ";";
column = 0; }
return result;
}