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

1 2 34 5 6 7 8 91011>>

  /external/webkit/WebCore/manual-tests/
drag-image-table-part-decorations.html 12 <div style="background-color: blue; display: table-cell; height: 100px; width: 100px;"></div>
  /external/webkit/WebKit/mac/Misc/
WebNSControlExtras.m 37 NSSize bestSize = [[self cell] cellSizeForBounds:NSMakeRect(0.0f, 0.0f, frame.size.width, 10000.0f)];
  /frameworks/base/libs/rs/
rsComponent.h 27 // An element is a group of Components that occupies one cell in a structure.
rsLight.h 28 // An element is a group of Components that occupies one cell in a structure.
rsMesh.h 28 // An element is a group of Components that occupies one cell in a structure.
rsObjectBase.h 28 // An element is a group of Components that occupies one cell in a structure.
rsShaderCache.h 29 // An element is a group of Components that occupies one cell in a structure.
rsSimpleMesh.h 28 // An element is a group of Components that occupies one cell in a structure.
rsVertexArray.h 29 // An element is a group of Components that occupies one cell in a structure.
  /dalvik/vm/compiler/
Compiler.h 68 /* Chain cell for predicted method invocation */
73 u4 counter; /* counter to patch the chaining cell */
79 PredictedChainingCell cellContent; /* content of the new cell */
  /external/webkit/WebCore/accessibility/
AccessibilityTableCell.cpp 132 // Try to find if the first cell in this row is a <th>. If it is,
146 // If this cell is in the first column, there is no need to continue.
157 RenderTableCell* headerCell = section->cellAt(row, 0).cell;
  /packages/apps/Settings/src/com/android/settings/
ConfirmLockPattern.java 22 import com.android.internal.widget.LockPatternView.Cell;
220 public void onPatternCellAdded(List<Cell> pattern) {
224 public void onPatternDetected(List<LockPatternView.Cell> pattern) {
  /external/webkit/WebCore/rendering/
RenderTableCell.cpp 97 // Column widths specified on <col> apply to the border box of the cell.
120 // fixed width set on the cell. Even so, it is a WinIE/Moz trait
121 // to make the minwidth of the cell into the fixed width. They do this
187 // includes any outside borders of this cell.
250 // <http://www.w3.org/TR/2007/CR-CSS21-20070719/tables.html#height-layout>: The baseline of a cell is the baseline of
251 // the first in-flow line box in the cell, or the first in-flow table-row in the cell, whichever comes first. If there
252 // is no such line box or table-row, the baseline is the bottom of content edge of the cell box.
285 // (4) If border styles differ only in color, then a style set on a cell wins over one on a row,
314 // The border have the same width and style. Rely on precedence (cell over row over row group, etc.
    [all...]
RenderThemeChromiumMac.mm 68 // parent view for cell rendering.
588 // Updates the control tint (a.k.a. active state) of |cell| (from |o|).
597 void RenderThemeChromiumMac::updateActiveState(NSCell* cell, const RenderObject* o)
599 NSControlTint oldTint = [cell controlTint];
604 [cell setControlTint:tint];
607 void RenderThemeChromiumMac::updateCheckedState(NSCell* cell, const RenderObject* o)
609 bool oldIndeterminate = [cell state] == NSMixedState;
614 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
618 bool oldChecked = [cell state] == NSOnState;
620 [cell setState:checked ? NSOnState : NSOffState]
    [all...]
  /dalvik/vm/compiler/codegen/arm/
ArchUtility.c 261 LOGD("-------- chaining cell (backward branch): 0x%04x\n", dest);
264 LOGD("-------- chaining cell (normal): 0x%04x\n", dest);
267 LOGD("-------- chaining cell (hot): 0x%04x\n", dest);
270 LOGD("-------- chaining cell (predicted)\n");
273 LOGD("-------- chaining cell (invoke singleton): %s/%p\n",
Assemble.c     [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Workspace.java 79 * CellInfo for the cell that is currently being dragged
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSObject.h 274 inline JSObject* asObject(JSCell* cell)
276 ASSERT(cell->isObject());
277 return static_cast<JSObject*>(cell);
603 JSCell* cell = asCell(); local
605 if (cell->fastGetOwnPropertySlot(exec, propertyName, slot))
607 JSValue prototype = asObject(cell)->prototype();
610 cell = asObject(prototype);
628 JSCell* cell = const_cast<JSCell*>(asCell()); local
630 if (cell->getOwnPropertySlot(exec, propertyName, slot))
632 JSValue prototype = asObject(cell)->prototype()
    [all...]
  /external/kernel-headers/original/linux/
atmdev.h 20 bits per cell: /8/53
21 max cell rate: 353207.547 cells/sec */
23 /* 25 Mbps ATM cell rate (59111) */
27 bits per cell: /8/53
28 max cell rate: 1412830.188 cells/sec */
301 int (*push_oam)(struct atm_vcc *vcc,void *cell);
387 int (*send_oam)(struct atm_vcc *vcc,void *cell,int flags);
  /external/webkit/WebKit/chromium/src/js/
HeapProfilerPanel.js 328 var cell = event.target.enclosingNodeOrSelfWithNodeName("td"); variable
329 if (!cell || (!cell.hasStyleClass("count-column") && !cell.hasStyleClass("size-column") && !cell.hasStyleClass("countDelta-column") && !cell.hasStyleClass("sizeDelta-column")))
332 if (cell.hasStyleClass("count-column"))
334 else if (cell.hasStyleClass("size-column"))
336 else if (cell.hasStyleClass("countDelta-column"))
338 else if (cell.hasStyleClass("sizeDelta-column")
    [all...]
  /external/iproute2/tc/
tc_util.c 181 int cell; local
184 if (get_integer(&cell, slash+1, 0))
189 if ((1<<i) == cell) {
319 int cell; local
322 if (get_integer(&cell, slash+1, 0))
327 if ((1<<i) == cell) {
  /external/webkit/WebCore/page/mac/
FrameMac.mm 146 NSString* Frame::searchForNSLabelsAboveCell(RegularExpression* regExp, HTMLTableCellElement* cell, size_t* resultDistanceFromStartOfCell)
148 RenderObject* cellRenderer = cell->renderer();
159 // search within the above cell we found for a match
177 // Any reason in practice to search all cells in that are above cell?
191 // If the starting element is within a table, the cell that contains it
238 // If we started in a cell, but bailed because we found the start of the form or the
  /external/v8/src/arm/
fast-codegen-arm.cc 53 void FastCodeGenerator::EmitGlobalVariableLoad(Handle<Object> cell) {
55 ASSERT(cell->IsJSGlobalPropertyCell());
57 __ mov(destination(), Operand(cell));
  /external/v8/src/mips/
stub-cache-mips.cc 225 JSGlobalPropertyCell* cell,
259 JSGlobalPropertyCell* cell,
303 JSGlobalPropertyCell* cell,
  /external/v8/src/x64/
fast-codegen-x64.cc 53 void FastCodeGenerator::EmitGlobalVariableLoad(Handle<Object> cell) {
55 ASSERT(cell->IsJSGlobalPropertyCell());
57 __ Move(destination(), cell); local

Completed in 303 milliseconds

1 2 34 5 6 7 8 91011>>