Home
last modified time | relevance | path

Searched refs:cell (Results 1 – 25 of 324) sorted by relevance

12345678910>>...13

/third_party/node/deps/npm/node_modules/cli-table3/src/
Dlayout-manager.js8 row.forEach(function(cell, columnIndex) { argument
9 cell.y = rowIndex;
10 cell.x = columnIndex;
16 while (cellsConflict(cell, cell2)) {
17 cell.x++;
28 row.forEach(function(cell) { argument
29 mw = Math.max(mw, cell.x + (cell.colSpan || 1));
57 let cell = { x: x, y: y }; variable
61 if (cellsConflict(cell, row[j])) {
80 row.forEach(function(cell) { argument
[all …]
Dtable.js26 row.forEach(function(cell) { argument
27 cell.mergeTableOptions(this.options, cells);
35 row.forEach(function(cell) { argument
36 cell.init(this.options);
70 row.forEach(function(cell) { argument
71 line.push(cell.draw(lineNum));
/third_party/python/Doc/c-api/
Dcell.rst9 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``. This
36 Create and return a new cell object containing the value *ob*. The parameter may
40 .. c:function:: PyObject* PyCell_Get(PyObject *cell)
42 Return the contents of the cell *cell*.
45 .. c:function:: PyObject* PyCell_GET(PyObject *cell)
[all …]
/third_party/python/Tools/demo/
Dspreadsheet.py40 cell = self.cellvalue,
46 cell = self.getcell(x, y)
47 if hasattr(cell, 'recalc'):
48 return cell.recalc(self.ns)
50 return cell
66 def setcell(self, x, y, cell): argument
68 assert isinstance(cell, BaseCell)
69 self.cells[x, y] = cell
105 cell = self.cells[x, y]
106 if hasattr(cell, 'renumber'):
[all …]
/third_party/boost/tools/quickbook/test/
Dtable-1_5.quickbook8 [[cell]]
13 [[cell]]
18 [[cell]]
23 [[cell]]
28 [[cell]]
33 [[cell]]
39 [[cell]]
44 [[cell]]
53 [[cell]]
60 [[cell]]
[all …]
Dtable-1_6.quickbook6 [table:table1 Table 1 [[Heading]][[cell]]]
10 [[cell]]
15 [[cell]]
20 [[cell]]
25 [[cell]]
30 [[cell]]
36 [[cell]]
41 [[cell]]
48 [[cell]]
69 [[cell]]
[all …]
Dtable-1_7.quickbook6 [table:table1 Table 1 [[Heading]][[cell]]]
10 [[cell]]
15 [[cell]]
20 [[cell]]
25 [[cell]]
30 [[cell]]
36 [[cell]]
41 [[cell]]
48 [[cell]]
69 [[cell]]
[all …]
Dtable-1_3.quickbook8 [[cell]]
13 [[cell]]
18 [[cell]]
24 [[cell]]
29 [[cell]]
38 [[cell]]
45 [[cell]]
58 [table Table with an empty cell
/third_party/uboot/u-boot-2020.01/lib/
Dfdtdec_common.c24 const int *cell; in fdtdec_get_int() local
28 cell = fdt_getprop(blob, node, prop_name, &len); in fdtdec_get_int()
29 if (cell && len >= sizeof(int)) { in fdtdec_get_int()
30 int val = fdt32_to_cpu(cell[0]); in fdtdec_get_int()
42 const int *cell; in fdtdec_get_uint() local
46 cell = fdt_getprop(blob, node, prop_name, &len); in fdtdec_get_uint()
47 if (cell && len >= sizeof(unsigned int)) { in fdtdec_get_uint()
48 unsigned int val = fdt32_to_cpu(cell[0]); in fdtdec_get_uint()
/third_party/uboot/u-boot-2020.01/drivers/pci/
Dpci_sandbox.c82 const fdt32_t *cell; in sandbox_pci_probe() local
86 cell = ofnode_get_property(dev_ofnode(dev), "sandbox,dev-info", &len); in sandbox_pci_probe()
87 if (!cell) in sandbox_pci_probe()
96 fdt32_to_cpu(cell[0]), fdt32_to_cpu(cell[1]), in sandbox_pci_probe()
97 fdt32_to_cpu(cell[2]), fdt32_to_cpu(cell[3])); in sandbox_pci_probe()
99 pdev = fdt32_to_cpu(cell[0]); in sandbox_pci_probe()
100 pfn = fdt32_to_cpu(cell[1]); in sandbox_pci_probe()
104 priv->vendev[devfn].vendor = fdt32_to_cpu(cell[2]); in sandbox_pci_probe()
105 priv->vendev[devfn].device = fdt32_to_cpu(cell[3]); in sandbox_pci_probe()
107 cell += FDT_DEV_INFO_CELLS; in sandbox_pci_probe()
/third_party/ffmpeg/libavcodec/
Droqvideo.c41 void ff_apply_vector_2x2(RoqContext *ri, int x, int y, roq_cell *cell) in ff_apply_vector_2x2() argument
50 bptr[0 ] = cell->y[0]; in ff_apply_vector_2x2()
51 bptr[1 ] = cell->y[1]; in ff_apply_vector_2x2()
52 bptr[stride ] = cell->y[2]; in ff_apply_vector_2x2()
53 bptr[stride+1] = cell->y[3]; in ff_apply_vector_2x2()
62 bptr[stride+1] = cell->u; in ff_apply_vector_2x2()
68 bptr[stride+1] = cell->v; in ff_apply_vector_2x2()
71 void ff_apply_vector_4x4(RoqContext *ri, int x, int y, roq_cell *cell) in ff_apply_vector_4x4() argument
80 bptr[ 0] = bptr[ 1] = bptr[stride ] = bptr[stride +1] = cell->y[0]; in ff_apply_vector_4x4()
81 bptr[ 2] = bptr[ 3] = bptr[stride +2] = bptr[stride +3] = cell->y[1]; in ff_apply_vector_4x4()
[all …]
Dindeo3.c233 static int copy_cell(Indeo3DecodeContext *ctx, Plane *plane, Cell *cell) in copy_cell() argument
239 offset_dst = (cell->ypos << 2) * plane->pitch + (cell->xpos << 2); in copy_cell()
241 if(cell->mv_ptr){ in copy_cell()
242 mv_y = cell->mv_ptr[0]; in copy_cell()
243 mv_x = cell->mv_ptr[1]; in copy_cell()
248 if ((cell->ypos << 2) + mv_y < -1 || (cell->xpos << 2) + mv_x < 0 || in copy_cell()
249 ((cell->ypos + cell->height) << 2) + mv_y > plane->height || in copy_cell()
250 ((cell->xpos + cell->width) << 2) + mv_x > plane->width) { in copy_cell()
259 h = cell->height << 2; in copy_cell()
261 for (w = cell->width; w > 0;) { in copy_cell()
[all …]
/third_party/skia/tests/
DPDFTaggedTableTest.cpp75 auto cell = std::make_unique<PDFTag>(); in DEF_TEST() local
77 cell->fNodeId = 10 + cellIndex; in DEF_TEST()
79 cell->fTypeString = "NonStruct"; in DEF_TEST()
81 cell->fTypeString = "TH"; in DEF_TEST()
83 cell->fTypeString = "TD"; in DEF_TEST()
87 cell->fAttributes.appendNodeIdArray( in DEF_TEST()
92 cell->fAttributes.appendInt("Table", "RowSpan", 2); in DEF_TEST()
94 cell->fAttributes.appendInt("Table", "ColSpan", 2); in DEF_TEST()
96 cell->fAttributes.appendName( in DEF_TEST()
99 cells.push_back(std::move(cell)); in DEF_TEST()
/third_party/node/deps/icu-small/source/tools/toolutil/
Ducmstate.cpp335 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 …]
/third_party/flutter/skia/third_party/externals/icu/source/tools/toolutil/
Ducmstate.cpp335 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 …]
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
Ducmstate.cpp335 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 …]
/third_party/icu/icu4c/source/tools/toolutil/
Ducmstate.cpp335 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 …]
/third_party/uboot/u-boot-2020.01/arch/x86/cpu/
Dirq.c151 const u32 *cell; in create_pirq_routing_table() local
176 cell = fdt_getprop(blob, node, "intel,pirq-link", &len); in create_pirq_routing_table()
177 if (!cell || len != 8) in create_pirq_routing_table()
179 priv->link_base = fdt_addr_to_cpu(cell[0]); in create_pirq_routing_table()
180 priv->link_num = fdt_addr_to_cpu(cell[1]); in create_pirq_routing_table()
187 cell = fdt_getprop(blob, node, "intel,pirq-regmap", &len); in create_pirq_routing_table()
188 if (cell) { in create_pirq_routing_table()
206 map->link = fdt_addr_to_cpu(cell[0]); in create_pirq_routing_table()
207 map->offset = fdt_addr_to_cpu(cell[1]); in create_pirq_routing_table()
209 cell += sizeof(struct pirq_regmap) / sizeof(u32); in create_pirq_routing_table()
[all …]
/third_party/uboot/u-boot-2020.01/drivers/core/
Dsimple-bus.c30 u32 cell[3]; in simple_bus_post_bind()
33 ret = dev_read_u32_array(dev, "ranges", cell, ARRAY_SIZE(cell)); in simple_bus_post_bind()
37 plat->base = cell[0]; in simple_bus_post_bind()
38 plat->target = cell[1]; in simple_bus_post_bind()
39 plat->size = cell[2]; in simple_bus_post_bind()
Dof_extra.c52 const fdt_addr_t *cell; in ofnode_decode_region() local
56 cell = ofnode_get_property(node, prop_name, &len); in ofnode_decode_region()
57 if (!cell || (len < sizeof(fdt_addr_t) * 2)) { in ofnode_decode_region()
58 debug("cell=%p, len=%d\n", cell, len); in ofnode_decode_region()
62 *basep = fdt_addr_to_cpu(*cell); in ofnode_decode_region()
63 *sizep = fdt_size_to_cpu(cell[1]); in ofnode_decode_region()
/third_party/python/Lib/ctypes/test/
Dtest_incomplete.py13 class cell(Structure): class
17 SetPointerType(lpcell, cell)
19 c1 = cell()
21 c2 = cell()
37 del _pointer_type_cache[cell]
/third_party/uboot/u-boot-2020.01/arch/arm/mach-socfpga/
Dpinmux_arria10.c16 const u32 *cell; in do_pinctr_pin() local
21 cell = fdt_getprop(blob, child, "pinctrl-single,pins", &len); in do_pinctr_pin()
22 if (!cell || len <= 0) in do_pinctr_pin()
25 debug("%p %d\n", cell, len); in do_pinctr_pin()
27 offset = fdt32_to_cpu(*cell++); in do_pinctr_pin()
28 value = fdt32_to_cpu(*cell++); in do_pinctr_pin()
/third_party/ffmpeg/tools/
Ddvd2concat94 for my $cell (@{$track->{cell}}) {
95 my $off = $cell->{first_sector};
98 my $size = $cell->{last_sector} + 1 - $cell->{first_sector};
121 my $dur = int(1000 * $cell->{length});
/third_party/uboot/u-boot-2020.01/common/
Dcommon_fit.c14 const u32 *cell; in fdt_getprop_u32() local
17 cell = fdt_getprop(fdt, node, prop, &len); in fdt_getprop_u32()
18 if (!cell || len != sizeof(*cell)) in fdt_getprop_u32()
21 return fdt32_to_cpu(*cell); in fdt_getprop_u32()
/third_party/skia/third_party/externals/freetype/src/smooth/
Dftgrays.c496 PCell cell; /* current cell */ member
529 ras.cell->cover = ADD_INT( ras.cell->cover, a ), \
530 ras.cell->area = ADD_INT( ras.cell->area, (a) * (TArea)(b) )
552 PCell cell = ras.ycells[y - ras.min_ey]; in gray_dump_cells() local
557 for ( ; cell != ras.cell_null; cell = cell->next ) in gray_dump_cells()
559 cell->x, cell->cover, cell->area ); in gray_dump_cells()
589 ras.cell = ras.cell_null; in gray_set_cell()
593 PCell cell; in gray_set_cell() local
600 cell = *pcell; in gray_set_cell()
602 if ( cell->x > ex ) in gray_set_cell()
[all …]

12345678910>>...13