Home
last modified time | relevance | path

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

/external/icu4c/tools/toolutil/
Dpropsvec.c121 uint32_t *firstRow, *lastRow; in upvec_setValue() local
153 lastRow=firstRow; in upvec_setValue()
154 while(limit>(UChar32)lastRow[1]) { in upvec_setValue()
155 lastRow+=columns; in upvec_setValue()
164 splitLastRow= (UBool)(limit!=(UChar32)lastRow[1] && value!=(lastRow[column]&mask)); in upvec_setValue()
177 count = (int32_t)((pv+UPVEC_HEADER_LENGTH+rows*columns)-(lastRow+columns)); in upvec_setValue()
180 lastRow+(1+splitFirstRow+splitLastRow)*columns, in upvec_setValue()
181 lastRow+columns, in upvec_setValue()
189 count = (int32_t)((lastRow-firstRow)+columns); in upvec_setValue()
191 lastRow+=columns; in upvec_setValue()
[all …]
/external/webkit/WebCore/html/
DHTMLTableElement.cpp187 HTMLTableRowElement* lastRow = 0; in insertRow() local
190 lastRow = HTMLTableRowsCollection::lastRow(this); in insertRow()
193 row = HTMLTableRowsCollection::rowAfter(this, lastRow); in insertRow()
201 lastRow = row; in insertRow()
206 if (lastRow) in insertRow()
207 parent = row ? row->parent() : lastRow->parent(); in insertRow()
228 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