Home | History | Annotate | Download | only in source

Lines Matching refs:tables_

323     tables_(),
334 for (TableMap::iterator it = tables_.begin(); it != tables_.end();) {
337 tables_.erase(it++);
385 if (tables_.count(table_name) > 0)
387 tables_[table_name] = new LogTable();
388 if (tables_[table_name]->CreateLogFile(table_name + ".txt") == -1)
397 if (tables_.count(table_name) == 0)
399 return tables_[table_name]->AddColumn(column_name, multi_value_length);
406 assert(tables_.count(table_name) > 0);
407 if (tables_.count(table_name) == 0)
409 return tables_[table_name]->InsertCell(column_name, value_container);
414 if (tables_.count(table_name) == 0)
416 tables_[table_name]->NextRow();
419 tables_[table_name]->Flush();
429 for (TableMap::iterator it = tables_.begin(); it != tables_.end(); ++it) {