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

1 2

  /external/chromium_org/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/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/marisa-trie/lib/marisa/
cell.h 8 class Cell {
10 Cell() : louds_pos_(0), node_(0), key_id_(0), length_(0) {}
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
cell.h 8 class Cell {
10 Cell() : louds_pos_(0), node_(0), key_id_(0), length_(0) {}
  /external/ceres-solver/internal/ceres/
block_structure.h 60 struct Cell {
61 Cell() : block_id(-1), position(-1) {}
62 Cell(int block_id_, int position_)
67 // Where in the values array of the jacobian is this cell located.
71 // Order cell by their block_id;
72 bool CellLessThan(const Cell& lhs, const Cell& rhs);
76 vector<Cell> cells;
  /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/
circular-queue.h 69 typedef AtomicWord Cell;
70 // Reserved values for the first cell of a record.
71 static const Cell kClear = 0; // Marks clean (processed) chunks.
72 static const Cell kEnd = -1; // Marks the end of the buffer.
76 Cell* enqueue_pos;
79 Cell* dequeue_chunk_pos;
80 Cell* dequeue_chunk_poll_pos;
81 Cell* dequeue_pos;
82 Cell* dequeue_end_pos;
85 INLINE(void WrapPositionIfNeeded(Cell** pos))
    [all...]
objects-inl.h     [all...]
  /external/guava/guava/src/com/google/common/collect/
Table.java 113 * equal when their cell views, as returned by {@link #cellSet}, are equal.
120 * as the hash code of its cell view, as returned by {@link #cellSet}.
194 * returned set will update the underlying table, and vice versa. The cell set
200 Set<Cell<R, C, V>> cellSet();
263 interface Cell<R, C, V> {
265 * Returns the row key of this cell.
270 * Returns the column key of this cell.
275 * Returns the value of this cell.
280 * Compares the specified object with this cell for equality. Two cells are
287 * Returns the hash code of this cell
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
Cursor.h 72 Cell,
  /frameworks/base/graphics/java/android/graphics/
Atlas.java 174 * The algorithm starts with a single empty cell covering the entire
205 * After placing a bitmap in an empty cell, the algorithm splits
234 * fit. It will then split the now occupied cell and proceed onto
238 private final Cell mRoot = new Cell();
246 * A cell represents a sub-rectangle of the atlas. A cell is
250 private static class Cell {
257 Cell next;
261 return String.format("cell[x=%d y=%d width=%d height=%d", x, y, width, height)
281 Cell cell = mRoot.next; local
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
awk.h 76 /* Cell: all information about a variable or constant */
78 typedef struct Cell {
85 struct Cell *cnext; /* ptr to next if chained */
86 } Cell;
91 Cell **tab; /* hash table pointers */
97 extern Cell *nrloc; /* NR */
98 extern Cell *fnrloc; /* FNR */
99 extern Cell *nfloc; /* NF */
100 extern Cell *rstartloc; /* RSTART */
101 extern Cell *rlengthloc; /* RLENGTH *
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp 35 llvm::Value *Cell = Builder.CreateConstInBoundsGEP1_32(Array, I);
36 Builder.CreateStore(Value, Cell);
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 78 private ArrayList<Cell> mPattern = new ArrayList<Cell>(9);
132 * Represents a cell in the 3 X 3 matrix of the unlock pattern view.
134 public static class Cell {
139 static Cell[][] sCells = new Cell[3][3];
143 sCells[i][j] = new Cell(i, j);
149 * @param row The row of the cell.
150 * @param column The column of the cell.
152 private Cell(int row, int column)
516 final Cell cell = checkForNewHit(x, y); local
817 final Cell cell = pattern.get(i); local
    [all...]
  /external/bzip2/
bzip2.c     [all...]
  /external/chromium_org/v8/src/
factory.cc 551 Handle<Cell> Factory::NewCell(Handle<Object> value) {
556 Cell);
570 Handle<PropertyCell> cell = NewPropertyCellWithHole(); local
571 PropertyCell::SetValueInferType(cell, value);
572 return cell;
1159 Handle<PropertyCell> cell = NewPropertyCell(value); local
    [all...]
objects.h 127 // - Cell
    [all...]
  /external/clang/test/SemaCXX/
warn-thread-safety-analysis.cpp 1885 Cell<int> cell; local
3537 Cell<int> cell; local
3550 Cell<int> cell; local
3571 Cell<int> cell; local
3587 Cell<int> cell; local
    [all...]
  /external/emma/lib/
emma.jar 
  /external/droiddriver/libs/
guava-13.0.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar 
  /prebuilts/tools/common/guava-tools/
guava-13.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/13.0.1/
guava-13.0.1.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 

Completed in 501 milliseconds

1 2