Searched defs:cell (Results 1 - 25 of 92) sorted by relevance

1234

/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/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 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 DHandle.h83 static JSValue toJSValue(T* cell) { return reinterpret_cast<JSCell*>(cell); } argument
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 DHeap.cpp323 inline const char* TypeCounter::typeName(JSCell* cell) argument
325 if (cell->isString())
327 if (cell->isGetterSetter())
329 if (cell->isAPIValueWrapper())
331 if (cell->isPropertyNameIterator())
333 if (const ClassInfo* info = cell->classInfo())
335 if (!cell->isObject())
336 return "[empty cell]";
340 inline void TypeCounter::operator()(JSCell* cell) argument
342 m_typeCountSet->add(typeName(cell));
[all...]
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/clang/test/CodeGenCXX/
H A Dempty-classes.cpp61 FreeCell cell; member in union:PR8796::ThingOrCell
/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/webkit/Source/JavaScriptCore/debugger/
H A DDebugger.cpp65 inline void Recompiler::operator()(JSCell* cell) argument
67 if (!cell->inherits(&JSFunction::s_info))
70 JSFunction* function = asFunction(cell);
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSCell.cpp212 bool isZombie(const JSCell* cell) argument
215 return cell && cell->isZombie();
217 UNUSED_PARAM(cell);
H A DJSArray.h174 inline JSArray* asArray(JSCell* cell) argument
176 ASSERT(cell->inherits(&JSArray::s_info));
177 return static_cast<JSArray*>(cell);
185 inline bool isJSArray(JSGlobalData* globalData, JSCell* cell) { return cell->vptr() == globalData->jsArrayVPtr; } argument
H A DJSCell.h358 JSCell* cell = reinterpret_cast<JSCell*>(&atoms()[m_nextAtom]); local
360 cell->~JSCell();
361 return cell;
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityARIAGridRow.cpp133 AccessibilityObject* cell = rowChildren[i].get(); local
134 if (cell->ariaRoleAttribute() == RowHeaderRole)
135 return cell;
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...]
/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/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...]
H A DSingletonImmutableTable.java29 * An implementation of {@link ImmutableTable} that holds a single cell.
45 SingletonImmutableTable(Cell<R, C, V> cell) { argument
46 this(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
/external/skia/samplecode/
H A DSampleStrokePath.cpp46 uint8_t cell[9]; local
47 memset(cell, 0xFF, sizeof(cell));
49 src.fImage = cell;
/external/webkit/Source/WebCore/inspector/front-end/
H A DProfileView.js534 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"))
/external/webkit/Source/WebCore/rendering/
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...]
/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...]
/external/iproute2/tc/
H A Dq_cbq.c32 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/v8/src/mips/
H A Dassembler-mips-inl.h218 void RelocInfo::set_target_cell(JSGlobalPropertyCell* cell, argument
221 Address address = cell->address() + JSGlobalPropertyCell::kValueOffset;
224 // TODO(1550) We are passing NULL as a slot because cell can never be on
227 host(), NULL, cell); local

Completed in 774 milliseconds

1234