/external/emma/core/java12/com/vladium/emma/report/html/ |
D | ReportGenerator.java | 191 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/ |
D | assume-super-init-does-not-return-nil.m | 37 Cell *newCell = [[Cell alloc] init]; 38 newCell->x = 5; // no-warning 39 [newCell release];
|
/external/emma/core/java12/com/vladium/emma/report/html/doc/ |
D | HTMLTable.java | 28 ICell newCell (); in newCell() method 108 public ICell newCell () in newCell() method in HTMLTable.Row
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderTableCell.cpp | 1276 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/ |
D | btree.c | 6656 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/ |
D | sqlite3.c | 53954 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/ |
D | sqlite3.c | 56137 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/ |
D | sqlite3.c | 56165 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);
|