HomeSort by relevance Sort by last modified time
    Searched full:buttons_ (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/ui/app_list/views/
page_switcher.cc 122 buttons_(new views::View) {
123 AddChildView(buttons_);
135 if (!buttons_->bounds().Contains(point))
139 views::View::ConvertPointToTarget(this, buttons_, &buttons_point);
141 for (int i = 0; i < buttons_->child_count(); ++i) {
142 const views::View* button = buttons_->child_at(i);
153 const int button_count = buttons_->child_count();
156 static_cast<PageSwitcherButton*>(buttons_->child_at(page));
163 static_cast<PageSwitcherButton*>(buttons_->child_at(i));
171 return gfx::Size(buttons_->GetPreferredSize().width()
    [all...]
page_switcher.h 54 views::View* buttons_; // Owned by views hierarchy. member in class:app_list::PageSwitcher
  /external/chromium_org/chrome/browser/ui/cocoa/constrained_window/
constrained_window_alert.mm 119 return buttons_;
134 if (!buttons_.get())
135 buttons_.reset([[NSMutableArray alloc] init]);
142 [buttons_ addObject:button];
149 for (NSButton* button in buttons_.get()) {
154 if ([buttons_ count])
155 buttonWidth += ([buttons_ count] - 1) * kButtonGap;
166 CGFloat curY = [buttons_ count] ? NSMaxY([[buttons_ lastObject] frame])
193 const int buttonCount = [buttons_ count]
    [all...]
constrained_window_alert.h 22 base::scoped_nsobject<NSMutableArray> buttons_; variable
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_folder_controller.mm 297 buttons_.reset([[NSMutableArray alloc] init]);
318 for (BookmarkButton* button in buttons_.get()) {
364 for (BookmarkButton* button in buttons_.get()) {
368 [buttons_ removeAllObjects];
    [all...]
bookmark_bar_controller.mm 168 // Modifies self->buttons_. Do not add more buttons than will fit on the view.
261 buttons_.reset([[NSMutableArray alloc] init]);
362 for (BookmarkButton* button in buttons_.get()) {
498 for (NSButton* button in buttons_.get())
501 // buttons_ array.
    [all...]
bookmark_bar_controller.h 188 base::scoped_nsobject<NSMutableArray> buttons_; variable
255 // [buttons_ count] isn't a definitive check.
bookmark_bar_folder_controller.h 66 base::scoped_nsobject<NSMutableArray> buttons_; variable
  /external/chromium_org/chrome/browser/ui/cocoa/extensions/
browser_actions_controller.mm 336 buttons_.reset([[NSMutableDictionary alloc] init]);
355 for (BrowserActionButton* button in [buttons_ allValues]) {
362 return [buttons_ count];
389 for (BrowserActionButton* button in [buttons_ allValues]) {
537 [buttons_ setObject:newButton forKey:buttonKey];
561 BrowserActionButton* button = [buttons_ objectForKey:buttonKey];
572 [buttons_ removeObjectForKey:buttonKey];
601 for (BrowserActionButton* button in [buttons_ allValues]) {
623 return [buttons_ objectForKey:extensionId];
896 return [buttons_ objectForKey:base::SysUTF8ToNSString(extension->id())]
    [all...]
browser_actions_controller.h 51 base::scoped_nsobject<NSMutableDictionary> buttons_; variable
  /external/chromium_org/mojo/examples/media_viewer/
media_viewer.cc 137 ControlPanel(Delegate* delegate) : delegate_(delegate), buttons_() {}
156 buttons_[type] = button;
176 if (sender == buttons_[i]) {
184 views::Button* buttons_[CONTROL_COUNT]; member in class:mojo::examples::ControlPanel
  /external/chromium_org/ui/message_center/views/
notifier_settings_view_unittest.cc 103 GetView()->buttons_;
notifier_settings_view.h 118 std::set<NotifierButton*> buttons_; member in class:message_center::NotifierSettingsView
notifier_settings_view.cc 518 for (std::set<NotifierButton*>::iterator iter = buttons_.begin();
519 iter != buttons_.end();
541 buttons_.clear();
610 buttons_.insert(button);
676 buttons_.find(static_cast<NotifierButton*>(sender));
678 if (iter == buttons_.end())
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
suggest_apps_dialog.js 62 this.buttons_ = this.document_.createElement('div');
63 this.buttons_.id = 'buttons';
64 this.frame_.appendChild(this.buttons_);
71 this.buttons_.appendChild(this.webstoreButton_);

Completed in 497 milliseconds