HomeSort by relevance Sort by last modified time
    Searched defs:cell (Results 1 - 25 of 349) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/python/cpython2/Lib/ctypes/test/
test_incomplete.py 12 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]
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_incomplete.py 12 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]
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_incomplete.py 12 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]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_incomplete.py 12 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]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_incomplete.py 12 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/guava/guava/src/com/google/common/collect/
SingletonImmutableTable.java 26 * An implementation of {@link ImmutableTable} that holds a single cell.
42 SingletonImmutableTable(Cell<R, C, V> cell) {
43 this(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
68 ImmutableSet<Cell<R, C, V>> createCellSet() {
AbstractTable.java 101 for (Table.Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) {
102 put(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
106 private transient Set<Cell<R, C, V>> cellSet;
109 public Set<Cell<R, C, V>> cellSet() {
110 Set<Cell<R, C, V>> result = cellSet;
114 Set<Cell<R, C, V>> createCellSet() {
118 abstract Iterator<Table.Cell<R, C, V>> cellIterator()
124 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) o; local
135 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) o; local
    [all...]
RegularImmutableTable.java 37 abstract Cell<R, C, V> getCell(int iterationIndex);
40 final ImmutableSet<Cell<R, C, V>> createCellSet() {
41 return isEmpty() ? ImmutableSet.<Cell<R, C, V>>of() : new CellSet();
44 private final class CellSet extends ImmutableSet<Cell<R, C, V>> {
51 public UnmodifiableIterator<Cell<R, C, V>> iterator() {
56 ImmutableList<Cell<R, C, V>> createAsList() {
57 return new ImmutableAsList<Cell<R, C, V>>() {
59 public Cell<R, C, V> get(int index) {
64 ImmutableCollection<Cell<R, C, V>> delegateCollection() {
72 if (object instanceof Cell) {
73 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) object; local
    [all...]
ImmutableTable.java 51 ImmutableList.<Cell<Object, Object, Object>>of(),
60 /** Returns an immutable table containing a single cell. */
93 Cell<? extends R, ? extends C, ? extends V> onlyCell
98 ImmutableSet.Builder<Cell<R, C, V>> cellSetBuilder
100 for (Cell<? extends R, ? extends C, ? extends V> cell :
103 * Must cast to be able to create a Cell<R, C, V> rather than a
104 * Cell<? extends R, ? extends C, ? extends V>
106 cellSetBuilder.add(cellOf((R) cell.getRowKey(),
107 (C) cell.getColumnKey(), (V) cell.getValue()))
    [all...]
  /external/skia/bench/
TableBench.cpp 25 // 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/ImageMagick/coders/
braille.c 290 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/table/
TableClickWidget.java 14 private int cell; field in class:TableClickWidget
21 int row, int cell) {
24 this.cell = cell;
40 return cell;
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
TableCollectionTest.java 21 import com.google.common.collect.Table.Cell;
93 implements TestSetGenerator<Cell<String, Integer, Character>> {
95 public SampleElements<Cell<String, Integer, Character>> samples() {
96 return new SampleElements<Cell<String, Integer, Character>>(
105 public Set<Cell<String, Integer, Character>> create(
110 Cell<String, Integer, Character> cell local
111 = (Cell<String, Integer, Character>) element;
112 table.put(cell.getRowKey(), cell.getColumnKey(), cell.getValue())
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
TableCollectionTest.java 25 import com.google.common.collect.Table.Cell;
363 @Override public SampleElements<Cell<String, Integer, Character>>
365 return new SampleElements<Cell<String, Integer, Character>>(
372 @Override public Set<Cell<String, Integer, Character>> create(
377 Cell<String, Integer, Character> cell
378 = (Cell<String, Integer, Character>) element;
379 columnKeys.add(cell.getColumnKey());
385 Cell<String, Integer, Character> cell
622 Cell<String, Integer, Character> cell local
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
PercentageColumn.java 67 cell(td, total); method
73 cell(td, item.getNode()); method
76 private void cell(final HTMLElement td, final ICoverageNode node) method in class:PercentageColumn
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/
Table_Suite.py 18 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...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Table_Suite.py 18 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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Table_Suite.py 18 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/clang/test/CodeGenCXX/
empty-classes.cpp 63 FreeCell cell; member in union:PR8796::ThingOrCell
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLTable.java 87 private static class Cell extends IElement.Factory.ElementImpl
97 Cell (Tag tag)
110 final ICell cell = new Cell (m_th ? Tag.TH : Tag.TD); local
111 add (cell);
113 return cell;
  /external/v8/src/
compilation-dependencies.cc 74 Handle<WeakCell> cell = Code::WeakCellFor(code); local
83 dependent_code->UpdateToFinishedCode(group, *object_wrapper_, *cell);
  /external/valgrind/memcheck/tests/
leak-pool.c 9 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/iproute2/tc/
q_cbq.c 32 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/libtextclassifier/common/
registry.h 144 const Cell *old_cell = FindCell(key);
149 Cell *new_cell = new Cell(key, value, head_);
157 const Cell *cell = FindCell(key); local
158 if (cell == nullptr) {
161 return (cell == nullptr) ? nullptr : cell->value();
170 // Cell for the singly-linked list underlying this ComponentRegistry. Each
171 // cell contains a key, the value for that key, as well as a pointer to th
    [all...]
  /packages/apps/Launcher2/
print_db.py 50 def print_intent(out, id, i, cell):
51 if cell:
53 cgi.escape(cell, True)
57 def print_icon(out, id, i, cell):
58 if cell:
62 f.write(cell)
65 def print_cell(out, id, i, cell):
66 if not cell is None:
67 out.write(cgi.escape(str(cell)))
74 def render_cell_info(out, cell, occupied)
158 cell = row[i] variable
    [all...]

Completed in 1111 milliseconds

1 2 3 4 5 6 7 8 91011>>