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

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/frontend/client/src/autotest/common/spreadsheet/
SpreadsheetSelectionManager.java 30 public void toggleSelected(CellInfo cell) {
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) {
41 selectedCells.add(cell);
42 spreadsheet.setHighlighted(cell, true);
45 private void deselectCell(CellInfo cell) {
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
proto.h 31 extern void setfname(Cell *);
89 extern Node *celltonode(Cell *, int);
94 extern void defn(Cell *, Node *, Node *);
97 extern Cell *(*proctab[])(Node **, int);
105 extern void freesymtab(Cell *);
106 extern void freeelem(Cell *, const char *);
107 extern Cell *setsymtab(const char *, const char *, double, unsigned int, Array *);
110 extern Cell *lookup(const char *, Array *);
111 extern double setfval(Cell *, double);
112 extern void funnyvar(Cell *, const char *)
    [all...]
  /external/skia/experimental/iOSSampleApp/Shared/
SkOptionListController.mm 41 static NSString *CellIdentifier = @"Cell";
43 UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
44 if (cell == nil) {
45 cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
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]
    [all...]
  /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/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Cell.java 11 /** A cell for a {@link Table}.
13 public class Cell<T extends Actor> implements Poolable {
20 static private Cell defaults;
43 public Cell () {
51 /** Sets the actor in this cell and adds the actor to the cell's table. If null, removes any current actor. */
52 public <A extends Actor> Cell<A> setActor (A newActor) {
58 return (Cell<A>)this;
61 /** Removes the current actor for the cell, if any. */
62 public Cell<T> clearActor ()
    [all...]
  /external/skia/src/views/mac/
SkOptionsTableView.mm 175 - (void)tableView:(NSTableView *)tableView willDisplayCell:(id)cell forTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
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/chromium-trace/catapult/netlog_viewer/netlog_viewer/
table_printer.js 56 * @return {!TablePrinterCell} the cell that was added.
60 var cell = new TablePrinterCell(cellText);
61 r.push(cell);
62 return cell;
76 * @return {!TablePrinterCell} the cell that was added.
84 var cell = new TablePrinterCell(headerText);
85 this.rows_[0].push(cell);
86 return cell;
101 * Returns the cell at position (rowIndex, columnIndex), or null if there is
102 * no such cell
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/
TiledMapTileLayer.java 30 private Cell[][] cells;
64 this.cells = new Cell[width][height];
69 * @return {@link Cell} at (x, y) */
70 public Cell getCell (int x, int y) {
76 /** Sets the {@link Cell} at the given coordinates.
80 * @param cell the {@link Cell} to set at the given coordinates. */
81 public void setCell (int x, int y, Cell cell) {
84 cells[x][y] = cell;
    [all...]
  /external/libxml2/test/relaxng/
table.rng 3 <define name="cell.content">
13 <ref name="cell.content"/>
  /external/markdown/docs/extensions/
Tables.txt 22 Content Cell | Content Cell
23 Content Cell | Content Cell
36 <td>Content Cell</td>
37 <td>Content Cell</td>
41 <td>Content Cell</td>
42 <td>Content Cell</td>
  /external/markdown/tests/extensions-x-tables/
tables.txt 6 Content Cell | Content Cell
7 Content Cell | Content Cell
11 | Content Cell | Content Cell |
12 | Content Cell | Content Cell |
  /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;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/isl/
vertices.h 33 isl_ctx *isl_cell_get_ctx(__isl_keep isl_cell *cell);
34 __isl_give isl_basic_set *isl_cell_get_domain(__isl_keep isl_cell *cell);
35 int isl_cell_foreach_vertex(__isl_keep isl_cell *cell,
37 void isl_cell_free(__isl_take isl_cell *cell);
40 int (*fn)(__isl_take isl_cell *cell, void *user), void *user);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/
vertices.h 33 isl_ctx *isl_cell_get_ctx(__isl_keep isl_cell *cell);
34 __isl_give isl_basic_set *isl_cell_get_domain(__isl_keep isl_cell *cell);
35 int isl_cell_foreach_vertex(__isl_keep isl_cell *cell,
37 void isl_cell_free(__isl_take isl_cell *cell);
40 int (*fn)(__isl_take isl_cell *cell, void *user), void *user);
  /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/guava/guava/src/com/google/common/collect/
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...]
  /prebuilts/go/darwin-x86/test/bench/shootout/
meteor-contest.c 41 /* The board is a 50 cell hexagonal pattern. For . . . . .
107 * 12 rotations. However, not all 12 rotations will fit on every cell, so
111 * I'm also going to record the next possible open cell for each piece and
129 /* Returns the new cell index from the specified cell in the
131 * starting cell and direction have been checked by the
134 char shift(char cell, char dir) {
137 return cell + 1;
139 if((cell / 5) % 2)
140 return cell + 7
368 char rotation, cell[5]; local
    [all...]
  /prebuilts/go/linux-x86/test/bench/shootout/
meteor-contest.c 41 /* The board is a 50 cell hexagonal pattern. For . . . . .
107 * 12 rotations. However, not all 12 rotations will fit on every cell, so
111 * I'm also going to record the next possible open cell for each piece and
129 /* Returns the new cell index from the specified cell in the
131 * starting cell and direction have been checked by the
134 char shift(char cell, char dir) {
137 return cell + 1;
139 if((cell / 5) % 2)
140 return cell + 7
368 char rotation, cell[5]; local
    [all...]
  /external/opencv3/modules/videostab/src/
outlier_rejection.cpp 91 grid_.assign(ncells.area(), Cell());
100 // process each cell
112 // estimate translation model at the current cell using RANSAC
114 const Cell &cell = grid_[ci]; local
120 if (!cell.empty())
124 idx = cell[static_cast<unsigned>(rng) % cell.size()];
129 for (size_t i = 0; i < cell.size(); ++i)
131 x1 = points0_[cell[i]].x + dx
    [all...]
  /device/google/accessory/demokit/hardware/eng/m256c/
mega2560 BOM rev 01.rtf 17 \f0\fs20 \cf0 \cell
19 \cf0 PCBA, MEGA2560 Bill of Materials rev 01\cell
21 \cf0 \cell
23 \cf0 \cell
25 \cf0 \cell
27 \cf0 \cell
29 \cf0 \cell \row
40 \cf0 \cell
42 \cf0 The Android Open Source Project\cell
44 \cf0 \cell
    [all...]

Completed in 1716 milliseconds

1 2 3 4 5 6 7 8 91011>>