HomeSort by relevance Sort by last modified time
    Searched defs:cell (Results 101 - 125 of 162) sorted by null

1 2 3 45 6 7

  /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...]
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...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
Keyboard.java 722 int [] cell = new int[count]; local
723 System.arraycopy(indices, 0, cell, 0, count);
724 mGridNeighbors[(y / mCellHeight) * GRID_WIDTH + (x / mCellWidth)] = cell;
  /cts/tests/tests/database/src/android/database/cts/
AbstractCursorTest.java 499 Object cell = mRows[mPos].get(columnIndex); local
500 return (cell == null) ? null : cell.toString();
  /dalvik/vm/compiler/codegen/arm/
Assemble.cpp 2203 PredictedChainingCell *cell = local
    [all...]
  /dalvik/vm/compiler/codegen/mips/
Assemble.cpp 580 * chain cell offset codeAddress - 4, and the address of the trace profile
586 * +--| Offset to chain cell counts| -> 4 bytes (CHAIN_CELL_OFFSET_SIZE)
601 * +->| Chaining cell counts | -> 8 bytes, chain cell counts by type
660 /* Get the pointer of the chain cell count */
1575 PredictedChainingCell *cell = local
    [all...]
  /external/freetype/src/smooth/
ftgrays.c 48 /* coverage of the outline on each pixel cell. */
70 /* each pixel cell. */
295 /* determine the type used to store cell areas. This normally takes at */
465 /* Record the current cell in the table. */
470 PCell *pcell, cell; local
480 cell = *pcell;
481 if ( cell == NULL || cell->x > x )
484 if ( cell->x == x )
487 pcell = &cell->next
511 PCell cell = gray_find_cell( RAS_VAR ); local
1340 PCell cell; local
1371 PCell cell = ras.ycells[yindex]; local
    [all...]
  /external/icu4c/common/
ubidi.c 847 #define GET_STATEPROPS(cell) ((cell)&0x1f)
848 #define GET_ACTIONPROPS(cell) ((cell)>>5)
1251 uint8_t cell, oldStateSeq, actionSeq; local
1503 uint8_t gprop, resProp, cell; local
    [all...]
  /external/v8/src/arm/
stub-cache-arm.cc 892 Handle<JSGlobalPropertyCell> cell = local
    [all...]
full-codegen-arm.cc 1066 Handle<JSGlobalPropertyCell> cell = local
2468 Handle<JSGlobalPropertyCell> cell = local
    [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.cc 2252 Handle<JSGlobalPropertyCell> cell = local
2263 Handle<JSGlobalPropertyCell> cell = local
    [all...]
stub-cache-ia32.cc 827 // Generate code to check that a global property cell is empty. Create
828 // the property cell at compilation time if no cell exists for the
835 Handle<JSGlobalPropertyCell> cell = local
837 ASSERT(cell->value()->IsTheHole());
840 __ mov(scratch, Immediate(cell));
844 __ cmp(Operand::Cell(cell), Immediate(the_hole));
    [all...]
full-codegen-ia32.cc 1022 Handle<JSGlobalPropertyCell> cell = local
2218 Handle<JSGlobalPropertyCell> cell = local
2407 Handle<JSGlobalPropertyCell> cell = local
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc 87 Handle<JSGlobalPropertyCell> cell = local
89 li(result, Operand(cell));
215 stop("Unaligned cell in write barrier");
    [all...]
stub-cache-mips.cc 886 Handle<JSGlobalPropertyCell> cell = local
    [all...]
full-codegen-mips.cc 1074 Handle<JSGlobalPropertyCell> cell = local
2492 Handle<JSGlobalPropertyCell> cell = local
    [all...]
  /external/v8/src/x64/
stub-cache-x64.cc 804 // Generate code to check that a global property cell is empty. Create
805 // the property cell at compilation time if no cell exists for the
812 Handle<JSGlobalPropertyCell> cell = local
814 ASSERT(cell->value()->IsTheHole());
815 __ Move(scratch, cell);
    [all...]
full-codegen-x64.cc 138 JSGlobalPropertyCell* cell; local
139 if (maybe_cell->To(&cell)) {
140 __ movq(rax, Handle<JSGlobalPropertyCell>(cell),
973 Handle<JSGlobalPropertyCell> cell = local
2301 Handle<JSGlobalPropertyCell> cell = local
    [all...]
  /external/webkit/Source/WebCore/accessibility/gtk/
AccessibilityObjectWrapperAtk.cpp 1987 static AccessibilityTableCell* cell(AtkTable* table, guint row, guint column) function
2106 AccessibilityTableCell* cell = static_cast<AccessibilityTableCell*>(allColumnHeaders.at(k).get()); local
2124 AccessibilityTableCell* cell = static_cast<AccessibilityTableCell*>(allRowHeaders.at(k).get()); local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderObject.cpp 615 const RenderTableCell* cell = toRenderTableCell(this); local
616 if (parent() && cell->section())
617 return cell->table();
    [all...]
RenderBox.cpp 1956 RenderTableCell* cell = toRenderTableCell(cb); local
    [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/v8/src/
hydrogen-instructions.h 3464 Handle<JSGlobalPropertyCell> cell() const { return cell_; } function in class:v8::HLoadGlobalCell
3543 Handle<JSGlobalPropertyCell> cell() const { return cell_; } function in class:v8::HStoreGlobalCell
    [all...]
mark-compact.cc 1031 JSGlobalPropertyCell* cell = local
1188 JSGlobalPropertyCell* cell = type_feedback_cells->Cell(i); local
2316 HeapObject* cell; local
    [all...]
spaces.h 128 inline MarkBit(CellType* cell, CellType mask, bool data_only)
129 : cell_(cell), mask_(mask), data_only_(data_only) { }
131 inline CellType* cell() { return cell_; } function in class:v8::internal::MarkBit
220 MarkBit::CellType* cell = this->cells() + (index >> kBitsPerCellLog2); local
221 return MarkBit(cell, mask, data_only);
238 void Print(uint32_t pos, uint32_t cell) {
239 if (cell == seq_type) {
246 if (IsSeq(cell)) {
249 seq_type = cell;
254 PrintWord(cell);
    [all...]

Completed in 1389 milliseconds

1 2 3 45 6 7