Home
last modified time | relevance | path

Searched refs:rowList (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/custom/
DV8SQLResultSetRowListCustom.cpp56 SQLResultSetRowList* rowList = V8SQLResultSetRowList::toNative(args.Holder()); in itemCallback() local
59 if (index >= rowList->length()) { in itemCallback()
65 unsigned numColumns = rowList->columnNames().size(); in itemCallback()
69 const SQLValue& sqlValue = rowList->values()[valuesIndex + i]; in itemCallback()
85 …item->Set(v8String(rowList->columnNames()[i]), value, static_cast<v8::PropertyAttribute>(v8::DontD… in itemCallback()
/external/guava/guava/src/com/google/common/collect/
DArrayTable.java138 private final ImmutableList<R> rowList; field in ArrayTable
148 this.rowList = ImmutableList.copyOf(rowKeys); in ArrayTable()
150 checkArgument(!rowList.isEmpty()); in ArrayTable()
159 for (int i = 0; i < rowList.size(); i++) { in ArrayTable()
160 rowBuilder.put(rowList.get(i), i); in ArrayTable()
172 = (V[][]) new Object[rowList.size()][columnList.size()]; in ArrayTable()
182 rowList = table.rowList; in ArrayTable()
187 V[][] copy = (V[][]) new Object[rowList.size()][columnList.size()]; in ArrayTable()
189 for (int i = 0; i < rowList.size(); i++) { in ArrayTable()
199 return rowList; in rowKeyList()
[all …]
DRegularImmutableTable.java145 List<R> rowList = Lists.newArrayList(rowSpace); in forCellsInternal() local
146 Collections.sort(rowList, rowComparator); in forCellsInternal()
147 rowSpace = ImmutableSet.copyOf(rowList); in forCellsInternal()
/external/webkit/Source/WebCore/inspector/
DInspectorDatabaseAgent.cpp104 SQLResultSetRowList* rowList = resultSet->rows(); in handleEvent() local
107 const Vector<String>& columns = rowList->columnNames(); in handleEvent()
112 const Vector<SQLValue>& data = rowList->values(); in handleEvent()
114 const SQLValue& value = rowList->values()[i]; in handleEvent()