Searched refs:RowMap (Results 1 - 6 of 6) sorted by relevance

/external/chromium/chrome/browser/importer/
H A Dmork_reader.h85 typedef std::map<IDString, ColumnDataList*> RowMap; typedef in class:MorkReader
87 typedef RowMap::const_iterator iterator;
158 RowMap table_;
H A Dmork_reader.cc112 for (RowMap::iterator i = table_.begin(); i != table_.end(); ++i)
318 RowMap::iterator found_row = table_.find(row_id);
/external/guava/guava/src/com/google/common/collect/
H A DArrayTable.java755 private transient RowMap rowMap;
759 RowMap map = rowMap;
760 return (map == null) ? rowMap = new RowMap() : map;
763 private class RowMap extends AbstractMap<R, Map<C, V>> { class in class:ArrayTable
H A DStandardRowSortedTable.java132 private class RowSortedMap extends RowMap implements SortedMap<R, Map<C, V>> {
H A DStandardTable.java932 private transient RowMap rowMap;
935 RowMap result = rowMap;
936 return (result == null) ? rowMap = new RowMap() : result;
939 class RowMap extends Maps.ImprovedAbstractMap<R, Map<C, V>> { class in class:StandardTable
/external/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp641 SmallVector<unsigned, 4> RowMap; local
658 RowMap.push_back(Found);
664 << " RowMap[" << SubRegIndices.size() << "] = {\n ";
666 OS << RowMap[i] << ", "; local
687 OS << " return Rows[RowMap[IdxA]][IdxB];\n";

Completed in 138 milliseconds