Searched refs:cell_ (Results 1 – 12 of 12) sorted by relevance
/external/chromium/chrome/browser/ui/cocoa/find_bar/ |
D | find_bar_text_field_cell_unittest.mm | 41 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/ |
D | styled_text_field_cell_unittest.mm | 29 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 …]
|
D | hyperlink_button_cell_unittest.mm | 23 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];
|
D | styled_text_field_unittest.mm | 31 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/ |
D | spaces.h | 129 : 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_;
|
D | ast.cc | 529 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()
|
D | hydrogen-instructions.h | 3458 : 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_;
|
D | ast.h | 1580 Handle<JSGlobalPropertyCell> cell() { return cell_; } in cell() 1618 Handle<JSGlobalPropertyCell> cell_; variable
|
/external/chromium/chrome/browser/ui/cocoa/download/ |
D | download_item_controller.h | 25 IBOutlet DownloadItemCell* cell_; variable
|
D | download_item_controller.mm | 241 [cell_ setStateFromDownload:downloadModel]; 245 [cell_ setImage:icon];
|
D | download_item_cell.mm | 84 DownloadItemCell* cell_; field 724 cell_ = cell; 732 [cell_ animation:self progressed:progress];
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
D | bookmark_bar_controller_unittest.mm | 308 scoped_nsobject<NSButtonCell> cell_; 327 cell_.reset([[NSButtonCell alloc] init]); 329 [menu_ setDelegate:cell_.get()];
|