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

1 23 4 5 6 7 8 91011>>

  /external/v8/src/ic/s390/
handler-compiler-s390.cc 172 // Generate code to check that a global property cell is empty. Create
173 // the property cell at compilation time if no cell exists for the
178 Handle<PropertyCell> cell = JSGlobalObject::EnsureEmptyPropertyCell( local
181 DCHECK(cell->value()->IsTheHole(isolate));
182 Handle<WeakCell> weak_cell = isolate->factory()->NewWeakCell(cell);
342 Handle<Cell> validity_cell =
347 __ LoadP(scratch1, FieldMemOperand(scratch1, Cell::kValueOffset));
525 // otherwise wrap it in a weak cell.
529 Handle<WeakCell> cell = isolate()->factory()->NewWeakCell(callback) local
    [all...]
  /external/v8/src/ic/x64/
handler-compiler-x64.cc 201 Handle<PropertyCell> cell = JSGlobalObject::EnsureEmptyPropertyCell( local
204 DCHECK(cell->value()->IsTheHole(isolate));
205 Handle<WeakCell> weak_cell = isolate->factory()->NewWeakCell(cell);
349 Handle<Cell> validity_cell =
353 __ Move(scratch1, validity_cell, RelocInfo::CELL);
354 // Move(..., CELL) loads the payload's address!
550 // otherwise wrap it in a weak cell.
554 Handle<WeakCell> cell = isolate()->factory()->NewWeakCell(callback); local
555 __ Push(cell);
576 Handle<PropertyCell> cell, Handle<Name> name, bool is_configurable)
    [all...]
  /external/v8/src/ic/x87/
handler-compiler-x87.cc 221 // Generate code to check that a global property cell is empty. Create
222 // the property cell at compilation time if no cell exists for the
227 Handle<PropertyCell> cell = JSGlobalObject::EnsureEmptyPropertyCell( local
230 DCHECK(cell->value()->IsTheHole(isolate));
231 Handle<WeakCell> weak_cell = isolate->factory()->NewWeakCell(cell);
359 Handle<Cell> validity_cell =
363 // Operand::ForCell(...) points to the cell's payload!
573 // otherwise wrap it in a weak cell.
577 Handle<WeakCell> cell = isolate()->factory()->NewWeakCell(callback) local
    [all...]
  /external/v8/src/mips/
assembler-mips-inl.h 280 Handle<Cell> RelocInfo::target_cell_handle() {
281 DCHECK(rmode_ == RelocInfo::CELL);
283 return Handle<Cell>(reinterpret_cast<Cell**>(address));
287 Cell* RelocInfo::target_cell() {
288 DCHECK(rmode_ == RelocInfo::CELL);
289 return Cell::FromValueAddress(Memory::Address_at(pc_));
293 void RelocInfo::set_target_cell(Cell* cell,
296 DCHECK(rmode_ == RelocInfo::CELL);
301 cell); local
    [all...]
  /external/v8/src/mips64/
assembler-mips64-inl.h 262 Handle<Cell> RelocInfo::target_cell_handle() {
263 DCHECK(rmode_ == RelocInfo::CELL);
265 return Handle<Cell>(reinterpret_cast<Cell**>(address));
269 Cell* RelocInfo::target_cell() {
270 DCHECK(rmode_ == RelocInfo::CELL);
271 return Cell::FromValueAddress(Memory::Address_at(pc_));
275 void RelocInfo::set_target_cell(Cell* cell,
278 DCHECK(rmode_ == RelocInfo::CELL);
283 cell); local
    [all...]
  /external/v8/src/runtime/
runtime-object.cc 73 PropertyCell* cell = PropertyCell::cast(dictionary->ValueAt(entry)); local
74 if (cell->property_details().kind() == kData) {
75 Object* value = cell->value();
    [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);
249 Object* cell = array->get(header + i); local
250 if (!WeakCell::cast(cell)->cleared()) {
252 array->set(header + new_number_of_transitions, cell);
476 WeakCell* cell = WeakCell::cast(proto_trans->get(index)); local
477 if (!cell->cleared()) {
478 TraverseTransitionTreeInternal(Map::cast(cell->value()), callback
    [all...]
type-info.cc 42 Cell* cell = Cell::cast(value); local
43 return Handle<Object>(cell->value(), isolate());
60 WeakCell* cell = WeakCell::cast(obj); local
61 if (cell->cleared()) return undefined;
62 obj = cell->value();
  /external/valgrind/memcheck/tests/
leak-autofreepool.c 35 struct cell struct
37 struct cell *next;
57 static struct cell *cells_plain[2 * N];
58 static struct cell *cells_meta[2 * N];
243 cells_plain[i] = allocate_plain_style(PlainPool,sizeof(struct cell));
251 cells_meta[i] = allocate_meta_style(MetaPool,sizeof(struct cell));
316 pool_block_size = nr_elts * sizeof(struct cell) + sizeof(uint8_t) + 1;
348 (void) allocate_meta_style (&perf_meta_pool, sizeof(struct cell));
349 (void) allocate_plain_style (&perf_plain_pool, sizeof(struct cell));
  /packages/apps/Launcher3/src/com/android/launcher3/util/
FocusLogic.java 174 View cell = parent.getChildAt(i); local
175 if (!cell.isFocusable()) {
178 int cx = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellX;
179 int cy = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellY;
189 * Creates a sparse matrix that merges the icon and hotseat view group using the cell layout.
229 View cell = iconParent.getChildAt(i); local
230 if (!cell.isFocusable()) {
233 int cx = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellX;
234 int cy = ((CellLayout.LayoutParams) cell.getLayoutParams()).cellY;
287 View cell = iconParent.getChildAt(i) local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
ltable.c 520 TValue *cell; local
522 cell = cast(TValue *, p);
526 cell = luaH_newkey(L, t, &k);
528 setobj2t(L, cell, value);
  /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) {
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
CalendarPanel.java 176 * to the cell coordinates on the calendar (0-based)
180 int cell = (date + firstDayInMonth - firstDayOfWeek - minDay); local
182 cell += daysInWeek;
185 pos.x = cell % daysInWeek;
186 pos.y = cell / daysInWeek;
279 // Figure out the date of the first cell in the calendar display
280 int cell = (1 + firstDayInMonth - firstDayOfWeek - minDay); local
282 cell += daysInWeek;
287 c.add(Calendar.DATE, -cell);
  /external/skia/gm/
reveal.cpp 365 SkRect cell = SkRect::MakeXYWH(SkIntToScalar(x*kCellSize), variable
371 canvas->clipRect(cell);
373 cell.inset(kPad, kPad);
374 SkPoint clipCenter = SkPoint::Make(cell.centerX() - kClipOffset,
375 cell.centerY() + kClipOffset);
383 std::unique_ptr<Object> drawObj((*drawMakes[y])(cell));
  /external/skia/third_party/lua/src/
ltable.c 520 TValue *cell; local
522 cell = cast(TValue *, p);
526 cell = luaH_newkey(L, t, &k);
528 setobj2t(L, cell, value);
  /external/syslinux/com32/lua/src/
ltable.c 521 TValue *cell; local
523 cell = cast(TValue *, p);
527 cell = luaH_newkey(L, t, &k);
529 setobj2t(L, cell, value);
  /external/v8/src/compiler/
js-call-reducer.cc 629 Handle<WeakCell> cell = Handle<WeakCell>::cast(feedback); local
630 if (cell->value()->IsJSFunction()) {
632 jsgraph()->Constant(handle(cell->value(), isolate()));
749 Handle<WeakCell> cell = Handle<WeakCell>::cast(feedback); local
750 if (cell->value()->IsJSFunction()) {
752 jsgraph()->Constant(handle(cell->value(), isolate()));
    [all...]
  /external/v8/src/ia32/
assembler-ia32-inl.h 169 Handle<Cell> RelocInfo::target_cell_handle() {
170 DCHECK(rmode_ == RelocInfo::CELL);
172 return Handle<Cell>(reinterpret_cast<Cell**>(address));
176 Cell* RelocInfo::target_cell() {
177 DCHECK(rmode_ == RelocInfo::CELL);
178 return Cell::FromValueAddress(Memory::Address_at(pc_));
182 void RelocInfo::set_target_cell(Cell* cell,
185 DCHECK(cell->IsCell())
194 cell); local
    [all...]
  /external/v8/src/ppc/
assembler-ppc-inl.h 228 Handle<Cell> RelocInfo::target_cell_handle() {
229 DCHECK(rmode_ == RelocInfo::CELL);
231 return Handle<Cell>(reinterpret_cast<Cell**>(address));
235 Cell* RelocInfo::target_cell() {
236 DCHECK(rmode_ == RelocInfo::CELL);
237 return Cell::FromValueAddress(Memory::Address_at(pc_));
241 void RelocInfo::set_target_cell(Cell* cell, WriteBarrierMode write_barrier_mode,
243 DCHECK(rmode_ == RelocInfo::CELL);
248 cell); local
    [all...]
  /external/v8/src/s390/
assembler-s390-inl.h 203 Handle<Cell> RelocInfo::target_cell_handle() {
204 DCHECK(rmode_ == RelocInfo::CELL);
206 return Handle<Cell>(reinterpret_cast<Cell**>(address));
209 Cell* RelocInfo::target_cell() {
210 DCHECK(rmode_ == RelocInfo::CELL);
211 return Cell::FromValueAddress(Memory::Address_at(pc_));
214 void RelocInfo::set_target_cell(Cell* cell, WriteBarrierMode write_barrier_mode,
216 DCHECK(rmode_ == RelocInfo::CELL);
221 cell); local
    [all...]
  /external/v8/src/wasm/
wasm-objects.h 463 WeakCell* cell = WeakCell::cast(obj); local
464 DCHECK(cell->value()->IsJSObject());
465 return handle(WasmInstanceObject::cast(cell->value()));
  /external/v8/src/x64/
assembler-x64-inl.h 441 Handle<Cell> RelocInfo::target_cell_handle() {
442 DCHECK(rmode_ == RelocInfo::CELL);
444 return Handle<Cell>(reinterpret_cast<Cell**>(address));
448 Cell* RelocInfo::target_cell() {
449 DCHECK(rmode_ == RelocInfo::CELL);
450 return Cell::FromValueAddress(Memory::Address_at(pc_));
454 void RelocInfo::set_target_cell(Cell* cell,
457 DCHECK(rmode_ == RelocInfo::CELL);
466 cell); local
    [all...]
  /external/v8/src/x87/
assembler-x87-inl.h 169 Handle<Cell> RelocInfo::target_cell_handle() {
170 DCHECK(rmode_ == RelocInfo::CELL);
172 return Handle<Cell>(reinterpret_cast<Cell**>(address));
176 Cell* RelocInfo::target_cell() {
177 DCHECK(rmode_ == RelocInfo::CELL);
178 return Cell::FromValueAddress(Memory::Address_at(pc_));
182 void RelocInfo::set_target_cell(Cell* cell,
185 DCHECK(cell->IsCell())
194 cell); local
    [all...]
  /frameworks/base/tests/net/java/com/android/server/connectivity/
LingerMonitorTest.java 158 NetworkAgentInfo cell = cellNai(102); local
160 mMonitor.noteLingerDefaultNetwork(wifi1, cell);
161 verifyNotification(wifi1, cell);
163 mMonitor.noteLingerDefaultNetwork(cell, wifi2);
167 mMonitor.noteLingerDefaultNetwork(wifi2, cell);
168 verifyNotification(wifi2, cell);
180 NetworkAgentInfo cell = cellNai(103); local
182 mMonitor.noteLingerDefaultNetwork(wifi1, cell);
183 verifyNotification(wifi1, cell);
187 mMonitor.noteLingerDefaultNetwork(cell, wifi2)
206 NetworkAgentInfo cell = cellNai(103); local
    [all...]
  /development/ndk/platforms/android-9/include/linux/mtd/
mtd.h 43 u_int cell; member in struct:erase_info

Completed in 799 milliseconds

1 23 4 5 6 7 8 91011>>