HomeSort by relevance Sort by last modified time
    Searched full:cell (Results 1 - 25 of 470) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/rendering/
RenderTableSection.cpp 84 // recalc cell info because RenderTable has unguarded pointers
105 // If beforeChild is inside an anonymous cell/row, insert into the cell or into
167 emptyCellStruct.cell = 0;
181 void RenderTableSection::addCell(RenderTableCell* cell, RenderTableRow* row)
183 int rSpan = cell->rowSpan();
184 int cSpan = cell->colSpan();
189 // (see the annotation on table cell layouting in the CSS specs and the testcase below:
195 while (m_cCol < nCols && (cellAt(m_cRow, m_cCol).cell || cellAt(m_cRow, m_cCol).inColSpan))
200 Length height = cell->style()->height()
280 RenderTableCell* cell = current.cell; local
341 RenderTableCell* cell; local
466 RenderTableCell* cell = current.cell; local
587 RenderTableCell* cell = cellAt(r, c).cell; local
730 RenderTableCell* cell = cellAt(r, c).cell; local
753 RenderTableCell* cell = toRenderTableCell(curr); local
771 RenderTableCell* cell = toRenderTableCell(curr); local
789 RenderTableCell* cell = toRenderTableCell(curr); local
1019 RenderTableCell* cell = firstRow->at(i).cell; local
1133 RenderTableCell* cell = current.cell; local
1222 const CellStruct& cell = cellAt(r, c); local
    [all...]
RenderTableRow.cpp 80 // If beforeChild is inside an anonymous cell, insert into the cell.
86 RenderTableCell* cell = new (renderArena()) RenderTableCell(document() /* anonymous object */); local
90 cell->setStyle(newStyle.release());
91 addChild(cell, beforeChild);
92 cell->addChild(child);
96 // If the next renderer is actually wrapped in an anonymous table cell, we need to go up and find that.
100 RenderTableCell* cell = toRenderTableCell(child); local
104 section()->addCell(cell, this);
107 RenderBox::addChild(cell, beforeChild)
122 RenderTableCell* cell = toRenderTableCell(child); local
191 RenderTableCell* cell = toRenderTableCell(child); local
    [all...]
