Searched defs:cell (Results 1 - 25 of 138) sorted by relevance

123456

/external/python/cpython2/Lib/ctypes/test/
H A Dtest_incomplete.py12 lpcell = POINTER("cell")
13 class cell(Structure): class in function:MyTestCase.test_incomplete_example
17 SetPointerType(lpcell, cell)
19 c1 = cell()
21 c2 = cell()
37 del _pointer_type_cache[cell]
/external/autotest/frontend/client/src/autotest/common/table/
H A DTableClickWidget.java14 private int cell; field in class:TableClickWidget
21 int row, int cell) {
24 this.cell = cell;
40 return cell;
20 TableClickWidget(FocusWidget widget, TableWidgetClickListener listener, int row, int cell) argument
H A DDataTable.java64 public Widget createWidget(int row, int cell, JSONObject rowObject); argument
270 int cell = tableCell.getCellIndex();
272 if (isClickableWidgetColumn(cell) && table.getWidget(row, cell) != null) {
276 onCellClicked(row, cell, isRightClick);
279 protected void onCellClicked(int row, int cell, boolean isRightClick) { argument
H A DSelectionManager.java175 public Widget createWidget(int row, int cell, JSONObject rowObject) { argument
184 return new TableClickWidget(checkBox, this, row, cell);
/external/skia/bench/
H A DTableBench.cpp25 // This trio of drawRects is then repeat for the next cell.
46 SkRect cell = SkRect::MakeLTRB(col * kCellWidth, local
50 canvas->drawRect(cell, cellPaint);
/external/guava/guava/src/com/google/common/collect/
H A DSingletonImmutableTable.java26 * An implementation of {@link ImmutableTable} that holds a single cell.
42 SingletonImmutableTable(Cell<R, C, V> cell) { argument
43 this(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
H A DImmutableTable.java60 /** Returns an immutable table containing a single cell. */
100 for (Cell<? extends R, ? extends C, ? extends V> cell :
106 cellSetBuilder.add(cellOf((R) cell.getRowKey(),
107 (C) cell.getColumnKey(), (V) cell.getValue()));
148 * For empty or single-cell immutable tables, {@link #of()} and
196 * Adds the given {@code cell} to the table, making it immutable if
201 Cell<? extends R, ? extends C, ? extends V> cell) {
202 if (cell instanceof Tables.ImmutableCell) {
203 checkNotNull(cell
200 put( Cell<? extends R, ? extends C, ? extends V> cell) argument
[all...]
/external/ImageMagick/coders/
H A Dbraille.c290 unsigned char cell = 0;
297 cell |= (GetPixelIndex(image,p+x+dx+dy*image->columns) == polarity) << bit; \
299 cell |= (GetPixelGreen(image,p+x+dx+dy*image->columns) == 0) << bit; \
334 utf8[1] = 0x80|((0x28<<2)&0x3f)|(cell>>6);
335 utf8[2] = 0x80|(cell&0x3f);
341 (void) WriteBlobByte(image,cell);
356 (void) WriteBlobByte(image,iso_to_brf[cell]);
285 unsigned char cell = 0; local
/external/autotest/frontend/client/src/autotest/common/spreadsheet/
H A DSpreadsheetSelectionManager.java30 public void toggleSelected(CellInfo cell) { argument
31 if (selectedCells.contains(cell)) {
32 deselectCell(cell);
33 notifyDeselected(Utils.wrapObjectWithList(cell));
35 selectCell(cell);
36 notifySelected(Utils.wrapObjectWithList(cell));
40 private void selectCell(CellInfo cell) { argument
41 selectedCells.add(cell);
42 spreadsheet.setHighlighted(cell, true);
45 private void deselectCell(CellInfo cell) { argument
[all...]
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
H A DCounterColumn.java133 cell(td, total);
139 cell(td, item.getNode());
142 private void cell(final HTMLElement td, final ICoverageNode node) method in class:CounterColumn
H A DPercentageColumn.java67 cell(td, total);
73 cell(td, item.getNode());
76 private void cell(final HTMLElement td, final ICoverageNode node) method in class:PercentageColumn
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/
H A DTable_Suite.py18 class cell(aetools.ComponentItem): class in inherits:aetools.ComponentItem
19 """cell - A cell """
22 """formula - the formula of the cell """
26 """protection - Indicates whether value or formula in the cell can be changed """
30 cells = cell
53 cell._superclassnames = []
54 cell._privpropdict = {
58 cell._privelemdict = {
87 'ccel' : cell,
[all...]
/external/v8/src/
H A Dcompilation-dependencies.cc74 Handle<WeakCell> cell = Code::WeakCellFor(code); local
83 dependent_code->UpdateToFinishedCode(group, *object_wrapper_, *cell);
H A Dcompilation-dependencies.h39 void AssumePropertyCell(Handle<PropertyCell> cell) { argument
40 Insert(DependentCode::kPropertyCellChangedGroup, cell);
/external/valgrind/memcheck/tests/
H A Dleak-pool.c9 struct cell struct
11 struct cell *next;
92 struct cell *cells_static[N];
97 struct cell *cells_local[N];
101 struct cell **cells = static_roots ? cells_static : cells_local;
114 cells[i] = allocate_from_pool(p, sizeof(struct cell));
119 p->buf+(10 * sizeof(struct cell)),
120 20 * sizeof(struct cell) + 2);
/external/clang/test/CodeGenCXX/
H A Dempty-classes.cpp63 FreeCell cell; member in union:PR8796::ThingOrCell
/external/libtextclassifier/common/
H A Dregistry.h157 const Cell *cell = FindCell(key); local
158 if (cell == nullptr) {
161 return (cell == nullptr) ? nullptr : cell->value();
171 // cell contains a key, the value for that key, as well as a pointer to the
/external/icu/icu4c/source/tools/toolutil/
H A Ducmstate.c335 int32_t entry, sum, state, cell, count; local
355 for(cell=0; cell<256; ++cell) {
356 entry=states->stateTable[state][cell];
360 states->stateTable[state][cell]=MBCS_ENTRY_FINAL_SET_VALUE(entry, sum);
364 states->stateTable[state][cell]=MBCS_ENTRY_FINAL_SET_VALUE(entry, sum);
375 for(cell=0; cell<256; ++cell) {
427 int32_t entry, state, cell, count; local
930 int32_t state, cell, entry; local
[all...]
/external/iproute2/tc/
H A Dq_cbq.c32 fprintf(stderr, " [ prio NUMBER ] [ cell BYTES ] [ ewma LOG ]\n");
41 fprintf(stderr, " [ cell BYTES ] [ ewma LOG ]\n");
83 } else if (matches(*argv, "cell") == 0) {
84 unsigned cell; local
87 if (get_size(&cell, *argv)) {
88 explain1("cell");
92 if ((1<<i) == cell)
95 fprintf(stderr, "cell must be 2^n\n");
262 } else if (matches(*argv, "cell") == 0) {
263 unsigned cell; local
[all...]
/external/jemalloc/src/
H A Dckh.c49 * Search bucket for key and return the cell number if found; SIZE_T_MAX
55 ckhc_t *cell; local
59 cell = &ckh->tab[(bucket << LG_CKH_BUCKET_CELLS) + i];
60 if (cell->key != NULL && ckh->keycomp(key, cell->key))
68 * Search table for key and return cell number if found; SIZE_T_MAX otherwise.
73 size_t hashes[2], bucket, cell; local
81 cell = ckh_bucket_search(ckh, bucket, key);
82 if (cell != SIZE_T_MAX)
83 return (cell);
95 ckhc_t *cell; local
129 ckhc_t *cell; local
487 size_t cell; local
518 size_t cell; local
[all...]
/external/libchrome/base/trace_event/
H A Dheap_profiler_allocation_register.h71 Cell* cell = *p_cell; local
72 if (cell) {
73 return {static_cast<KVIndex>(cell - cells_), false}; // not inserted
76 // Get a free cell and link it.
77 *p_cell = cell = GetFreeCell();
78 cell->p_prev = p_cell;
79 cell->next = nullptr;
83 new (&cell->kv) KVPair(key, value);
85 return {static_cast<KVIndex>(cell - cells_), true}; // inserted
91 Cell* cell local
106 Cell* cell = *Lookup(key); local
182 Cell* cell = free_list_; local
[all...]
/external/libnl/lib/route/qdisc/
H A Dtbf.c109 "rate-cell-size %.1f%s\n",
125 "bucket-size %.1f%s cell-size %.1f%s"
262 static inline int calc_cell_log(int cell, int bucket) argument
264 cell = rtnl_tc_calc_cell_log(cell);
265 return cell;
273 * @arg cell Size of a rate cell or 0 to get default value.
277 int cell)
285 if (!cell)
276 rtnl_qdisc_tbf_set_rate(struct rtnl_qdisc *qdisc, int rate, int bucket, int cell) argument
359 rtnl_qdisc_tbf_set_peakrate(struct rtnl_qdisc *qdisc, int rate, int bucket, int cell) argument
[all...]
/external/skia/samplecode/
H A DSampleAtlas.cpp147 const SkScalar cell = SkIntToScalar(kCellSize); local
153 fTex[i].setXYWH(sx, sy, cell, cell);
155 fRec[i].fCenter.set(sx + cell/2, sy + 3*cell/4);
/external/v8/src/heap/
H A Dobjects-visiting-inl.h245 Cell* cell = rinfo->target_cell(); local
247 heap->mark_compact_collector()->RecordRelocSlot(host, rinfo, cell);
248 if (!host->IsWeakObject(cell)) {
249 StaticVisitor::MarkObject(heap, cell);
331 // Enqueue weak cell in linked list of encountered weak collections.
/external/v8/src/ic/
H A Dhandler-compiler.cc226 auto cell = isolate()->factory()->NewWeakCell(holder()); local
227 __ LoadWeakValue(reg, cell, &miss);
247 // so the weak cell is not cleared and points to data.
248 Handle<WeakCell> cell = isolate()->factory()->NewWeakCell(callback); local
249 __ GetWeakValue(ApiGetterDescriptor::CallbackRegister(), cell); local

Completed in 4076 milliseconds

123456