Home
last modified time | relevance | path

Searched refs:newCell (Results 1 – 11 of 11) 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/llvm-project/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/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/autotest/client/site_tests/audio_WebRtcAudioLoopback/
Daudio_loopback_test.js30 var newCell = this.row.insertCell(-1);
33 newCell.appendChild(audio);
/external/cldr/tools/java/org/unicode/cldr/util/
DStateDictionary.java638 String newCell = row.toStringCells(); in flatten() local
639 if (!newCell.equals(oldCell)) { in flatten()
644 oldCell = newCell; in flatten()
/external/llvm-project/lld/COFF/
DDebugTypes.cpp902 uint32_t insert(GloballyHashedType ghash, GHashCell newCell);
972 uint32_t GHashTable::insert(GloballyHashedType ghash, GHashCell newCell) { in insert() argument
973 assert(!newCell.isEmpty() && "cannot insert empty cell value"); in insert()
994 if (!oldCell.isEmpty() && oldCell < newCell) in insert()
998 if (cellPtr->compare_exchange_weak(oldCell, newCell)) in insert()
/external/python/pycparser/utils/benchmark/inputs/
Dsqlite-btree.c.ppout9876 unsigned char *newCell = 0;
9989 newCell = pBt->pTmpSpace;
9990 assert( newCell!=0 );
9991 rc = fillInCell(pPage, newCell, pX, &szNew);
9993 assert( szNew==pPage->xCellSize(pPage, newCell) );
10005 memcpy(newCell, oldCell, 4);
10014 memcpy(oldCell, newCell, szNew);
10026 insertCell(pPage, idx, newCell, szNew, 0, 0, &rc);
/external/rust/crates/libsqlite3-sys/sqlite3/
Dsqlite3.c73129 unsigned char *newCell = 0;
73274 newCell = pBt->pTmpSpace;
73275 assert( newCell!=0 );
73276 rc = fillInCell(pPage, newCell, pX, &szNew);
73278 assert( szNew==pPage->xCellSize(pPage, newCell) );
73290 memcpy(newCell, oldCell, 4);
73314 memcpy(oldCell, newCell, szNew);
73326 insertCell(pPage, idx, newCell, szNew, 0, 0, &rc);
/external/sqlite/dist/orig/
Dsqlite3.c72978 unsigned char *newCell = 0;
73119 newCell = pBt->pTmpSpace;
73120 assert( newCell!=0 );
73121 rc = fillInCell(pPage, newCell, pX, &szNew);
73123 assert( szNew==pPage->xCellSize(pPage, newCell) );
73135 memcpy(newCell, oldCell, 4);
73159 memcpy(oldCell, newCell, szNew);
73171 insertCell(pPage, idx, newCell, szNew, 0, 0, &rc);
/external/sqlite/dist/
Dsqlite3.c72994 unsigned char *newCell = 0;
73135 newCell = pBt->pTmpSpace;
73136 assert( newCell!=0 );
73137 rc = fillInCell(pPage, newCell, pX, &szNew);
73139 assert( szNew==pPage->xCellSize(pPage, newCell) );
73151 memcpy(newCell, oldCell, 4);
73175 memcpy(oldCell, newCell, szNew);
73187 insertCell(pPage, idx, newCell, szNew, 0, 0, &rc);