HomeSort by relevance Sort by last modified time
    Searched full:cell (Results 26 - 50 of 1142) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_folder_button_cell.h 13 // A button cell that handles drawing/highlighting of buttons in the
14 // bookmark bar. This cell forwards mouseEntered/mouseExited events
22 // Create a button cell which draws without a theme and with a frame
bookmark_tree_browser_cell.h 13 // Provides a custom cell as used in the BookmarkEditor.xib's folder tree
14 // browser view. This cell customization adds target and action support
17 // control in which is contained the cell.
  /external/chromium/chrome/browser/ui/cocoa/find_bar/
find_bar_text_field.mm 18 DCHECK([[self cell] isKindOfClass:[FindBarTextFieldCell class]]);
25 DCHECK([[self cell] isKindOfClass:[FindBarTextFieldCell class]]);
26 return static_cast<FindBarTextFieldCell*>([self cell]);
  /external/oprofile/libpp/
populate_for_spu.h 4 * a Cell BE SPU profile
21 * When profiling SPUs on Cell Broadband Engine, all sample file
28 * This is a special-purpose function for CELL BE SPU profiling.
  /external/chromium/chrome/browser/ui/cocoa/download/
download_item_button.mm 30 NSCell* cell = [self cell];
31 DCHECK([cell respondsToSelector:@selector(isMouseOverButtonPart)]);
32 if ([reinterpret_cast<DownloadItemCell*>(cell) isMouseOverButtonPart]) {
38 [cell setHighlighted:YES];
47 [[self cell] setHighlighted:NO];
  /external/chromium/chrome/browser/ui/cocoa/
styled_text_field.mm 13 DCHECK([[self cell] isKindOfClass:[StyledTextFieldCell class]]);
14 return static_cast<StyledTextFieldCell*>([self cell]);
18 // positioned by the cell's -editWithFrame:inView:... method. Using
42 StyledTextFieldCell* cell = [self styledTextFieldCell];
43 const NSRect frame([cell drawingRectForBounds:[self bounds]]);
63 // This is taken care of by the custom drawing code in the cell.
  /external/clang/test/Analysis/
analyzeOneFunction.m 39 Test1 *cell = [[[Test1 alloc] init] autorelease];
42 cell.text = string1;
44 return cell;
48 Test1 *cell = [[[Test1 alloc] init] autorelease];
51 cell.text = string1;
53 return cell;
  /external/webkit/Source/WebCore/manual-tests/
no-listbox-rendering.html 9 At the right cell you see a description of what should be the state of the elements just after loading this page.<br><br>
14 <td>combobox in previos cell should have option '1' selected.</td>
18 <td>combobox in previos cell should have no selected option.</td>
22 <td>combobox in previos cell should have no selected option.</td>
39 <td>combobox in previos cell should handle optgroup correctly.</td>
56 <td>combobox in previos cell should handle optgroup correctly.</td>
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTable.cpp 118 // go through the cell's and check for tell-tale signs of "data" table status
127 // if there's only one cell, it's not a good AXTable candidate
131 // store the background color of the table to check against cell's background colors
139 // 1) must have at least one valid cell (and)
141 // 3) at least half of cells have different bg colors than the table, and there is cell spacing
154 RenderTableCell* cell = firstBody->primaryCellAt(row, col); local
155 if (!cell)
157 Node* cellNode = cell->node();
161 if (cell->width() < 1 || cell->height() < 1
320 RenderTableCell* cell = tableSection->primaryCellAt(rowIndex, colIndex); local
462 RenderTableCell* cell = 0; local
    [all...]
  /external/chromium-trace/src/shared/js/cr/ui/table/
table_list.js 41 var cells = this.querySelectorAll('.table-row-cell');
80 var cell = table.ownerDocument.createElement('div');
81 cell.style.width = cm.getWidth(i) + '%';
82 cell.className = 'table-row-cell';
84 cell.style.textAlign = 'end';
85 cell.appendChild(
88 listItem.appendChild(cell);
  /external/valgrind/main/memcheck/tests/
leak-pool.c 9 struct cell struct
11 struct cell *next;
92 struct cell *cells_static[N];
97 struct cell *cells_local[N];
101 struct cell **cells = static_roots ? cells_static : cells_local;
114 cells[i] = allocate_from_pool(p, sizeof(struct cell));
119 p->buf+(10 * sizeof(struct cell)),
120 20 * sizeof(struct cell) + 2);
  /external/guava/guava/src/com/google/common/collect/
Tables.java 28 import com.google.common.collect.Table.Cell;
53 * Returns an immutable cell with the specified row key, column key, and
56 * <p>The returned cell is serializable.
58 * @param rowKey the row key to be associated with the returned cell
59 * @param columnKey the column key to be associated with the returned cell
60 * @param value the value to be associated with the returned cell
62 public static <R, C, V> Cell<R, C, V> immutableCell(
96 abstract static class AbstractCell<R, C, V> implements Cell<R, C, V> {
104 if (obj instanceof Cell) {
105 Cell<?, ?, ?> other = (Cell<?, ?, ?>) obj
305 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) obj; local
314 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) obj; local
494 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) obj; local
506 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) obj; local
    [all...]
ImmutableTable.java 51 /** Returns an immutable table containing a single cell. */
84 Cell<? extends R, ? extends C, ? extends V> onlyCell
89 ImmutableSet.Builder<Cell<R, C, V>> cellSetBuilder
91 for (Cell<? extends R, ? extends C, ? extends V> cell :
94 * Must cast to be able to create a Cell<R, C, V> rather than a
95 * Cell<? extends R, ? extends C, ? extends V>
97 cellSetBuilder.add(cellOf((R) cell.getRowKey(),
98 (C) cell.getColumnKey(), (V) cell.getValue()))
    [all...]
  /external/v8/src/
circular-queue.h 69 typedef AtomicWord Cell;
70 // Reserved values for the first cell of a record.
71 static const Cell kClear = 0; // Marks clean (processed) chunks.
72 static const Cell kEnd = -1; // Marks the end of the buffer.
76 Cell* enqueue_pos;
79 Cell* dequeue_chunk_pos;
80 Cell* dequeue_chunk_poll_pos;
81 Cell* dequeue_pos;
82 Cell* dequeue_end_pos;
85 INLINE(void WrapPositionIfNeeded(Cell** pos))
    [all...]
  /external/webkit/Source/JavaScriptCore/heap/
MarkedSpace.h 120 inline Heap* MarkedSpace::heap(JSCell* cell)
122 return MarkedBlock::blockFor(cell)->heap();
125 inline bool MarkedSpace::isMarked(const JSCell* cell)
127 return MarkedBlock::blockFor(cell)->isMarked(cell);
130 inline bool MarkedSpace::testAndSetMarked(const JSCell* cell)
132 return MarkedBlock::blockFor(cell)->testAndSetMarked(cell);
135 inline void MarkedSpace::setMarked(const JSCell* cell)
137 MarkedBlock::blockFor(cell)->setMarked(cell)
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
tran.c 54 Cell *fsloc; /* FS */
55 Cell *nrloc; /* NR */
56 Cell *nfloc; /* NF */
57 Cell *fnrloc; /* FNR */
60 Cell *rstartloc; /* RSTART */
61 Cell *rlengthloc; /* RLENGTH */
62 Cell *symtabloc; /* SYMTAB */
64 Cell *nullloc; /* a guaranteed empty cell */
66 Cell *literal0
    [all...]
  /cts/tests/tests/webkitsecurity/assets/
firstletter-tablecell-crash.html 6 <a>...</a><del style="display:table-cell;">This text should be displayed without crashing
table-anonymous-block-destroy-crash.html 8 display: table-cell;
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
Namer.java 14 * Gets a name for a heightmap tile given it's cell id
  /external/mesa3d/docs/
cell.html 3 <TITLE>Cell Driver</TITLE>
9 <H1>Mesa/Gallium Cell Driver</H1>
13 <a href="http://en.wikipedia.org/wiki/Cell_%28microprocessor%29" target="_parent">Cell</a>
17 Tungsten Graphics did the original implementation of the Cell driver.
24 The latest Cell driver source code is on the master branch of the Mesa
28 To build the driver you'll need the IBM Cell SDK (version 2.1 or 3.0).
29 To use the driver you'll need a Cell system, such as a PS3 running Linux,
30 or the Cell Simulator (untested, though).
34 If using Cell SDK 2.1, see the configs/linux-cell file for som
    [all...]
  /external/webkit/LayoutTests/fast/dom/HTMLTableRowElement/script-tests/
cells.js 7 var cell = document.createElement("td");
9 container.appendChild(cell);
17 var cell = document.createElement("th");
19 container.appendChild(cell);
  /frameworks/opt/vcard/tests/res/raw/
v21_pref_handling.vcf 8 EMAIL;CELL;PREF:test2@examination.com
  /external/chromium/chrome/browser/resources/shared/js/cr/ui/table/
table_list.js 41 var cells = this.querySelectorAll('.table-row-cell');
76 var cell = this.ownerDocument.createElement('div');
77 cell.style.width = cm.getWidth(i) + '%';
78 cell.className = 'table-row-cell';
79 cell.appendChild(
82 listItem.appendChild(cell);
  /external/llvm/test/Transforms/MemCpyOpt/
smaller.ll 7 ; CHECK: call void @llvm.memcpy.p0i8.p0i8.i32(i8* %tmp, i8* getelementptr inbounds (%struct.s* @cell, i32 0, i32 0, i32 0), i32 16, i32 4, i1 false)
14 @cell = external global %struct.s
22 store i32 99, i32* getelementptr inbounds (%struct.s* @cell, i32 0, i32 1), align 4
23 call void @llvm.memcpy.p0i8.p0i8.i32(i8* getelementptr inbounds (%struct.s* @cell, i32 0, i32 0, i32 0), i8* getelementptr inbounds ([11 x i8]* @.str, i32 0, i32 0), i32 11, i32 1, i1 false)
25 call void @llvm.memcpy.p0i8.p0i8.i32(i8* %tmp, i8* getelementptr inbounds (%struct.s* @cell, i32 0, i32 0, i32 0), i32 16, i32 4, i1 false)
  /external/webkit/Source/WebCore/rendering/
RenderTableRow.cpp 100 // If beforeChild is inside an anonymous cell, insert into the cell.
106 RenderTableCell* cell = new (renderArena()) RenderTableCell(document() /* anonymous object */); local
110 cell->setStyle(newStyle.release());
111 addChild(cell, beforeChild);
112 cell->addChild(child);
116 // If the next renderer is actually wrapped in an anonymous table cell, we need to go up and find that.
120 RenderTableCell* cell = toRenderTableCell(child); local
124 section()->addCell(cell, this);
127 RenderBox::addChild(cell, beforeChild)
144 RenderTableCell* cell = toRenderTableCell(child); local
220 RenderTableCell* cell = toRenderTableCell(child); local
    [all...]

Completed in 557 milliseconds

12 3 4 5 6 7 8 91011>>