Home
last modified time | relevance | path

Searched refs:lastRow (Results 1 – 5 of 5) sorted by relevance

/external/chromium/third_party/icu/source/common/
Dpropsvec.c156 uint32_t *firstRow, *lastRow; in upvec_setValue() local
187 lastRow=_findRow(pv, end); in upvec_setValue()
195 splitLastRow= (UBool)(limit!=(UChar32)lastRow[1] && value!=(lastRow[column]&mask)); in upvec_setValue()
222 lastRow=newVectors+(lastRow-pv->v); in upvec_setValue()
229 count = (int32_t)((pv->v+rows*columns)-(lastRow+columns)); in upvec_setValue()
232 lastRow+(1+splitFirstRow+splitLastRow)*columns, in upvec_setValue()
233 lastRow+columns, in upvec_setValue()
241 count = (int32_t)((lastRow-firstRow)+columns); in upvec_setValue()
243 lastRow+=columns; in upvec_setValue()
253 uprv_memcpy(lastRow+columns, lastRow, columns*4); in upvec_setValue()
[all …]
/external/icu4c/common/
Dpropsvec.c156 uint32_t *firstRow, *lastRow; in upvec_setValue() local
187 lastRow=_findRow(pv, end); in upvec_setValue()
195 splitLastRow= (UBool)(limit!=(UChar32)lastRow[1] && value!=(lastRow[column]&mask)); in upvec_setValue()
222 lastRow=newVectors+(lastRow-pv->v); in upvec_setValue()
229 count = (int32_t)((pv->v+rows*columns)-(lastRow+columns)); in upvec_setValue()
232 lastRow+(1+splitFirstRow+splitLastRow)*columns, in upvec_setValue()
233 lastRow+columns, in upvec_setValue()
241 count = (int32_t)((lastRow-firstRow)+columns); in upvec_setValue()
243 lastRow+=columns; in upvec_setValue()
253 uprv_memcpy(lastRow+columns, lastRow, columns*4); in upvec_setValue()
[all …]
/external/webkit/WebCore/html/
DHTMLTableElement.cpp188 HTMLTableRowElement* lastRow = 0; in insertRow() local
191 lastRow = HTMLTableRowsCollection::lastRow(this); in insertRow()
194 row = HTMLTableRowsCollection::rowAfter(this, lastRow); in insertRow()
202 lastRow = row; in insertRow()
207 if (lastRow) in insertRow()
208 parent = row ? row->parent() : lastRow->parent(); in insertRow()
229 row = HTMLTableRowsCollection::lastRow(this); in deleteRow()
DHTMLTableRowsCollection.h44 static HTMLTableRowElement* lastRow(HTMLTableElement*);
DHTMLTableRowsCollection.cpp117 HTMLTableRowElement* HTMLTableRowsCollection::lastRow(HTMLTableElement* table) in lastRow() function in WebCore::HTMLTableRowsCollection