Home
last modified time | relevance | path

Searched refs:newCell (Results 1 – 8 of 8) sorted by relevance

/external/emma/core/java12/com/vladium/emma/report/html/
DReportGenerator.java191 final HTMLTable.ICell headercell = header.newCell (); in visit()
201 final HTMLTable.ICell cell = coverage.newCell (); in visit()
217 row.newCell ().setText ("total packages:", true); in visit()
218 row.newCell ().setText ("" + item.getChildCount (), false); in visit()
223 row.newCell ().setText ("total executable files:", true); in visit()
224 … row.newCell ().setText ("" + item.getAggregate (IItem.TOTAL_SRCFILE_COUNT), false); in visit()
228 row.newCell ().setText ("total classes:", true); in visit()
229 row.newCell ().setText ("" + item.getAggregate (IItem.TOTAL_CLASS_COUNT), true); in visit()
231 row.newCell ().setText ("total methods:", true); in visit()
232 row.newCell ().setText ("" + item.getAggregate (IItem.TOTAL_METHOD_COUNT), true); in visit()
[all …]
/external/clang/test/Analysis/inlining/
Dassume-super-init-does-not-return-nil.m37 Cell *newCell = [[Cell alloc] init];
38 newCell->x = 5; // no-warning
39 [newCell release];
/external/emma/core/java12/com/vladium/emma/report/html/doc/
DHTMLTable.java28 ICell newCell (); in newCell() method
108 public ICell newCell () in newCell() method in HTMLTable.Row
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderTableCell.cpp1276 RenderTableCell* newCell = RenderTableCell::createAnonymous(&parent->document()); in createAnonymousWithParentRenderer() local
1278 newCell->setStyle(newStyle.release()); in createAnonymousWithParentRenderer()
1279 return newCell; in createAnonymousWithParentRenderer()
/external/chromium_org/third_party/sqlite/src/src/
Dbtree.c6656 unsigned char *newCell = 0; in sqlite3BtreeInsert() local
6709 newCell = pBt->pTmpSpace; in sqlite3BtreeInsert()
6710 if( newCell==0 ) return SQLITE_NOMEM; in sqlite3BtreeInsert()
6711 rc = fillInCell(pPage, newCell, pKey, nKey, pData, nData, nZero, &szNew); in sqlite3BtreeInsert()
6713 assert( szNew==cellSizePtr(pPage, newCell) ); in sqlite3BtreeInsert()
6725 memcpy(newCell, oldCell, 4); in sqlite3BtreeInsert()
6737 insertCell(pPage, idx, newCell, szNew, 0, 0, &rc); in sqlite3BtreeInsert()
/external/chromium_org/third_party/sqlite/amalgamation/
Dsqlite3.c53954 unsigned char *newCell = 0;
54007 newCell = pBt->pTmpSpace;
54008 if( newCell==0 ) return SQLITE_NOMEM;
54009 rc = fillInCell(pPage, newCell, pKey, nKey, pData, nData, nZero, &szNew);
54011 assert( szNew==cellSizePtr(pPage, newCell) );
54023 memcpy(newCell, oldCell, 4);
54035 insertCell(pPage, idx, newCell, szNew, 0, 0, &rc);
/external/sqlite/dist/orig/
Dsqlite3.c56137 unsigned char *newCell = 0;
56191 newCell = pBt->pTmpSpace;
56192 if( newCell==0 ) return SQLITE_NOMEM;
56193 rc = fillInCell(pPage, newCell, pKey, nKey, pData, nData, nZero, &szNew);
56195 assert( szNew==cellSizePtr(pPage, newCell) );
56207 memcpy(newCell, oldCell, 4);
56219 insertCell(pPage, idx, newCell, szNew, 0, 0, &rc);
/external/sqlite/dist/
Dsqlite3.c56165 unsigned char *newCell = 0;
56219 newCell = pBt->pTmpSpace;
56220 if( newCell==0 ) return SQLITE_NOMEM;
56221 rc = fillInCell(pPage, newCell, pKey, nKey, pData, nData, nZero, &szNew);
56223 assert( szNew==cellSizePtr(pPage, newCell) );
56235 memcpy(newCell, oldCell, 4);
56247 insertCell(pPage, idx, newCell, szNew, 0, 0, &rc);