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

  /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;
  /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...]
LockPatternUtils.java 185 public boolean checkPattern(List<LockPatternView.Cell> pattern) {
302 public void saveLockPattern(List<LockPatternView.Cell> pattern) {
420 public static List<LockPatternView.Cell> stringToPattern(String string) {
421 List<LockPatternView.Cell> result = Lists.newArrayList();
426 result.add(LockPatternView.Cell.of(b / 3, b % 3));
436 public static String patternToString(List<LockPatternView.Cell> pattern) {
444 LockPatternView.Cell cell = pattern.get(i); local
445 res[i] = (byte) (cell.getRow() * 3 + cell.getColumn())
465 LockPatternView.Cell cell = pattern.get(i); local
    [all...]
  /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;
  /packages/apps/Settings/src/com/android/settings/
ChooseLockPattern.java 24 import com.android.internal.widget.LockPatternView.Cell;
74 protected List<LockPatternView.Cell> mChosenPattern = null;
79 private final List<LockPatternView.Cell> mAnimatePattern =
81 LockPatternView.Cell.of(0, 0),
82 LockPatternView.Cell.of(0, 1),
83 LockPatternView.Cell.of(1, 1),
84 LockPatternView.Cell.of(2, 1)
117 public void onPatternDetected(List<LockPatternView.Cell> pattern) {
129 mChosenPattern = new ArrayList<LockPatternView.Cell>(pattern);
138 public void onPatternCellAdded(List<Cell> pattern)
    [all...]
ConfirmLockPattern.java 22 import com.android.internal.widget.LockPatternView.Cell;
220 public void onPatternCellAdded(List<Cell> pattern) {
224 public void onPatternDetected(List<LockPatternView.Cell> pattern) {
  /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/bzip2/
bzip2.c     [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
PatternUnlockScreen.java 37 import com.android.internal.widget.LockPatternView.Cell;
505 public void onPatternCellAdded(List<Cell> pattern) {
516 public void onPatternDetected(List<LockPatternView.Cell> pattern) {
  /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...]
  /external/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/
markdown.php     [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DatabaseHelper.java 804 List<LockPatternView.Cell> cellPattern =
    [all...]
  /external/emma/lib/
emma.jar 

Completed in 221 milliseconds