AutoTableLayout.cpp 70 RenderTableCell* cell = current.cell; local
72 bool cellHasContent = cell && (cell->firstChild() || cell->style()->hasBorder() || cell->style()->hasPadding());
78 if (cell && cell->colSpan() == 1) {
79 // A cell originates in this column. Ensure we have
83 if (cell->prefWidthsDirty()
230 RenderTableCell* cell = toRenderTableCell(cb); local
311 RenderTableCell *cell = m_spanCells[i]; local
    [all...]
RenderTable.cpp 77 // In the collapsed border model, there is no cell spacing.
766 // Determined by the first cell of the first row. See the CSS 2.1 spec, section 17.6.2.
802 if (cs.cell) {
803 const BorderValue& cb = cs.cell->style()->borderLeft();
807 const BorderValue& rb = cs.cell->parent()->style()->borderLeft();
825 // Determined by the last cell of the first row. See the CSS 2.1 spec, section 17.6.2.
861 if (cs.cell) {
862 const BorderValue& cb = cs.cell->style()->borderRight();
866 const BorderValue& rb = cs.cell->parent()->style()->borderRight();
    [all...]
  /packages/apps/Launcher2/
print_db.py 49 def print_intent(out, id, i, cell):
50 if cell:
52 cgi.escape(cell, True)
56 def print_icon(out, id, i, cell):
57 if cell:
61 f.write(cell)
64 def print_cell(out, id, i, cell):
65 if not cell is None:
66 out.write(cgi.escape(str(cell)))
111 cell = row[i variable
    [all...]
  /external/webkit/WebCore/accessibility/
AccessibilityTable.cpp 107 // go through the cell's and check for tell-tale signs of "data" table status
116 // if there's only one cell, it's not a good AXTable candidate
120 // store the background color of the table to check against cell's background colors
128 // 1) must have at least one valid cell (and)
130 // 3) at least half of cells have different bg colors than the table, and there is cell spacing
137 RenderTableCell* cell = firstBody->cellAt(row, col).cell; local
138 if (!cell)
140 Node* cellNode = cell->node();
144 if (cell->width() < 1 || cell->height() < 1
238 RenderTableCell* cell = tableSection->cellAt(rowIndex, colIndex).cell; local
382 RenderTableCell* cell = 0; local
    [all...]
AccessibilityTableColumn.cpp 97 AccessibilityObject* cell = rowChildren[i].get(); local
98 if (cell->ariaRoleAttribute() == ColumnHeaderRole)
99 return cell;
133 RenderTableCell* cell = 0;
136 RenderTableCell* testCell = section->cellAt(0, testCol).cell;
140 // we've reached a cell that doesn't even overlap our column
152 cell = testCell;
155 if (!cell)
158 return m_parentTable->axObjectCache()->getOrCreate(cell);
172 AccessibilityTableCell* cell = m_parentTable->cellForColumnAndRow(m_columnIndex, i) local
    [all...]
AccessibilityTableCell.h 49 // fills in the start location and row span of cell
51 // fills in the start location and column span of cell
54 // if a table cell is not exposed as a table cell, a TH element can
  /external/webkit/JavaScriptCore/runtime/
JSArray.h 126 inline JSArray* asArray(JSCell* cell)
128 ASSERT(cell->inherits(&JSArray::info));
129 return static_cast<JSArray*>(cell);
141 inline bool isJSArray(JSGlobalData* globalData, JSCell* cell) { return cell->vptr() == globalData->jsArrayVPtr; }
159 inline void MarkStack::markChildren(JSCell* cell)
161 ASSERT(Heap::isCellMarked(cell));
162 if (!cell->structure()->typeInfo().overridesMarkChildren()) {
164 asObject(cell)->markChildrenDirect(*this);
168 cell->markChildren(*this)
196 JSCell* cell; local
    [all...]
Collector.h 177 // cell size needs to be a power of two for certain optimizations in collector.cpp
245 typedef CollectorCell Cell;
249 inline CollectorBlock* Heap::cellBlock(const JSCell* cell)
251 return reinterpret_cast<CollectorBlock*>(reinterpret_cast<uintptr_t>(cell) & BLOCK_MASK);
254 inline size_t Heap::cellOffset(const JSCell* cell)
256 return (reinterpret_cast<uintptr_t>(cell) & BLOCK_OFFSET_MASK) / CELL_SIZE;
259 inline bool Heap::isCellMarked(const JSCell* cell)
261 return cellBlock(cell)->marked.get(cellOffset(cell));
264 inline void Heap::markCell(JSCell* cell)
    [all...]
  /frameworks/base/core/tests/coretests/res/raw/
v21_pref_handling.vcf 8 EMAIL;CELL;PREF:test2@examination.com
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastConfigService.java 67 if (DBG) Log.d(TAG, "enabling emergency cell broadcast channels");
71 if (DBG) Log.d(TAG, "enabled emergency cell broadcast channels");
74 if (DBG) Log.d(TAG, "disabling emergency cell broadcast channels");
78 if (DBG) Log.d(TAG, "disabled emergency cell broadcast channels");
82 if (DBG) Log.d(TAG, "enabling cell broadcast channel 50");
84 if (DBG) Log.d(TAG, "enabled cell broadcast channel 50");
86 if (DBG) Log.d(TAG, "disabling cell broadcast channel 50");
88 if (DBG) Log.d(TAG, "disabled cell broadcast channel 50");
91 Log.e(TAG, "exception enabling cell broadcast channels", ex);
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 79 private ArrayList<Cell> mPattern = new ArrayList<Cell>(9);
134 * Represents a cell in the 3 X 3 matrix of the unlock pattern view.
136 public static class Cell {
141 static Cell[][] sCells = new Cell[3][3];
145 sCells[i][j] = new Cell(i, j);
151 * @param row The row of the cell.
152 * @param column The column of the cell.
154 private Cell(int row, int column)
476 final Cell cell = checkForNewHit(x, y); local
798 final Cell cell = pattern.get(i); local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java 180 cellInfo.cell = child;
206 cellInfo.cell = null;
223 cellInfo.cell = null;
311 CellInfo.VacantCell cell = CellInfo.VacantCell.acquire();
312 cell.cellX = current.left;
313 cell.cellY = current.top;
314 cell.spanX = current.right - current.left + 1;
315 cell.spanY = current.bottom - current.top + 1;
316 if (cell.spanX > cellInfo.maxVacantSpanX) {
317 cellInfo.maxVacantSpanX = cell.spanX
625 final CellInfo.VacantCell cell = vacantCells.vacantCells.get(i); local
990 View cell; field in class:CellLayout.CellInfo
1063 VacantCell cell = list.get(i); local
1074 VacantCell cell = list.get(i); local
    [all...]
InstallShortcutReceiver.java 53 CellLayout.CellInfo cell = new CellLayout.CellInfo(); local
54 cell.cellX = mCoordinates[0];
55 cell.cellY = mCoordinates[1];
56 cell.screen = screen;
69 .addShortcut(context, data, cell, true);
  /device/samsung/crespo4g/crespo4g_overlay/frameworks/base/packages/SettingsProvider/res/values/
defaults.xml 20 <!-- Comma-separated list of bluetooth, wifi, and cell. -->
21 <string name="def_airplane_mode_radios" translatable="false">cell,bluetooth,wifi,wimax</string>
  /external/tcpdump/
l2vpn.c 34 { 0x03, "ATM transparent cell transport"},
40 { 0x09, "ATM n-to-one VCC cell transport"},
41 { 0x0a, "ATM n-to-one VPC cell transport"},
43 { 0x0c, "ATM one-to-one VCC Cell Mode"},
44 { 0x0d, "ATM one-to-one VPC Cell Mode"},
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_INVOKE_METHOD_PREDICTED_CHAIN.S 5 * method through a dedicated chaining cell.
7 * The predicted chaining cell is declared in ArmLIR.h with the
18 * - lr : to branch to the chaining cell
TEMPLATE_RETURN.S 13 ldr r9, [r0, #offStackSaveArea_returnAddr] @ r9<- chaining cell ret
37 movne r9, #0 @ clear the chaining cell address
39 cmp r9, #0 @ chaining cell exists?
40 blxne r9 @ jump to the chaining cell
  /external/chromium/net/base/
dir_header.html 42 var cell = document.createElement("td");
43 cell.setAttribute("class", "detailsColumn");
44 cell.innerText = text;
45 return cell;
  /external/oprofile/libop/
op_sample_file.h 33 /* spu_profile=1 says sample file contains Cell BE SPU profile data */
  /external/webkit/WebCore/manual-tests/gtk/
cursor-image.html 2 <div style="width: 100px; height: 100px; background: lightblue; cursor:url(resources/cell.cur), default;">&nbsp;</div>
  /external/srec/portable/src/
pmalloc.c 363 /* use entire cell (there's not enough space to carve out a new cell from this one) */
365 /* remove *qb cell from free list.
370 /* Check whether the cell is at the end of the 'free' linked-list */
373 /* The cell is not at the end of the free linked-list; find out which bin the next free cell is in */
380 /* The allocated cell was the first free cell in the bin; update the first free cell
381 pointer to point to the next free cell */
    [all...]
  /frameworks/base/telephony/java/android/telephony/gsm/
GsmCellLocation.java 23 * Represents the cell location on a GSM phone.
56 * @return gsm cell id, -1 if unknown, 0xffff max legal value
64 * cell.
73 * Invalidate this object. The location area code and the cell id are set to -1.
82 * Set the location area code and the cell id.
  /external/iproute2/include/linux/
atm.h 27 #define ATM_CELL_SIZE 53 /* ATM cell size incl. header */
90 /* ATM cell header (for AAL0) */
108 #define ATM_PTI_US0 0 /* user data cell, congestion not exp, SDU-type 0 */
109 #define ATM_PTI_US1 1 /* user data cell, congestion not exp, SDU-type 1 */
110 #define ATM_PTI_UCES0 2 /* user data cell, cong. experienced, SDU-type 0 */
111 #define ATM_PTI_UCES1 3 /* user data cell, cong. experienced, SDU-type 1 */
112 #define ATM_PTI_SEGF5 4 /* segment OAM F5 flow related cell */
113 #define ATM_PTI_E2EF5 5 /* end-to-end OAM F5 flow related cell */
143 unsigned int icr; /* Initial Cell Rate (24-bit) */
152 unsigned int nrm :3; /* Max # of Cells for each forward RM cell (3-bit) *
    [all...]

Completed in 1120 milliseconds

1 2 3 4 5 6 7 8 91011>>