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

  /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/webkit/JavaScriptCore/jit/
JITStubCall.h 40 , m_returnType(Cell)
48 , m_returnType(Cell)
192 ASSERT(m_returnType == Value || m_returnType == Cell);
203 ASSERT(m_returnType == VoidPtr || m_returnType == Cell);
213 ASSERT(m_returnType == Value || m_returnType == VoidPtr || m_returnType == Int || m_returnType == Cell);
215 ASSERT(m_returnType == VoidPtr || m_returnType == Int || m_returnType == Cell);
228 enum { Void, VoidPtr, Int, Value, Cell } m_returnType;
  /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/webkit/JavaScriptCore/runtime/
Collector.h 177 // cell size needs to be a power of two for certain optimizations in collector.cpp
245 typedef CollectorCell Cell;
249 inline CollectorBlock* Heap::cellBlock(const JSCell* cell)
251 return reinterpret_cast<CollectorBlock*>(reinterpret_cast<uintptr_t>(cell) & BLOCK_MASK);
254 inline size_t Heap::cellOffset(const JSCell* cell)
256 return (reinterpret_cast<uintptr_t>(cell) & BLOCK_OFFSET_MASK) / CELL_SIZE;
259 inline bool Heap::isCellMarked(const JSCell* cell)
261 return cellBlock(cell)->marked.get(cellOffset(cell));
264 inline void Heap::markCell(JSCell* cell)
    [all...]
Collector.cpp 163 // Each symbian cell within RHeap maps to a 64kb aligned CollectorBlock.
392 typedef HeapConstants::Cell Cell;
407 // Fast case: find the next garbage cell and recycle it.
414 if (!block->marked.get(m_heap.nextCell)) { // Always false for the last cell in the block
415 Cell* cell = block->cells + m_heap.nextCell; local
418 JSCell* imp = reinterpret_cast<JSCell*>(cell);
423 return cell;
728 // Cell size needs to be a power of two for isPossibleCell to be valid
1075 JSCell* cell = *it; local
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 79 private ArrayList<Cell> mPattern = new ArrayList<Cell>(9);
134 * Represents a cell in the 3 X 3 matrix of the unlock pattern view.
136 public static class Cell {
141 static Cell[][] sCells = new Cell[3][3];
145 sCells[i][j] = new Cell(i, j);
151 * @param row The row of the cell.
152 * @param column The column of the cell.
154 private Cell(int row, int column)
476 final Cell cell = checkForNewHit(x, y); local
798 final Cell cell = pattern.get(i); local
    [all...]
  /external/bzip2/
bzip2.c     [all...]
  /external/emma/lib/
emma.jar 

Completed in 337 milliseconds