Searched refs:cell (Results 1 - 25 of 154) sorted by relevance

1234567

/external/webkit/Source/JavaScriptCore/heap/
H A DMarkStack.cpp57 inline void MarkStack::markChildren(JSCell* cell) argument
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)
104 JSCell* cell; local
[all...]
H A DMarkedBlock.cpp74 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);
H A DMarkedSpace.h120 inline Heap* MarkedSpace::heap(JSCell* cell) argument
122 return MarkedBlock::blockFor(cell)->heap();
125 inline bool MarkedSpace::isMarked(const JSCell* cell) argument
127 return MarkedBlock::blockFor(cell)->isMarked(cell);
130 inline bool MarkedSpace::testAndSetMarked(const JSCell* cell) argument
132 return MarkedBlock::blockFor(cell)->testAndSetMarked(cell);
135 inline void MarkedSpace::setMarked(const JSCell* cell) argument
137 MarkedBlock::blockFor(cell)
[all...]
H A DHandleHeap.cpp77 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())
H A DHeap.h145 inline bool Heap::isMarked(const JSCell* cell) argument
147 return MarkedSpace::isMarked(cell);
150 inline bool Heap::testAndSetMarked(const JSCell* cell) argument
152 return MarkedSpace::testAndSetMarked(cell);
155 inline void Heap::setMarked(JSCell* cell) argument
157 MarkedSpace::setMarked(cell);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DTerrainGridListener.java44 public void tileAttached( Vector3f cell, TerrainQuad quad ); argument
46 public void tileDetached( Vector3f cell, TerrainQuad quad ); argument
/external/chromium/chrome/browser/resources/net_internals/
H A Dutil.js172 * @returns {!TablePrinterCell} the cell that was added.
176 var cell = new TablePrinterCell(cellText);
177 r.push(cell);
178 return cell;
189 * @returns {!TablePrinterCell} the cell that was added.
197 var cell = new TablePrinterCell(headerText);
198 this.rows_[0].push(cell);
199 return cell;
214 * Returns the cell at position (rowIndex, columnIndex), or null if there is
215 * no such cell
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DShowMoreDataGridNode.js59 var cell = document.createElement("td");
61 cell.style.setProperty("padding-left", (this.depth * this.dataGrid.indentWidth) + "px");
62 cell.appendChild(this.showNext);
64 cell.appendChild(this.showAll);
65 this._element.appendChild(cell);
72 cell = document.createElement("td");
73 this._element.appendChild(cell);
H A DProfileDataGridTree.js81 var cell = WebInspector.DataGridNode.prototype.createCell.call(this, columnIdentifier);
84 cell.addStyleClass("highlight");
86 cell.addStyleClass("highlight");
88 cell.addStyleClass("highlight");
90 cell.addStyleClass("highlight");
93 return cell;
96 cell.addStyleClass("highlight");
103 cell.insertBefore(urlElement, cell.firstChild);
106 return cell;
[all...]
/external/webkit/Source/WebCore/rendering/
H A DRenderTableSection.cpp93 // recalc cell info because RenderTable has unguarded pointers
116 // If beforeChild is inside an anonymous cell/row, insert into the cell or into
189 void RenderTableSection::addCell(RenderTableCell* cell, RenderTableRow* row) argument
191 int rSpan = cell->rowSpan();
192 int cSpan = cell->colSpan();
197 // (see the annotation on table cell layouting in the CSS specs and the testcase below:
207 Length logicalHeight = cell->style()->logicalHeight();
235 // tell the cell where it is
249 ASSERT(cell);
286 RenderTableCell* cell = current.primaryCell(); local
347 RenderTableCell* cell; local
474 RenderTableCell* cell = current.primaryCell(); local
597 RenderTableCell* cell = cs.primaryCell(); local
746 RenderTableCell* cell = cs.primaryCell(); local
971 RenderTableCell* cell = cs.primaryCell(); local
1008 paintCell(RenderTableCell* cell, PaintInfo& paintInfo, int tx, int ty) argument
1131 RenderTableCell* cell = current.primaryCell(); local
1220 const CellStruct& cell = cellAt(r, c); local
1244 RenderTableCell* cell = r[pos].primaryCell(); local
1322 RenderTableCell* cell = current.cells[i]; local
[all...]
H A DRenderTableRow.cpp100 // 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, beforeChil
144 RenderTableCell* cell = toRenderTableCell(child); local
220 RenderTableCell* cell = toRenderTableCell(child); local
[all...]
H A DAutoTableLayout.cpp60 RenderTableCell* cell = current.primaryCell(); local
62 bool cellHasContent = cell && !current.inColSpan && (cell->firstChild() || cell->style()->hasBorder() || cell->style()->hasPadding());
66 if (current.inColSpan || !cell)
69 if (cell->colSpan() == 1) {
70 // A cell originates in this column. Ensure we have
74 if (cell->preferredLogicalWidthsDirty())
75 cell
208 RenderTableCell* cell = toRenderTableCell(cb); local
292 RenderTableCell* cell = m_spanCells[i]; local
452 insertSpanCell(RenderTableCell *cell) argument
[all...]
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityTableColumn.cpp97 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...]
H A DAccessibilityTable.cpp118 // go through the cell's and check for tell-tale signs of "data" table status
127 // if there's only one cell, it's not a good AXTable candidate
131 // store the background color of the table to check against cell's background colors
139 // 1) must have at least one valid cell (and)
141 // 3) at least half of cells have different bg colors than the table, and there is cell spacing
154 RenderTableCell* cell = firstBody->primaryCellAt(row, col); local
155 if (!cell)
157 Node* cellNode = cell->node();
161 if (cell->width() < 1 || cell
320 RenderTableCell* cell = tableSection->primaryCellAt(rowIndex, colIndex); local
462 RenderTableCell* cell = 0; local
[all...]
H A DAccessibilityTableRow.cpp110 AccessibilityObject* cell = rowChildren[0].get();
111 if (!cell->isTableCell())
114 RenderObject* cellRenderer = static_cast<AccessibilityTableCell*>(cell)->renderer();
122 return cell;
H A DAccessibilityARIAGridRow.cpp133 AccessibilityObject* cell = rowChildren[i].get(); local
134 if (cell->ariaRoleAttribute() == RowHeaderRole)
135 return cell;
/external/webkit/LayoutTests/fast/dom/HTMLTableRowElement/script-tests/
H A Dcells.js7 var cell = document.createElement("td");
9 container.appendChild(cell);
17 var cell = document.createElement("th");
19 container.appendChild(cell);
/external/valgrind/main/memcheck/tests/
H A Dleak-pool.c9 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/chromium/chrome/browser/resources/shared/js/cr/ui/table/
H A Dtable_list.js41 var cells = this.querySelectorAll('.table-row-cell');
76 var cell = this.ownerDocument.createElement('div');
77 cell.style.width = cm.getWidth(i) + '%';
78 cell.className = 'table-row-cell';
79 cell.appendChild(
82 listItem.appendChild(cell);
H A Dtable_header.js52 var headerCells = this.querySelectorAll('.table-header-cell');
80 var cell = this.ownerDocument.createElement('div');
81 cell.style.width = cm.getWidth(i) + '%';
82 cell.className = 'table-header-cell';
83 cell.addEventListener('click', this.createSortFunction_(i).bind(this));
85 cell.appendChild(this.createHeaderLabel_(i));
86 this.headerInner_.appendChild(cell);
/external/guava/guava/src/com/google/common/collect/
H A DImmutableTable.java51 /** Returns an immutable table containing a single cell. */
91 for (Cell<? extends R, ? extends C, ? extends V> cell :
97 cellSetBuilder.add(cellOf((R) cell.getRowKey(),
98 (C) cell.getColumnKey(), (V) cell.getValue()));
139 * For empty or single-cell immutable tables, {@link #of()} and
187 * Adds the given {@code cell} to the table, making it immutable if
192 Cell<? extends R, ? extends C, ? extends V> cell) {
193 if (cell instanceof Tables.ImmutableCell) {
194 checkNotNull(cell
191 put( Cell<? extends R, ? extends C, ? extends V> cell) argument
[all...]
/external/webkit/Source/WebCore/html/
H A DHTMLTableRowElement.cpp130 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/webkit/Source/WebCore/platform/mac/
H A DThemeMac.mm130 static void setControlSize(NSCell* cell, const IntSize* sizes, const IntSize& minZoomedSize, float zoomFactor)
133 if (size != [cell controlSize]) // Only update if we have to, since AppKit does work even if the size is the same.
134 [cell setControlSize:(NSControlSize)size];
137 static void updateStates(NSCell* cell, ControlStates states)
142 bool oldPressed = [cell isHighlighted];
145 [cell setHighlighted:pressed];
148 bool oldEnabled = [cell isEnabled];
151 [cell setEnabled:enabled];
154 bool oldFocused = [cell showsFirstResponder];
157 [cell setShowsFirstResponde
[all...]
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHTMLTable.java110 final ICell cell = new Cell (m_th ? Tag.TH : Tag.TD);
111 add (cell);
113 return cell;
/external/icu4c/tools/toolutil/
H A Ducmstate.c333 int32_t entry, sum, state, cell, count; local
353 for(cell=0; cell<256; ++cell) {
354 entry=states->stateTable[state][cell];
358 states->stateTable[state][cell]=MBCS_ENTRY_FINAL_SET_VALUE(entry, sum);
362 states->stateTable[state][cell]=MBCS_ENTRY_FINAL_SET_VALUE(entry, sum);
373 for(cell=0; cell<256; ++cell) {
425 int32_t entry, state, cell, count; local
928 int32_t state, cell, entry; local
[all...]

Completed in 449 milliseconds

1234567