HomeSort by relevance Sort by last modified time
    Searched defs:cell (Results 51 - 75 of 294) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/v8/src/compiler/
js-call-reducer.cc 338 Handle<WeakCell> cell = Handle<WeakCell>::cast(feedback); local
339 if (cell->value()->IsJSFunction()) {
341 jsgraph()->Constant(handle(cell->value(), isolate()));
465 Handle<WeakCell> cell = Handle<WeakCell>::cast(feedback); local
466 if (cell->value()->IsJSFunction()) {
468 jsgraph()->Constant(handle(cell->value(), isolate()));
  /external/v8/src/heap/
objects-visiting-inl.h 185 &FixedBodyVisitor<StaticVisitor, Cell::BodyDescriptor, void>::Visit);
236 DCHECK(rinfo->rmode() == RelocInfo::CELL);
237 Cell* cell = rinfo->target_cell(); local
239 heap->mark_compact_collector()->RecordRelocSlot(host, rinfo, cell);
240 if (!host->IsWeakObject(cell)) {
241 StaticVisitor::MarkObject(heap, cell);
340 // Enqueue weak cell in linked list of encountered weak collections.
remembered-set.h 234 // Updates a cell slot using an untyped slot callback.
238 DCHECK(rinfo->rmode() == RelocInfo::CELL);
239 Object* cell = rinfo->target_cell(); local
240 Object* old_cell = cell;
241 SlotCallbackResult result = callback(&cell);
242 if (cell != old_cell) {
243 rinfo->set_target_cell(reinterpret_cast<Cell*>(cell));
319 RelocInfo rinfo(isolate, addr, RelocInfo::CELL, 0, NULL);
slot-set.h 54 uint32_t cell = bucket[bucket_index][cell_index]; local
55 if (cell) {
57 if (cell & bit_mask) {
119 uint32_t cell = bucket[bucket_index][cell_index]; local
120 return (cell & (1u << bit_index)) != 0;
144 uint32_t cell = current_bucket[i]; local
145 uint32_t old_cell = cell;
146 uint32_t new_cell = cell;
147 while (cell) {
148 int bit_offset = base::bits::CountTrailingZeros32(cell);
    [all...]
  /external/v8/src/mips/
assembler-mips-inl.h 281 Handle<Cell> RelocInfo::target_cell_handle() {
282 DCHECK(rmode_ == RelocInfo::CELL);
284 return Handle<Cell>(reinterpret_cast<Cell**>(address));
288 Cell* RelocInfo::target_cell() {
289 DCHECK(rmode_ == RelocInfo::CELL);
290 return Cell::FromValueAddress(Memory::Address_at(pc_));
294 void RelocInfo::set_target_cell(Cell* cell,
297 DCHECK(rmode_ == RelocInfo::CELL);
302 cell); local
    [all...]
  /external/v8/src/mips64/
assembler-mips64-inl.h 263 Handle<Cell> RelocInfo::target_cell_handle() {
264 DCHECK(rmode_ == RelocInfo::CELL);
266 return Handle<Cell>(reinterpret_cast<Cell**>(address));
270 Cell* RelocInfo::target_cell() {
271 DCHECK(rmode_ == RelocInfo::CELL);
272 return Cell::FromValueAddress(Memory::Address_at(pc_));
276 void RelocInfo::set_target_cell(Cell* cell,
279 DCHECK(rmode_ == RelocInfo::CELL);
284 cell); local
    [all...]
  /external/v8/src/s390/
assembler-s390-inl.h 201 Handle<Cell> RelocInfo::target_cell_handle() {
202 DCHECK(rmode_ == RelocInfo::CELL);
204 return Handle<Cell>(reinterpret_cast<Cell**>(address));
207 Cell* RelocInfo::target_cell() {
208 DCHECK(rmode_ == RelocInfo::CELL);
209 return Cell::FromValueAddress(Memory::Address_at(pc_));
212 void RelocInfo::set_target_cell(Cell* cell, WriteBarrierMode write_barrier_mode,
214 DCHECK(rmode_ == RelocInfo::CELL);
219 cell); local
    [all...]
  /external/v8/src/
transitions.cc 24 Handle<WeakCell> cell = Map::WeakCellForMap(target); local
25 ReplaceTransitions(map, *cell);
45 Handle<WeakCell> cell = Map::WeakCellForMap(target); local
46 ReplaceTransitions(map, *cell);
247 Object* cell = array->get(header + i); local
248 if (!WeakCell::cast(cell)->cleared()) {
250 array->set(header + new_number_of_transitions, cell);
474 WeakCell* cell = WeakCell::cast(proto_trans->get(index)); local
475 if (!cell->cleared()) {
476 TraverseTransitionTreeInternal(Map::cast(cell->value()), callback
    [all...]
type-info.cc 42 Cell* cell = Cell::cast(value); local
43 return Handle<Object>(cell->value(), isolate());
61 WeakCell* cell = WeakCell::cast(obj); local
62 if (cell->cleared()) return undefined;
63 obj = cell->value();
  /packages/apps/Launcher3/
print_db.py 70 def print_intent(out, id, i, cell):
71 if cell:
73 cgi.escape(cell, True)
77 def print_icon(out, id, i, cell):
78 if cell:
82 f.write(cell)
85 def print_icon_type(out, id, i, cell):
86 if cell == 0:
87 out.write("Application (%d)" % cell)
88 elif cell == 1
213 cell = row[i] variable
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/util/
FocusLogic.java 176 View cell = parent.getChildAt(i); local
177 if (!cell.isFocusable()) {
180 int cx = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellX;
181 int cy = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellY;
191 * Creates a sparse matrix that merges the icon and hotseat view group using the cell layout.
231 View cell = iconParent.getChildAt(i); local
232 if (!cell.isFocusable()) {
235 int cx = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellX;
236 int cy = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellY;
289 View cell = iconParent.getChildAt(i) local
    [all...]
  /external/autotest/frontend/client/src/autotest/common/table/
DataTable.java 64 public Widget createWidget(int row, int cell, JSONObject rowObject);
264 HTMLTable.Cell tableCell = table.getCellForDomEvent(event);
270 int cell = tableCell.getCellIndex(); local
272 if (isClickableWidgetColumn(cell) && table.getWidget(row, cell) != null) {
276 onCellClicked(row, cell, isRightClick);
279 protected void onCellClicked(int row, int cell, boolean isRightClick) {