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

1 2 3 4 5 6

  /external/webkit/Source/JavaScriptCore/heap/
MarkedBlock.cpp 74 JSCell* cell = reinterpret_cast<JSCell*>(&atoms()[i]); local
76 if (cell->structure() && cell->structure() != dummyMarkableCellStructure && !cell->isZombie()) {
77 const ClassInfo* info = cell->classInfo();
78 cell->~JSCell();
79 new (cell) JSZombie(*m_heap->globalData(), info, m_heap->globalData()->zombieStructure.get());
83 cell->~JSCell();
84 new (cell) JSCell(*m_heap->globalData(), dummyMarkableCellStructure);
MarkStack.cpp 57 inline void MarkStack::markChildren(JSCell* cell)
59 ASSERT(Heap::isMarked(cell));
60 if (cell->structure()->typeInfo().type() < CompoundType) {
61 cell->JSCell::markChildren(*this);
65 if (!cell->structure()->typeInfo().overridesMarkChildren()) {
66 ASSERT(cell->isObject());
68 asObject(cell)->markChildrenDirect(*this);
72 cell->markChildren(*this);
78 if (cell->vptr() == m_jsArrayVPtr) {
79 asArray(cell)->markChildrenDirect(*this)
104 JSCell* cell; local
    [all...]
HandleHeap.cpp 77 JSCell* cell = node->slot()->asCell(); local
78 if (Heap::isMarked(cell))
99 JSCell* cell = node->slot()->asCell(); local
100 if (Heap::isMarked(cell))
161 JSCell* cell = value.asCell();
162 if (!cell || !cell->structure())
166 if (cell->isZombie())
  /external/guava/guava/src/com/google/common/collect/
SingletonImmutableTable.java 29 * An implementation of {@link ImmutableTable} that holds a single cell.
45 SingletonImmutableTable(Cell<R, C, V> cell) {
46 this(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
49 @Override public ImmutableSet<Cell<R, C, V>> cellSet() {
125 Cell<?, ?, ?> thatCell = that.cellSet().iterator().next();
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...]
ImmutableTable.java 51 /** Returns an immutable table containing a single cell. */
84 Cell<? extends R, ? extends C, ? extends V> onlyCell
89 ImmutableSet.Builder<Cell<R, C, V>> cellSetBuilder
91 for (Cell<? extends R, ? extends C, ? extends V> cell :
94 * Must cast to be able to create a Cell<R, C, V> rather than a
95 * Cell<? extends R, ? extends C, ? extends V>
97 cellSetBuilder.add(cellOf((R) cell.getRowKey(),
98 (C) cell.getColumnKey(), (V) cell.getValue()))
    [all...]
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...]
Tables.java 28 import com.google.common.collect.Table.Cell;
53 * Returns an immutable cell with the specified row key, column key, and
56 * <p>The returned cell is serializable.
58 * @param rowKey the row key to be associated with the returned cell
59 * @param columnKey the column key to be associated with the returned cell
60 * @param value the value to be associated with the returned cell
62 public static <R, C, V> Cell<R, C, V> immutableCell(
96 abstract static class AbstractCell<R, C, V> implements Cell<R, C, V> {
104 if (obj instanceof Cell) {
105 Cell<?, ?, ?> other = (Cell<?, ?, ?>) obj
305 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) obj; local
314 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) obj; local
494 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) obj; local
506 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) obj; local
    [all...]
RegularImmutableTable.java 43 private final ImmutableSet<Cell<R, C, V>> cellSet;
45 private RegularImmutableTable(ImmutableSet<Cell<R, C, V>> cellSet) {
49 private static final Function<Cell<Object, Object, Object>, Object>
51 new Function<Cell<Object, Object, Object>, Object>() {
52 @Override public Object apply(Cell<Object, Object, Object> from) {
58 private Function<Cell<R, C, V>, V> getValueFunction() {
85 @Override public final ImmutableSet<Cell<R, C, V>> cellSet() {
90 List<Cell<R, C, V>> cells,
103 Comparator<Cell<R, C, V>> comparator = new Comparator<Cell<R, C, V>>()
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLTableRowElement.cpp 130 RefPtr<HTMLTableCellElement> cell = HTMLTableCellElement::create(tdTag, document()); local
132 appendChild(cell, ec);
139 insertBefore(cell, n, ec);
141 return cell.release();
151 RefPtr<Node> cell = children->item(index); local
152 HTMLElement::removeChild(cell.get(), ec);
  /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...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityARIAGridRow.cpp 133 AccessibilityObject* cell = rowChildren[i].get(); local
134 if (cell->ariaRoleAttribute() == RowHeaderRole)
135 return cell;
AccessibilityTableColumn.cpp 97 AccessibilityObject* cell = rowChildren[i].get(); local
98 if (cell->ariaRoleAttribute() == ColumnHeaderRole)
99 return cell;
136 RenderTableCell* cell = 0;
143 // we've reached a cell that doesn't even overlap our column
155 cell = testCell;
158 if (!cell)
161 return m_parentTable->axObjectCache()->getOrCreate(cell);
187 AccessibilityTableCell* cell = m_parentTable->cellForColumnAndRow(m_columnIndex, i); local
188 if (!cell)
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderTableRow.cpp 100 // If beforeChild is inside an anonymous cell, insert into the cell.
106 RenderTableCell* cell = new (renderArena()) RenderTableCell(document() /* anonymous object */); local
110 cell->setStyle(newStyle.release());
111 addChild(cell, beforeChild);
112 cell->addChild(child);
116 // If the next renderer is actually wrapped in an anonymous table cell, we need to go up and find that.
120 RenderTableCell* cell = toRenderTableCell(child); local
124 section()->addCell(cell, this);
127 RenderBox::addChild(cell, beforeChild)
144 RenderTableCell* cell = toRenderTableCell(child); local
220 RenderTableCell* cell = toRenderTableCell(child); local
    [all...]
FixedTableLayout.cpp 37 table's width, the width of the columns, and borders or cell
50 2. Otherwise, a cell in the first row with a value other than
52 the cell spans more than one column, the width is divided over the
56 table space (minus borders or cell spacing).
60 widths (plus cell spacing or borders). If the table is wider than
66 not affect column widths. Any cell that has content that overflows
155 RenderTableCell* cell = toRenderTableCell(child); local
156 if (cell->preferredLogicalWidthsDirty())
157 cell->computePreferredLogicalWidths();
159 Length w = cell->styleOrColLogicalWidth()
    [all...]
  /external/clang/test/CodeGenCXX/
empty-classes.cpp 61 FreeCell cell; member in union:PR8796::ThingOrCell
  /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/valgrind/main/memcheck/tests/
leak-pool.c 9 struct cell struct
11 struct cell *next;
92 struct cell *cells_static[N];
97 struct cell *cells_local[N];
101 struct cell **cells = static_roots ? cells_static : cells_local;
114 cells[i] = allocate_from_pool(p, sizeof(struct cell));
119 p->buf+(10 * sizeof(struct cell)),
120 20 * sizeof(struct cell) + 2);
  /external/iproute2/tc/
q_cbq.c 32 fprintf(stderr, " [ prio NUMBER ] [ cell BYTES ] [ ewma LOG ]\n");
41 fprintf(stderr, " [ cell BYTES ] [ ewma LOG ]\n");
83 } else if (matches(*argv, "cell") == 0) {
84 unsigned cell; local
87 if (get_size(&cell, *argv)) {
88 explain1("cell");
92 if ((1<<i) == cell)
95 fprintf(stderr, "cell must be 2^n\n");
262 } else if (matches(*argv, "cell") == 0) {
263 unsigned cell; local
    [all...]
  /external/skia/samplecode/
SampleStrokePath.cpp 46 uint8_t cell[9]; local
47 memset(cell, 0xFF, sizeof(cell));
49 src.fImage = cell;
  /external/webkit/Source/JavaScriptCore/runtime/
Operations.h 414 JSCell* cell = base.asCell(); local
417 while (slotBase != cell) {
418 JSValue v = cell->structure()->prototypeForLookup(callFrame);
426 cell = v.asCell();
430 if (cell->structure()->isDictionary()) {
431 asObject(cell)->flattenDictionaryObject(callFrame->globalData());
432 if (slotBase == cell)
433 slotOffset = cell->structure()->get(callFrame->globalData(), propertyName);
  /external/webkit/Source/WebCore/inspector/front-end/
ProfileView.js 534 var cell = event.target.enclosingNodeOrSelfWithNodeName("td"); variable
535 if (!cell || (!cell.hasStyleClass("total-column") && !cell.hasStyleClass("self-column") && !cell.hasStyleClass("average-column")))
538 if (cell.hasStyleClass("total-column"))
540 else if (cell.hasStyleClass("self-column"))
542 else if (cell.hasStyleClass("average-column"))
  /packages/apps/Launcher2/
print_db.py 50 def print_intent(out, id, i, cell):
51 if cell:
53 cgi.escape(cell, True)
57 def print_icon(out, id, i, cell):
58 if cell:
62 f.write(cell)
65 def print_cell(out, id, i, cell):
66 if not cell is None:
67 out.write(cgi.escape(str(cell)))
74 def render_cell_info(out, cell, occupied)
158 cell = row[i] variable
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
EditableDialogCellEditor.java 80 protected Control createContents(Composite cell) {
81 text = new Text(cell, SWT.SINGLE);
95 // disposed this cell editor
130 text.setFont(cell.getFont());
131 text.setBackground(cell.getBackground());
218 * Processes a modify event that occurred in this text cell editor.
260 * value and deactivating this cell editor.
337 * Returns <code>true</code> if this cell editor is
358 * Processes a key release event that occurred in this cell editor.
473 // This means that in some cases the cell editor will still b
    [all...]
  /development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
GameActivity.java 123 int cell = mGameView.getSelection(); local
124 mButtonNext.setEnabled(cell >= 0);
138 int cell = mGameView.getSelection(); local
139 if (cell >= 0) {
141 mGameView.setCell(cell, player);
152 // Pick a non-used cell at random. That's about all the AI you need for this game.

Completed in 1065 milliseconds

1 2 3 4 5 6