/external/toolchain-utils/cros_utils/ |
D | tabulator.py | 229 def _Literal(self, cell, values, baseline_values): argument 230 cell.value = ' '.join([str(v) for v in values]) 232 def _ComputeFloat(self, cell, values, baseline_values): argument 233 self._Literal(cell, values, baseline_values) 235 def _ComputeString(self, cell, values, baseline_values): argument 236 self._Literal(cell, values, baseline_values) 238 def _InvertIfLowerIsBetter(self, cell): argument 252 def Compute(self, cell, values, baseline_values): argument 264 cell.value = '' 279 cell.value = '' [all …]
|
D | tabulator_test.py | 21 cell = tabulator.Cell() 22 result.Compute(cell, table[2], table[1]) 24 self.assertTrue(cell.value == expected) 27 cell = tabulator.Cell() 28 result.Compute(cell, table[2], table[1]) 29 self.assertTrue(cell.value == float(table[2][0])) 33 cell = tabulator.Cell() 36 smr.Compute(cell, values, None) 37 self.assertTrue(cell.value == value) 39 smr.Compute(cell, values, None) [all …]
|
/external/gemmlowp/internal/ |
D | pack_neon.h | 77 for (int cell = 0; cell < kCells; cell++) { in Pack() local 79 src_lines_intertwined_4x[2 * cell + outer].val[inner]); in Pack() 83 for (int cell = 0; cell < kCells; cell++) { in Pack() local 85 src_lines_intertwined_4x[2 * cell + outer].val[inner]); in Pack() 96 for (int cell = 0; cell < kCells; cell++) { in Pack() local 97 sums_of_2_cells[cell][i] = vaddl_u8( in Pack() 99 src_lines_intertwined_4x[2 * cell + outer].val[inner]), in Pack() 101 src_lines_intertwined_4x[2 * cell + outer].val[inner])); in Pack() 107 for (int cell = 0; cell < kCells; cell++) { in Pack() local 108 sums_of_4_cells[cell][i] = vreinterpretq_s32_u32( in Pack() [all …]
|
/external/python/cpython2/Doc/c-api/ |
D | cell.rst | 9 For each such variable, a cell object is created to store the value; the local 12 accessed, the value contained in the cell is used instead of the cell object 13 itself. This de-referencing of the cell object requires support from the 20 The C structure used for cell objects. 25 The type object corresponding to cell objects. 30 Return true if *ob* is a cell object; *ob* must not be *NULL*. 35 Create and return a new cell object containing the value *ob*. The parameter may 39 .. c:function:: PyObject* PyCell_Get(PyObject *cell) 41 Return the contents of the cell *cell*. 44 .. c:function:: PyObject* PyCell_GET(PyObject *cell) [all …]
|
/external/autotest/frontend/client/src/autotest/common/spreadsheet/ |
D | SpreadsheetSelectionManager.java | 30 public void toggleSelected(CellInfo cell) { in toggleSelected() argument 31 if (selectedCells.contains(cell)) { in toggleSelected() 32 deselectCell(cell); in toggleSelected() 33 notifyDeselected(Utils.wrapObjectWithList(cell)); in toggleSelected() 35 selectCell(cell); in toggleSelected() 36 notifySelected(Utils.wrapObjectWithList(cell)); in toggleSelected() 40 private void selectCell(CellInfo cell) { in selectCell() argument 41 selectedCells.add(cell); in selectCell() 42 spreadsheet.setHighlighted(cell, true); in selectCell() 45 private void deselectCell(CellInfo cell) { in deselectCell() argument [all …]
|
/external/python/cpython2/Demo/tkinter/guido/ |
D | ss1.py | 38 m.cell = self.cellvalue 43 cell = self.getcell(x, y) 44 if hasattr(cell, 'recalc'): 45 return cell.recalc(self.rexec) 47 return cell 63 def setcell(self, x, y, cell): argument 65 assert isinstance(cell, BaseCell) 66 self.cells[x, y] = cell 102 cell = self.cells[x, y] 103 if hasattr(cell, 'renumber'): [all …]
|
/external/skia/src/views/mac/ |
D | SkOptionsTableView.mm | 175 - (void)tableView:(NSTableView *)tableView willDisplayCell:(id)cell forTableColumn:(NSTableColumn *… 185 [cell selectItemAtIndex:[(NSPopUpButtonCell*)storedCell indexOfSelectedItem]]; 188 [cell setFloatValue:[storedCell floatValue]]; 191 [cell setState:[(NSButtonCell*)storedCell state]]; 195 [cell setStringValue:[storedCell stringValue]]; 198 [cell setState:[(NSButtonCell*)storedCell state]]; 205 [(SkTextFieldCell*)cell setEditable:NO]; 213 NSCell* cell = option.fCell; 220 [(NSPopUpButtonCell*)cell selectItemAtIndex:[anObject intValue]]; 224 [cell setFloatValue:[anObject floatValue]]; [all …]
|
/external/libchrome/base/trace_event/ |
D | heap_profiler_allocation_register.h | 71 Cell* cell = *p_cell; in Insert() local 72 if (cell) { in Insert() 73 return {static_cast<KVIndex>(cell - cells_), false}; // not inserted in Insert() 77 *p_cell = cell = GetFreeCell(); in Insert() 78 cell->p_prev = p_cell; in Insert() 79 cell->next = nullptr; in Insert() 83 new (&cell->kv) KVPair(key, value); in Insert() 85 return {static_cast<KVIndex>(cell - cells_), true}; // inserted in Insert() 91 Cell* cell = &cells_[index]; in Remove() local 94 *cell->p_prev = cell->next; in Remove() [all …]
|
/external/jemalloc/src/ |
D | ckh.c | 55 ckhc_t *cell; in ckh_bucket_search() local 59 cell = &ckh->tab[(bucket << LG_CKH_BUCKET_CELLS) + i]; in ckh_bucket_search() 60 if (cell->key != NULL && ckh->keycomp(key, cell->key)) in ckh_bucket_search() 73 size_t hashes[2], bucket, cell; in ckh_isearch() local 81 cell = ckh_bucket_search(ckh, bucket, key); in ckh_isearch() 82 if (cell != SIZE_T_MAX) in ckh_isearch() 83 return (cell); in ckh_isearch() 87 cell = ckh_bucket_search(ckh, bucket, key); in ckh_isearch() 88 return (cell); in ckh_isearch() 95 ckhc_t *cell; in ckh_try_bucket_insert() local [all …]
|
/external/autotest/frontend/client/src/autotest/common/table/ |
D | TableRenderer.java | 31 for (CellInfo cell : row) { in renderRowsAndAppend() 32 if (cell == null && renderNull) { in renderRowsAndAppend() 34 } else if (cell != null) { in renderRowsAndAppend() 36 if (cell.cssClass != null) { in renderRowsAndAppend() 37 tdAttributes += attributeString("class", cell.cssClass); in renderRowsAndAppend() 39 if (cell.rowSpan > 1) { in renderRowsAndAppend() 40 tdAttributes += attributeString("rowspan", Integer.toString(cell.rowSpan)); in renderRowsAndAppend() 42 if (cell.colSpan > 1) { in renderRowsAndAppend() 43 tdAttributes += attributeString("colspan", Integer.toString(cell.colSpan)); in renderRowsAndAppend() 46 if (cell.widthPx != null) { in renderRowsAndAppend() [all …]
|
D | TableClickWidget.java | 14 private int cell; field in TableClickWidget 21 int row, int cell) { in TableClickWidget() argument 24 this.cell = cell; in TableClickWidget() 40 return cell; in getCell()
|
/external/skia/experimental/iOSSampleApp/Shared/ |
D | SkOptionListController.mm | 43 UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; 44 if (cell == nil) { 45 …cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIde… 48 cell.textLabel.text = [fOptions objectAtIndex:indexPath.row]; 50 cell.accessoryType = UITableViewCellAccessoryCheckmark; 51 self.fSelectedCell = cell; 54 cell.accessoryType = UITableViewCellAccessoryNone; 56 return cell; 63 UITableViewCell* cell = [tableView cellForRowAtIndexPath:indexPath]; 65 self.fSelectedCell = cell; [all …]
|
D | SkOptionsTableViewController.mm | 143 UITableViewCell* cell = (UITableViewCell*)(((UIView*)sender).superview); 144 NSUInteger index = [self convertPathToIndex:[self.tableView indexPathForCell:cell]]; 148 cell.detailTextLabel.text = [NSString stringWithFormat:@"%1.1f", slider.value]; 177 UITableViewCell* cell = [[[UITableViewCell alloc] 180 cell.textLabel.text = title; 181 return cell; 185 UITableViewCell* cell = [[[UITableViewCell alloc] 188 cell.textLabel.text = title; 189 cell.selectionStyle = UITableViewCellSelectionStyleNone; 195 cell.accessoryView = switchView; [all …]
|
/external/libvterm/src/ |
D | screen.c | 39 static int vterm_screen_set_cell(VTermScreen *screen, VTermPos pos, const VTermScreenCell *cell); 175 ScreenCell *cell = getcell(screen, pos.row, pos.col); in putglyph() local 177 if(!cell) in putglyph() 182 cell->chars[i] = info->chars[i]; in putglyph() 183 cell->pen = screen->pen; in putglyph() 186 cell->chars[i] = 0; in putglyph() 198 cell->pen.protected_cell = info->protected_cell; in putglyph() 199 cell->pen.dwl = info->dwl; in putglyph() 200 cell->pen.dhl = info->dhl; in putglyph() 273 ScreenCell *cell = getcell(screen, row, col); in erase_internal() local [all …]
|
/external/guava/guava/src/com/google/common/collect/ |
D | AbstractTable.java | 101 for (Table.Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) { in putAll() 102 put(cell.getRowKey(), cell.getColumnKey(), cell.getValue()); in putAll() 124 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) o; in contains() local 125 Map<C, V> row = Maps.safeGet(rowMap(), cell.getRowKey()); in contains() 127 row.entrySet(), Maps.immutableEntry(cell.getColumnKey(), cell.getValue())); in contains() 135 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) o; in remove() local 136 Map<C, V> row = Maps.safeGet(rowMap(), cell.getRowKey()); in remove() 138 row.entrySet(), Maps.immutableEntry(cell.getColumnKey(), cell.getValue())); in remove() 174 V transform(Cell<R, C, V> cell) { in valuesIterator() 175 return cell.getValue(); in valuesIterator()
|
D | ImmutableTable.java | 100 for (Cell<? extends R, ? extends C, ? extends V> cell : in copyOf() 106 cellSetBuilder.add(cellOf((R) cell.getRowKey(), in copyOf() 107 (C) cell.getColumnKey(), (V) cell.getValue())); in copyOf() 201 Cell<? extends R, ? extends C, ? extends V> cell) { in put() argument 202 if (cell instanceof Tables.ImmutableCell) { in put() 203 checkNotNull(cell.getRowKey()); in put() 204 checkNotNull(cell.getColumnKey()); in put() 205 checkNotNull(cell.getValue()); in put() 207 Cell<R, C, V> immutableCell = (Cell<R, C, V>) cell; in put() 210 put(cell.getRowKey(), cell.getColumnKey(), cell.getValue()); in put() [all …]
|
/external/icu/icu4c/source/tools/toolutil/ |
D | ucmstate.c | 335 int32_t entry, sum, state, cell, count; in sumUpStates() local 355 for(cell=0; cell<256; ++cell) { in sumUpStates() 356 entry=states->stateTable[state][cell]; in sumUpStates() 360 states->stateTable[state][cell]=MBCS_ENTRY_FINAL_SET_VALUE(entry, sum); in sumUpStates() 364 states->stateTable[state][cell]=MBCS_ENTRY_FINAL_SET_VALUE(entry, sum); in sumUpStates() 375 for(cell=0; cell<256; ++cell) { in sumUpStates() 376 entry=states->stateTable[state][cell]; in sumUpStates() 379 … states->stateTable[state][cell]=MBCS_ENTRY_TRANSITION_SET_OFFSET(entry, sum); in sumUpStates() 412 for(cell=0; cell<256; ++cell) { in sumUpStates() 413 entry=states->stateTable[state][cell]; in sumUpStates() [all …]
|
/external/valgrind/memcheck/tests/ |
D | leak-pool.c | 9 struct cell struct 11 struct cell *next; argument 92 struct cell *cells_static[N]; 97 struct cell *cells_local[N]; in main() 101 struct cell **cells = static_roots ? cells_static : cells_local; in main() 114 cells[i] = allocate_from_pool(p, sizeof(struct cell)); in main() 119 p->buf+(10 * sizeof(struct cell)), in main() 120 20 * sizeof(struct cell) + 2); in main()
|
D | leak-autofreepool.c | 35 struct cell struct 37 struct cell *next; argument 57 static struct cell *cells_plain[2 * N]; argument 58 static struct cell *cells_meta[2 * N]; 243 cells_plain[i] = allocate_plain_style(PlainPool,sizeof(struct cell)); in main() 251 cells_meta[i] = allocate_meta_style(MetaPool,sizeof(struct cell)); in main() 316 pool_block_size = nr_elts * sizeof(struct cell) + sizeof(uint8_t) + 1; in main() 348 (void) allocate_meta_style (&perf_meta_pool, sizeof(struct cell)); in main() 349 (void) allocate_plain_style (&perf_plain_pool, sizeof(struct cell)); in main()
|
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/ |
D | Table_Suite.py | 18 class cell(aetools.ComponentItem): class 30 cells = cell 53 cell._superclassnames = [] 54 cell._privpropdict = { 58 cell._privelemdict = { 87 'ccel' : cell,
|
/external/emma/core/java12/com/vladium/emma/report/html/ |
D | ReportGenerator.java | 201 final HTMLTable.ICell cell = coverage.newCell (); in visit() local 202 cell.setText (buf.toString (), true); in visit() 203 if (fail) cell.setClass (CSS_DATA_HIGHLIGHT); in visit() 380 final HTMLTable.ICell cell = coverage.newCell (); in visit() local 381 cell.setText (buf.toString (), true); in visit() 382 if (fail) cell.setClass (CSS_DATA_HIGHLIGHT); in visit() 497 final HTMLTable.ICell cell = coverage.newCell (); in visit() local 498 cell.setText (buf.toString (), true); in visit() 499 if (fail) cell.setClass (CSS_DATA_HIGHLIGHT); in visit() 674 final HTMLTable.ICell cell = coverage.newCell (); in visit() local [all …]
|
/external/python/cpython2/Lib/ctypes/test/ |
D | test_incomplete.py | 13 class cell(Structure): class 17 SetPointerType(lpcell, cell) 19 c1 = cell() 21 c2 = cell() 37 del _pointer_type_cache[cell]
|
/external/v8/src/ |
D | feedback-vector.cc | 202 Handle<Cell> cell = factory->NewNoClosuresCell(undefined_value); in New() local 203 array->set(index, *cell); in New() 411 Handle<WeakCell> cell = Map::WeakCellForMap(map); in InstallHandlers() local 412 array->set(current * 2, *cell); in InstallHandlers() 636 Handle<WeakCell> cell = Map::WeakCellForMap(receiver_map); in ConfigureMonomorphic() local 637 SetFeedback(*cell); in ConfigureMonomorphic() 648 void LoadGlobalICNexus::ConfigurePropertyCellMode(Handle<PropertyCell> cell) { in ConfigurePropertyCellMode() argument 650 SetFeedback(*isolate->factory()->NewWeakCell(cell)); in ConfigurePropertyCellMode() 663 Handle<WeakCell> cell = Map::WeakCellForMap(receiver_map); in ConfigureMonomorphic() local 665 SetFeedback(*cell); in ConfigureMonomorphic() [all …]
|
/external/v8/src/heap/ |
D | marking.h | 17 inline MarkBit(CellType* cell, CellType mask) : cell_(cell), mask_(mask) {} in MarkBit() argument 26 inline CellType* cell() { return cell_; } in cell() function 101 MarkBit::CellType* cell = this->cells() + (index >> kBitsPerCellLog2); in MarkBitFromIndex() local 102 return MarkBit(cell, mask); in MarkBitFromIndex() 215 void Print(uint32_t pos, uint32_t cell) { in Print() argument 216 if (cell == seq_type) { in Print() 223 if (IsSeq(cell)) { in Print() 226 seq_type = cell; in Print() 231 PrintWord(cell); in Print() 243 static bool IsSeq(uint32_t cell) { return cell == 0 || cell == 0xFFFFFFFF; } in IsSeq() argument
|
/external/autotest/client/cros/cellular/ |
D | forward_8960_screen | 66 [cell] = sys.argv[1:] 75 c = labconfig.Configuration(['--cell=%s' % (cell)]) 77 basestation_ip = c.cell['basestations'][0]['bs_addresses'][0] 78 bastion_ip = c.cell['perfserver']['address'] 102 'cell': cell})
|