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

12 3 4

  /external/ceres-solver/internal/ceres/
block_sparse_matrix.cc 67 const vector<Cell>& cells = block_structure_->rows[i].cells;
121 const vector<Cell>& cells = block_structure_->rows[i].cells;
142 const vector<Cell>& cells = block_structure_->rows[i].cells;
160 const vector<Cell>& cells = block_structure_->rows[i].cells;
177 const vector<Cell>& cells = block_structure_->rows[i].cells;
199 const vector<Cell>& cells = block_structure_->rows[i].cells;
222 const vector<Cell>& cells = block_structure_->rows[i].cells;
267 const vector<Cell>& cells = block_structure_->rows[i].cells;
block_structure.cc 37 bool CellLessThan(const Cell& lhs, const Cell& rhs) {
61 const CellProto &cell = row.cells(j); local
62 block_structure->rows[i].cells[j].block_id = cell.block_id();
63 block_structure->rows[i].cells[j].position = cell.position();
83 CellProto *cell = row->add_cells(); local
84 cell->set_block_id(block_structure.rows[i].cells[j].block_id);
85 cell->set_position(block_structure.rows[i].cells[j].position);
block_jacobi_preconditioner.cc 78 const vector<Cell>& cells = bs->rows[r].cells;
visibility.cc 56 const vector<Cell>& cells = block_structure.rows[i].cells;
block_jacobian_writer.cc 193 Cell& cell = row->cells[k]; local
194 cell.block_id = parameter_block->index();
195 cell.position = jacobian_layout_[i][k];
implicit_schur_complement.cc 153 const Cell& cell = block_diagonal_structure->rows[r].cells[0]; local
154 MatrixRef m(block_diagonal->mutable_values() + cell.position,
  /external/guava/guava-tests/test/com/google/common/collect/
TableCollectionTest.java 27 import com.google.common.collect.Table.Cell;
416 @Override public SampleElements<Cell<String, Integer, Character>>
418 return new SampleElements<Cell<String, Integer, Character>>(
425 @Override public Set<Cell<String, Integer, Character>> create(
430 Cell<String, Integer, Character> cell
431 = (Cell<String, Integer, Character>) element;
432 columnKeys.add(cell.getColumnKey());
438 Cell<String, Integer, Character> cell
679 Cell<String, Integer, Character> cell local
    [all...]
RegularImmutableTableTest.java 23 import com.google.common.collect.Table.Cell;
29 private static final ImmutableSet<Cell<Character, Integer, String>> CELLS =
  /external/guava/guava/src/com/google/common/collect/
ArrayTable.java 70 * access the same cell of an {@code ArrayTable} concurrently and one of the
75 * to one cell and a thread that reads from another.
386 for (Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) {
387 put(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
466 public Set<Cell<R, C, V>> cellSet() {
471 private class CellSet extends AbstractSet<Cell<R, C, V>> {
473 @Override public Iterator<Cell<R, C, V>> iterator()
    [all...]
EmptyImmutableTable.java 68 @Override public ImmutableSet<Cell<Object, Object, Object>> cellSet() {
StandardTable.java 179 for (Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) {
180 put(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
269 * <p>Each cell is an immutable snapshot of a row key / column key / value
270 * mapping, taken at the time the cell is returned by a method call to the
273 @Override public Set<Cell<R, C, V>> cellSet() {
278 private class CellSet extends TableSet<Cell<R, C, V>> {
279 @Override public Iterator<Cell<R, C, V>> iterator()
289 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) obj; local
298 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) obj; local
    [all...]
ForwardingTable.java 45 public Set<Cell<R, C, V>> cellSet() {
  /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) {
  /ndk/sources/host-tools/nawk-20071023/
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) {
  /packages/apps/Settings/src/com/android/settings/
ConfirmLockPattern.java 22 import com.android.internal.widget.LockPatternView.Cell;
256 public void onPatternCellAdded(List<Cell> pattern) {
260 public void onPatternDetected(List<LockPatternView.Cell> pattern) {
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternUtils.java 283 public boolean checkPattern(List<LockPatternView.Cell> pattern) {
489 public void saveLockPattern(List<LockPatternView.Cell> pattern) {
498 public void saveLockPattern(List<LockPatternView.Cell> pattern, boolean isFallback) {
760 public static List<LockPatternView.Cell> stringToPattern(String string) {
761 List<LockPatternView.Cell> result = Lists.newArrayList();
766 result.add(LockPatternView.Cell.of(b / 3, b % 3));
776 public static String patternToString(List<LockPatternView.Cell> pattern) {
784 LockPatternView.Cell cell = pattern.get(i); local
785 res[i] = (byte) (cell.getRow() * 3 + cell.getColumn())
805 LockPatternView.Cell cell = pattern.get(i); local
    [all...]
  /external/bzip2/
bzip2.c     [all...]
  /external/clang/test/SemaCXX/
warn-thread-safety-analysis.cpp 1880 Cell<int> cell; local
3532 Cell<int> cell; local
3545 Cell<int> cell; local
3566 Cell<int> cell; local
3582 Cell<int> cell; local
    [all...]
  /external/webkit/Source/WebCore/platform/
Cursor.cpp 114 case Cursor::Cell:
209 case Cursor::Cell:
210 return "Cell";
298 DEFINE_STATIC_LOCAL(Cursor, c, (Cursor::Cell));
Cursor.h 139 Cell,
  /external/v8/test/cctest/
test-circular-queue.cc 13 typedef SamplingCircularQueue::Cell Record;
73 // Consumption must still be possible as the first cell of the
83 typedef SamplingCircularQueue::Cell Record;
  /external/marisa-trie/lib/marisa/
trie-inline.h 6 #include "cell.h"
251 Cell cell; local
252 cell.set_louds_pos(get_child(node));
253 if (!louds_[cell.louds_pos()]) {
256 cell.set_node(louds_pos_to_node(cell.louds_pos(), node));
257 cell.set_key_id(node_to_key_id(cell.node()));
258 cell.set_length(key.length())
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
trie-inline.h 6 #include "cell.h"
256 Cell cell; local
257 cell.set_louds_pos(get_child(node));
258 if (!louds_[cell.louds_pos()]) {
261 cell.set_node(louds_pos_to_node(cell.louds_pos(), node));
262 cell.set_key_id(node_to_key_id(cell.node()));
263 cell.set_length(key.length())
    [all...]
  /external/webkit/Source/WebCore/platform/qt/
CursorQt.cpp 177 case Cell:
  /external/webkit/LayoutTests/dom/html/level2/html/
table22.js 78 Cell background color.

Completed in 807 milliseconds

12 3 4