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

1 2 34 5 6 7 8 91011>>

  /external/v8/src/ic/x87/
handler-compiler-x87.cc 233 // Generate code to check that a global property cell is empty. Create
234 // the property cell at compilation time if no cell exists for the
239 Handle<PropertyCell> cell = JSGlobalObject::EnsurePropertyCell(global, name); local
241 DCHECK(cell->value()->IsTheHole(isolate));
242 Handle<WeakCell> weak_cell = isolate->factory()->NewWeakCell(cell);
388 Handle<WeakCell> cell = Map::WeakCellForMap(transition); local
390 __ LoadWeakValue(map_reg, cell, miss);
442 Handle<Cell> validity_cell =
446 // Operand::ForCell(...) points to the cell's payload
458 Handle<WeakCell> cell = Map::WeakCellForMap(receiver_map); local
666 Handle<WeakCell> cell = isolate()->factory()->NewWeakCell(callback); local
    [all...]
  /external/v8/src/
lookup.cc 299 // Install a property cell.
300 auto cell = JSGlobalObject::EnsurePropertyCell( local
302 DCHECK(cell->value()->IsTheHole(isolate_));
303 transition_ = cell;
694 PropertyCell* cell = PropertyCell::cast(dict->ValueAt(number_)); local
695 if (cell->value()->IsTheHole(isolate_)) return NOT_FOUND;
696 property_details_ = cell->property_details();
type-feedback-vector.cc 379 WeakCell* cell = WeakCell::cast(lits); local
380 if (cell->value()->IsLiteralsArray()) {
381 vector = LiteralsArray::cast(cell->value())->feedback_vector();
455 Handle<WeakCell> cell = Map::WeakCellForMap(map); local
456 array->set(current * 2, *cell);
680 Handle<WeakCell> cell = Map::WeakCellForMap(receiver_map); local
681 SetFeedback(*cell);
692 void LoadGlobalICNexus::ConfigurePropertyCellMode(Handle<PropertyCell> cell) {
694 SetFeedback(*isolate->factory()->NewWeakCell(cell));
707 Handle<WeakCell> cell = Map::WeakCellForMap(receiver_map) local
722 Handle<WeakCell> cell = Map::WeakCellForMap(receiver_map); local
731 Handle<WeakCell> cell = Map::WeakCellForMap(receiver_map); local
815 Handle<WeakCell> cell = Map::WeakCellForMap(map); local
847 WeakCell* cell = WeakCell::cast(array->get(i)); local
856 WeakCell* cell = WeakCell::cast(feedback); local
880 WeakCell* cell = WeakCell::cast(array->get(i)); local
891 WeakCell* cell = WeakCell::cast(feedback); local
924 WeakCell* cell = WeakCell::cast(array->get(i)); local
933 WeakCell* cell = WeakCell::cast(feedback); local
    [all...]
  /external/v8/src/ppc/
assembler-ppc-inl.h 230 Handle<Cell> RelocInfo::target_cell_handle() {
231 DCHECK(rmode_ == RelocInfo::CELL);
233 return Handle<Cell>(reinterpret_cast<Cell**>(address));
237 Cell* RelocInfo::target_cell() {
238 DCHECK(rmode_ == RelocInfo::CELL);
239 return Cell::FromValueAddress(Memory::Address_at(pc_));
243 void RelocInfo::set_target_cell(Cell* cell, WriteBarrierMode write_barrier_mode,
245 DCHECK(rmode_ == RelocInfo::CELL);
250 cell); local
    [all...]
  /external/v8/src/x64/
assembler-x64-inl.h 433 Handle<Cell> RelocInfo::target_cell_handle() {
434 DCHECK(rmode_ == RelocInfo::CELL);
436 return Handle<Cell>(reinterpret_cast<Cell**>(address));
440 Cell* RelocInfo::target_cell() {
441 DCHECK(rmode_ == RelocInfo::CELL);
442 return Cell::FromValueAddress(Memory::Address_at(pc_));
446 void RelocInfo::set_target_cell(Cell* cell,
449 DCHECK(rmode_ == RelocInfo::CELL);
458 cell); local
    [all...]
  /external/v8/src/x87/
assembler-x87-inl.h 181 Handle<Cell> RelocInfo::target_cell_handle() {
182 DCHECK(rmode_ == RelocInfo::CELL);
184 return Handle<Cell>(reinterpret_cast<Cell**>(address));
188 Cell* RelocInfo::target_cell() {
189 DCHECK(rmode_ == RelocInfo::CELL);
190 return Cell::FromValueAddress(Memory::Address_at(pc_));
194 void RelocInfo::set_target_cell(Cell* cell,
197 DCHECK(cell->IsCell())
206 cell); local
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/connectivity/
LingerMonitorTest.java 150 NetworkAgentInfo cell = cellNai(102); local
152 mMonitor.noteLingerDefaultNetwork(wifi1, cell);
153 verifyNotification(wifi1, cell);
155 mMonitor.noteLingerDefaultNetwork(cell, wifi2);
159 mMonitor.noteLingerDefaultNetwork(wifi2, cell);
160 verifyNotification(wifi2, cell);
171 NetworkAgentInfo cell = cellNai(103); local
173 mMonitor.noteLingerDefaultNetwork(wifi1, cell);
174 verifyNotification(wifi1, cell);
178 mMonitor.noteLingerDefaultNetwork(cell, wifi2)
196 NetworkAgentInfo cell = cellNai(103); local
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Table.java 45 static final Pool<Cell> cellPool = new Pool<Cell>() {
46 protected Cell newObject () {
47 return new Cell();
55 private final Array<Cell> cells = new Array(4);
56 private final Cell cellDefaults;
57 private final Array<Cell> columnDefaults = new Array(2);
58 private Cell rowDefaults;
94 private Cell obtainCell () {
95 Cell cell = cellPool.obtain(); local
195 Cell<T> cell = obtainCell(); local
308 Cell cell = cells.get(i); local
358 Cell cell = cells.get(i); local
370 Cell cell = columnDefaults.size > column ? columnDefaults.get(column) : null; local
1237 none, all, table, cell, actor enum constant in enum:Table.Debug
    [all...]
  /development/ndk/platforms/android-3/include/linux/mtd/
mtd.h 43 u_int cell; member in struct:erase_info
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ArrayTableTest.java 24 import com.google.common.collect.Table.Cell;
392 Cell<String, Integer, Character> cell = table.cellSet().iterator().next(); local
393 assertEquals(Tables.immutableCell("foo", 1, 'a'), cell);
395 assertEquals(Tables.immutableCell("foo", 1, 'd'), cell);
  /external/guava/guava-tests/test/com/google/common/collect/
ArrayTableTest.java 25 import com.google.common.collect.Table.Cell;
414 Cell<String, Integer, Character> cell = table.cellSet().iterator().next(); local
415 assertEquals(Tables.immutableCell("foo", 1, 'a'), cell);
417 assertEquals(Tables.immutableCell("foo", 1, 'd'), cell);
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/
BaseTmxMapLoader.java 26 import com.badlogic.gdx.maps.tiled.TiledMapTileLayer.Cell;
94 Cell cell = createTileLayerCell(flipHorizontally, flipVertically, flipDiagonally); local
95 cell.setTile(tile);
96 layer.setCell(x, flipY ? height - 1 - y : y, cell);
277 protected Cell createTileLayerCell (boolean flipHorizontally, boolean flipVertically, boolean flipDiagonally) {
278 Cell cell = new Cell(); local
281 cell.setFlipHorizontally(true)
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/
OrthoCachedTiledMapRenderer.java 36 import com.badlogic.gdx.maps.tiled.TiledMapTileLayer.Cell;
234 final TiledMapTileLayer.Cell cell = layer.getCell(col, row); local
235 if (cell == null) continue;
237 final TiledMapTile tile = cell.getTile();
241 final boolean flipX = cell.getFlipHorizontally();
242 final boolean flipY = cell.getFlipVertically();
243 final int rotations = cell.getRotation();
302 case Cell.ROTATE_90: {
316 case Cell.ROTATE_180:
    [all...]
  /external/libvterm/src/
screen.c 12 /* State of the pen at some moment in time, also used in a cell */
32 /* Internal representation of a screen cell */
39 static int vterm_screen_set_cell(VTermScreen *screen, VTermPos pos, const VTermScreenCell *cell);
175 ScreenCell *cell = getcell(screen, pos.row, pos.col); local
177 if(!cell)
182 cell->chars[i] = info->chars[i];
183 cell->pen = screen->pen;
186 cell->chars[i] = 0;
198 cell->pen.protected_cell = info->protected_cell;
199 cell->pen.dwl = info->dwl
273 ScreenCell *cell = getcell(screen, row, col); local
587 ScreenCell *cell = getcell(screen, row, col); local
697 ScreenCell *cell = getcell(screen, row, col); local
806 ScreenCell *cell = getcell(screen, pos.row, pos.col); local
    [all...]
  /packages/apps/Terminal/jni/
com_android_terminal_Terminal.cpp 97 inline void getCell(dimen_t col, VTermScreenCell* cell) {
98 *cell = mCells[col];
128 void getCellLocked(VTermPos pos, VTermScreenCell* cell);
484 void Terminal::getCellLocked(VTermPos pos, VTermScreenCell* cell) {
485 // The UI may be asking for cell data while the model is changing
492 cell->width = 1;
494 cell->bg.red = 255;
501 // Valid scrollback cell
502 line->getCell(pos.col, cell);
503 cell->width = 1
604 VTermScreenCell firstCell, cell; local
    [all...]
  /prebuilts/go/darwin-x86/test/bench/shootout/
meteor-contest.c 41 /* The board is a 50 cell hexagonal pattern. For . . . . .
107 * 12 rotations. However, not all 12 rotations will fit on every cell, so
111 * I'm also going to record the next possible open cell for each piece and
129 /* Returns the new cell index from the specified cell in the
131 * starting cell and direction have been checked by the
134 char shift(char cell, char dir) {
137 return cell + 1;
139 if((cell / 5) % 2)
140 return cell + 7
368 char rotation, cell[5]; local
    [all...]
  /prebuilts/go/linux-x86/test/bench/shootout/
meteor-contest.c 41 /* The board is a 50 cell hexagonal pattern. For . . . . .
107 * 12 rotations. However, not all 12 rotations will fit on every cell, so
111 * I'm also going to record the next possible open cell for each piece and
129 /* Returns the new cell index from the specified cell in the
131 * starting cell and direction have been checked by the
134 char shift(char cell, char dir) {
137 return cell + 1;
139 if((cell / 5) % 2)
140 return cell + 7
368 char rotation, cell[5]; local
    [all...]
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/linux/mtd/
mtd.h 43 u_int cell; member in struct:erase_info
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/linux/mtd/
mtd.h 43 u_int cell; member in struct:erase_info
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/linux/mtd/
mtd.h 43 u_int cell; member in struct:erase_info
  /prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/linux/mtd/
mtd.h 43 u_int cell; member in struct:erase_info
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/linux/mtd/
mtd.h 43 u_int cell; member in struct:erase_info
  /prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/linux/mtd/
mtd.h 43 u_int cell; member in struct:erase_info
  /prebuilts/ndk/current/platforms/android-14/arch-arm/usr/include/linux/mtd/
mtd.h 43 u_int cell; member in struct:erase_info
  /prebuilts/ndk/current/platforms/android-14/arch-mips/usr/include/linux/mtd/
mtd.h 43 u_int cell; member in struct:erase_info

Completed in 1966 milliseconds

1 2 34 5 6 7 8 91011>>