HomeSort by relevance Sort by last modified time
    Searched refs:Cell (Results 26 - 50 of 193) sorted by null

12 3 4 5 6 7 8

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_addrhashmap.h 46 struct Cell {
54 Cell cells[1]; // variable len
62 Cell cells[kBucketSize];
83 Cell *cell_;
175 Cell *c = &b->cells[i];
188 Cell *c = &add->cells[i];
204 Cell *c = &b->cells[i];
220 Cell *c = &add->cells[i];
242 // See if we have a free embed cell.
244 Cell *c = &b->cells[i]
    [all...]
  /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/guava/guava/src/com/google/common/collect/
Tables.java 27 import com.google.common.collect.Table.Cell;
56 * Returns an immutable cell with the specified row key, column key, and
59 * <p>The returned cell is serializable.
61 * @param rowKey the row key to be associated with the returned cell
62 * @param columnKey the column key to be associated with the returned cell
63 * @param value the value to be associated with the returned cell
65 public static <R, C, V> Cell<R, C, V> immutableCell(
99 abstract static class AbstractCell<R, C, V> implements Cell<R, C, V> {
107 if (obj instanceof Cell) {
108 Cell<?, ?, ?> other = (Cell<?, ?, ?>) obj
    [all...]
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() {
Table.java 115 * equal when their cell views, as returned by {@link #cellSet}, are equal.
122 * as the hash code of its cell view, as returned by {@link #cellSet}.
196 * returned set will update the underlying table, and vice versa. The cell set
202 Set<Cell<R, C, V>> cellSet();
264 interface Cell<R, C, V> {
266 * Returns the row key of this cell.
271 * Returns the column key of this cell.
276 * Returns the value of this cell.
281 * Compares the specified object with this cell for equality. Two cells are
288 * Returns the hash code of this cell
    [all...]
SparseImmutableTable.java 37 SparseImmutableTable(ImmutableList<Cell<R, C, V>> cellList,
52 Cell<R, C, V> cell = cellList.get(i); local
53 R rowKey = cell.getRowKey();
54 C columnKey = cell.getColumnKey();
55 V value = cell.getValue();
96 Cell<R, C, V> getCell(int index) {
DenseImmutableTable.java 53 DenseImmutableTable(ImmutableList<Cell<R, C, V>> cellList,
65 Cell<R, C, V> cell = cellList.get(i); local
66 R rowKey = cell.getRowKey();
67 C columnKey = cell.getColumnKey();
72 values[rowIndex][columnIndex] = cell.getValue();
265 Cell<R, C, V> getCell(int index) {
  /external/ceres-solver/internal/ceres/
partitioned_matrix_view_impl.h 64 const vector<Cell>& cells = bs->rows[r].cells;
103 // by the first cell in each row block.
106 const Cell& cell = bs->rows[r].cells[0]; local
109 const int col_block_id = cell.block_id;
113 values + cell.position, row_block_size, col_block_size,
134 const vector<Cell>& cells = bs->rows[r].cells;
149 const vector<Cell>& cells = bs->rows[r].cells;
169 // by the first cell in each row block.
172 const Cell& cell = bs->rows[r].cells[0] local
258 Cell& cell = row.cells.back(); local
309 const Cell& cell = bs->rows[r].cells[0]; local
    [all...]
block_sparse_matrix.cc 67 const vector<Cell>& cells = block_structure_->rows[i].cells;
95 const vector<Cell>& cells = block_structure_->rows[i].cells;
115 const vector<Cell>& cells = block_structure_->rows[i].cells;
133 const vector<Cell>& cells = block_structure_->rows[i].cells;
150 const vector<Cell>& cells = block_structure_->rows[i].cells;
172 const vector<Cell>& cells = block_structure_->rows[i].cells;
195 const vector<Cell>& cells = block_structure_->rows[i].cells;
225 const vector<Cell>& cells = block_structure_->rows[i].cells;
  /ndk/sources/host-tools/nawk-20071023/
lib.c 42 Cell **fldtab; /* pointers to Cells */
55 static Cell dollar0 = { OCELL, CFLD, NULL, "", 0.0, REC|STR|DONTFREE };
56 static Cell dollar1 = { OCELL, CFLD, NULL, "", 0.0, FLD|STR|DONTFREE };
62 || (fldtab = (Cell **) malloc((nfields+1) * sizeof(Cell *))) == NULL
63 || (fldtab[0] = (Cell *) malloc(sizeof(Cell))) == NULL )
77 fldtab[i] = (Cell *) malloc(sizeof (struct Cell));
225 Cell *x
    [all...]
parse.c 168 Node *celltonode(Cell *a, int b)
181 extern Cell *literal0;
187 Cell *cp;
190 cp = (Cell *) (p->narg[0]);
233 void defn(Cell *v, Node *vl, Node *st) /* turn on FCN bit in definition, */
263 if (strcmp(((Cell *)(p->narg[0]))->nval, s) == 0)
awkgram.y 30 void checkdup(Node *list, Cell *item);
43 Cell *cp;
185 { infunc--; curfname=0; defn((Cell *)$2, $4, $8); $$ = 0; }
447 void setfname(Cell *p)
458 return isvalue(p) && ((Cell *) (p->narg[0]))->csub == CCON;
463 return ((Cell *)(p->narg[0]))->sval;
477 void checkdup(Node *vl, Cell *cp) /* check if name already in list */
481 if (strcmp(s, ((Cell *)(vl->narg[0]))->nval) == 0) {
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 101 private final ArrayList<Cell> mPattern = new ArrayList<Cell>(9);
147 * Represents a cell in the 3 X 3 matrix of the unlock pattern view.
149 public static final class Cell {
154 private static final Cell[][] sCells = createCells();
156 private static Cell[][] createCells() {
157 Cell[][] res = new Cell[3][3];
160 res[i][j] = new Cell(i, j);
167 * @param row The row of the cell
674 final Cell cell = checkForNewHit(x, y); local
1058 final Cell cell = pattern.get(i); local
    [all...]
LockPatternChecker.java 51 final List<LockPatternView.Cell> pattern,
86 final List<LockPatternView.Cell> pattern,
  /external/autotest/frontend/client/src/autotest/common/ui/
RightClickTable.java 43 public HTMLTable.Cell getCellForDomEvent(DomEvent<?> event) {
52 return new HTMLTable.Cell(position.row, position.column) {
  /packages/apps/Settings/src/com/android/settings/
ChooseLockPattern.java 37 import com.android.internal.widget.LockPatternView.Cell;
148 protected List<LockPatternView.Cell> mChosenPattern = null;
154 private final List<LockPatternView.Cell> mAnimatePattern =
156 LockPatternView.Cell.of(0, 0),
157 LockPatternView.Cell.of(0, 1),
158 LockPatternView.Cell.of(1, 1),
159 LockPatternView.Cell.of(2, 1)
205 public void onPatternDetected(List<LockPatternView.Cell> pattern) {
218 mChosenPattern = new ArrayList<LockPatternView.Cell>(pattern);
227 public void onPatternCellAdded(List<Cell> pattern)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/octave/
std_pair.i 42 Cell c=obj.cell_value();
44 error("pair from Cell array requires at least two elements");
95 Cell c=obj.cell_value();
97 error("pair from Cell array requires at least two elements");
116 Cell c(1,2);
  /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/v8/src/mips/
assembler-mips-inl.h 267 Handle<Cell> RelocInfo::target_cell_handle() {
268 DCHECK(rmode_ == RelocInfo::CELL);
270 return Handle<Cell>(reinterpret_cast<Cell**>(address));
274 Cell* RelocInfo::target_cell() {
275 DCHECK(rmode_ == RelocInfo::CELL);
276 return Cell::FromValueAddress(Memory::Address_at(pc_));
280 void RelocInfo::set_target_cell(Cell* cell,
283 DCHECK(rmode_ == RelocInfo::CELL);
290 host(), NULL, cell); local
    [all...]
  /external/v8/src/mips64/
assembler-mips64-inl.h 265 Handle<Cell> RelocInfo::target_cell_handle() {
266 DCHECK(rmode_ == RelocInfo::CELL);
268 return Handle<Cell>(reinterpret_cast<Cell**>(address));
272 Cell* RelocInfo::target_cell() {
273 DCHECK(rmode_ == RelocInfo::CELL);
274 return Cell::FromValueAddress(Memory::Address_at(pc_));
278 void RelocInfo::set_target_cell(Cell* cell,
281 DCHECK(rmode_ == RelocInfo::CELL);
288 host(), NULL, cell); local
    [all...]
  /external/v8/tools/
consarray.js 40 this.tail_ = new ConsArray.Cell(null, null);
56 this.tail_ = this.tail_.next = new ConsArray.Cell(null, null);
85 * A cell object used for constructing a list in ConsArray.
89 ConsArray.Cell = function(data, next) {
  /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/v8/src/arm/
assembler-arm-inl.h 180 Handle<Cell> RelocInfo::target_cell_handle() {
181 DCHECK(rmode_ == RelocInfo::CELL);
183 return Handle<Cell>(reinterpret_cast<Cell**>(address));
187 Cell* RelocInfo::target_cell() {
188 DCHECK(rmode_ == RelocInfo::CELL);
189 return Cell::FromValueAddress(Memory::Address_at(pc_));
193 void RelocInfo::set_target_cell(Cell* cell,
196 DCHECK(rmode_ == RelocInfo::CELL);
203 host(), NULL, cell); local
    [all...]
  /external/v8/src/ia32/
assembler-ia32-inl.h 182 Handle<Cell> RelocInfo::target_cell_handle() {
183 DCHECK(rmode_ == RelocInfo::CELL);
185 return Handle<Cell>(reinterpret_cast<Cell**>(address));
189 Cell* RelocInfo::target_cell() {
190 DCHECK(rmode_ == RelocInfo::CELL);
191 return Cell::FromValueAddress(Memory::Address_at(pc_));
195 void RelocInfo::set_target_cell(Cell* cell,
198 DCHECK(cell->IsCell())
209 host(), NULL, cell); local
    [all...]
  /external/v8/src/x87/
assembler-x87-inl.h 183 Handle<Cell> RelocInfo::target_cell_handle() {
184 DCHECK(rmode_ == RelocInfo::CELL);
186 return Handle<Cell>(reinterpret_cast<Cell**>(address));
190 Cell* RelocInfo::target_cell() {
191 DCHECK(rmode_ == RelocInfo::CELL);
192 return Cell::FromValueAddress(Memory::Address_at(pc_));
196 void RelocInfo::set_target_cell(Cell* cell,
199 DCHECK(cell->IsCell())
210 host(), NULL, cell); local
    [all...]

Completed in 186 milliseconds

12 3 4 5 6 7 8