HomeSort by relevance Sort by last modified time
    Searched full:cell (Results 1 - 25 of 399) 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...]
  /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
  /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);
  /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/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"},
  /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>
  /frameworks/base/telephony/java/android/telephony/gsm/
GsmCellLocation.java 23 * Represents the cell location on a GSM phone.
53 * @return gsm cell id, -1 if unknown, 0xffff max legal value
60 * Invalidate this object. The location area code and the cell id are set to -1.
68 * Set the location area code and the cell id.
  /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...]
  /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...]
  /external/kernel-headers/original/linux/
atm.h 30 #define ATM_CELL_SIZE 53 /* ATM cell size incl. header */
93 /* ATM cell header (for AAL0) */
111 #define ATM_PTI_US0 0 /* user data cell, congestion not exp, SDU-type 0 */
112 #define ATM_PTI_US1 1 /* user data cell, congestion not exp, SDU-type 1 */
113 #define ATM_PTI_UCES0 2 /* user data cell, cong. experienced, SDU-type 0 */
114 #define ATM_PTI_UCES1 3 /* user data cell, cong. experienced, SDU-type 1 */
115 #define ATM_PTI_SEGF5 4 /* segment OAM F5 flow related cell */
116 #define ATM_PTI_E2EF5 5 /* end-to-end OAM F5 flow related cell */
146 unsigned int icr; /* Initial Cell Rate (24-bit) */
155 unsigned int nrm :3; /* Max # of Cells for each forward RM cell (3-bit) *
    [all...]
  /external/webkit/WebCore/inspector/front-end/
DataGrid.js 77 var cell = document.createElement("th");
78 cell.className = columnIdentifier + "-column";
79 cell.columnIdentifier = columnIdentifier;
83 cell.appendChild(div);
86 cell.addStyleClass("sort-" + column.sort);
87 this._sortColumnCell = cell;
91 cell.addEventListener("click", this._clickInHeaderCell.bind(this), false);
92 cell.addStyleClass("sortable");
96 cell.addStyleClass(column.aligned);
100 headerRow.appendChild(cell);
1199 var cell = event.target.enclosingNodeOrSelfWithNodeName("td"); variable
    [all...]
  /external/webkit/WebCore/platform/chromium/
ThemeChromiumMac.mm 47 // - The import of FlippedView() and its use as the parent view for cell
50 // - In paintButton() the code to save/restore the window's default button cell.
226 static void setControlSize(NSCell* cell, const IntSize* sizes, const IntSize& minZoomedSize, float zoomFactor)
237 if (size != [cell controlSize]) // Only update if we have to, since AppKit does work even if the size is the same.
238 [cell setControlSize:size];
241 static void updateStates(NSCell* cell, ControlStates states)
246 bool oldPressed = [cell isHighlighted];
249 [cell setHighlighted:pressed];
252 bool oldEnabled = [cell isEnabled];
255 [cell setEnabled:enabled]
    [all...]
  /external/webkit/JavaScriptCore/jit/
JITStubCall.h 40 , m_returnType(Cell)
48 , m_returnType(Cell)
192 ASSERT(m_returnType == Value || m_returnType == Cell);
203 ASSERT(m_returnType == VoidPtr || m_returnType == Cell);
213 ASSERT(m_returnType == Value || m_returnType == VoidPtr || m_returnType == Int || m_returnType == Cell);
215 ASSERT(m_returnType == VoidPtr || m_returnType == Int || m_returnType == Cell);
228 enum { Void, VoidPtr, Int, Value, Cell } m_returnType;

Completed in 284 milliseconds

1 2 3 4 5 6 7 8 91011>>