Searched defs:RowMap (Results 1 - 3 of 3) 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_;
/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 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

Completed in 155 milliseconds