Home
last modified time | relevance | path

Searched refs:cell_ (Results 1 – 12 of 12) sorted by relevance

/external/chromium/chrome/browser/ui/cocoa/find_bar/
Dfind_bar_text_field_cell_unittest.mm41 cell_ = cell;
42 [cell_ setEditable:YES];
43 [cell_ setBordered:YES];
48 [view_ setCell:cell_];
54 FindBarTextFieldCell* cell_;
70 [cell_ setActiveMatch:4 of:30];
73 [cell_ setActiveMatch:0 of:0];
76 [cell_ clearResults];
83 [cell_ setActiveMatch:10 of:30];
84 scoped_nsobject<NSAttributedString> tenString([[cell_ resultsString] copy]);
[all …]
/external/chromium/chrome/browser/ui/cocoa/
Dstyled_text_field_cell_unittest.mm29 cell_ = cell.get();
30 [cell_ setEditable:YES];
31 [cell_ setBordered:YES];
36 [view_ setCell:cell_];
42 StyledTextFieldTestCell* cell_;
58 [cell_ setLeftMargin:5];
61 [cell_ setRightMargin:15];
68 NSRect textFrame = [cell_ textFrameForFrame:bounds];
69 NSRect drawingRect = [cell_ drawingRectForBounds:bounds];
74 [cell_ setLeftMargin:10];
[all …]
Dhyperlink_button_cell_unittest.mm23 cell_ = cell.get();
24 [view_ setCell:cell_];
30 EXPECT_EQ(NSNoCellMask, [cell_ highlightsBy]);
36 HyperlinkButtonCell* cell_;
43 TestCellCustomization(cell_); // |-initTextFrame:|
58 EXPECT_NE(textColor, [cell_ textColor]);
59 [cell_ setTextColor:textColor];
60 EXPECT_EQ(textColor, [cell_ textColor]);
68 [cell_ mouseEntered:nil];
70 [cell_ mouseExited:nil];
Dstyled_text_field_unittest.mm31 cell_ = cell.get();
32 [cell_ setEditable:YES];
33 [cell_ setBordered:YES];
38 [field_ setCell:cell_];
57 StyledTextFieldTestCell* cell_;
132 EXPECT_EQ(0, [cell_ leftMargin]);
133 EXPECT_EQ(0, [cell_ rightMargin]);
134 [cell_ setLeftMargin:10];
141 [cell_ setLeftMargin:0];
152 [cell_ setLeftMargin:kLeftMargin];
[all …]
/external/v8/src/
Dspaces.h129 : cell_(cell), mask_(mask), data_only_(data_only) { } in MarkBit()
131 inline CellType* cell() { return cell_; } in cell()
136 return cell_ == other.cell_ && mask_ == other.mask_;
140 inline void Set() { *cell_ |= mask_; } in Set()
141 inline bool Get() { return (*cell_ & mask_) != 0; } in Get()
142 inline void Clear() { *cell_ &= ~mask_; } in Clear()
149 return MarkBit(cell_ + 1, 1, data_only_); in Next()
151 return MarkBit(cell_, new_mask, data_only_); in Next()
156 CellType* cell_;
Dast.cc529 cell_ = Handle<JSGlobalPropertyCell>::null(); in ComputeGlobalTarget()
533 cell_ = Handle<JSGlobalPropertyCell>(global->GetPropertyCell(lookup)); in ComputeGlobalTarget()
534 if (cell_->value()->IsJSFunction()) { in ComputeGlobalTarget()
535 Handle<JSFunction> candidate(JSFunction::cast(cell_->value())); in ComputeGlobalTarget()
Dhydrogen-instructions.h3458 : cell_(cell), details_(details) {
3464 Handle<JSGlobalPropertyCell> cell() const { return cell_; }
3471 return reinterpret_cast<intptr_t>(*cell_);
3483 return cell_.is_identical_to(b->cell());
3487 Handle<JSGlobalPropertyCell> cell_;
3538 cell_(cell),
3543 Handle<JSGlobalPropertyCell> cell() const { return cell_; }
3559 Handle<JSGlobalPropertyCell> cell_;
Dast.h1580 Handle<JSGlobalPropertyCell> cell() { return cell_; } in cell()
1618 Handle<JSGlobalPropertyCell> cell_; variable
/external/chromium/chrome/browser/ui/cocoa/download/
Ddownload_item_controller.h25 IBOutlet DownloadItemCell* cell_; variable
Ddownload_item_controller.mm241 [cell_ setStateFromDownload:downloadModel];
245 [cell_ setImage:icon];
Ddownload_item_cell.mm84 DownloadItemCell* cell_; field
724 cell_ = cell;
732 [cell_ animation:self progressed:progress];
/external/chromium/chrome/browser/ui/cocoa/bookmarks/
Dbookmark_bar_controller_unittest.mm308 scoped_nsobject<NSButtonCell> cell_;
327 cell_.reset([[NSButtonCell alloc] init]);
329 [menu_ setDelegate:cell_.get()];