OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:buttons_
(Results
1 - 16
of
16
) sorted by null
/external/chromium_org/ui/app_list/views/
contents_switcher_view.cc
23
: contents_view_(contents_view),
buttons_
(new views::View) {
24
AddChildView(
buttons_
);
26
buttons_
->SetLayoutManager(new views::BoxLayout(
40
buttons_
->AddChildView(button);
44
return gfx::Size(
buttons_
->GetPreferredSize().width(), kPreferredHeight);
50
// Makes |
buttons_
| horizontally center and vertically fill.
51
gfx::Size buttons_size(
buttons_
->GetPreferredSize());
56
buttons_
->SetBoundsRect(gfx::IntersectRects(rect, buttons_bounds));
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
...]
contents_switcher_view.h
40
views::View*
buttons_
; // Owned by views hierarchy.
member in class:app_list::ContentsSwitcherView
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
296
buttons_
.reset([[NSMutableArray alloc] init]);
317
for (BookmarkButton* button in
buttons_
.get()) {
363
for (BookmarkButton* button in
buttons_
.get()) {
367
[
buttons_
removeAllObjects];
764
(CGFloat)[self menuHeightForButtonCount:[
buttons_
count]];
[
all
...]
bookmark_bar_controller.mm
167
// Modifies self->
buttons_
. Do not add more buttons than will fit on the view.
260
buttons_
.reset([[NSMutableArray alloc] init]);
361
for (BookmarkButton* button in
buttons_
.get()) {
497
for (NSButton* button in
buttons_
.get())
500
//
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
317
buttons_
.reset([[NSMutableDictionary alloc] init]);
336
for (BrowserActionButton* button in [
buttons_
allValues]) {
343
return [
buttons_
count];
370
for (BrowserActionButton* button in [
buttons_
allValues]) {
534
[
buttons_
setObject:newButton forKey:buttonKey];
558
BrowserActionButton* button = [
buttons_
objectForKey:buttonKey];
569
[
buttons_
removeObjectForKey:buttonKey];
598
for (BrowserActionButton* button in [
buttons_
allValues]) {
620
return [
buttons_
objectForKey:extensionId];
892
return [
buttons_
objectForKey:base::SysUTF8ToNSString(extension->id())]
[
all
...]
browser_actions_controller.h
51
base::scoped_nsobject<NSMutableDictionary>
buttons_
;
variable
/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
526
for (std::set<NotifierButton*>::iterator iter =
buttons_
.begin();
527
iter !=
buttons_
.end();
549
buttons_
.clear();
632
buttons_
.insert(button);
698
buttons_
.find(static_cast<NotifierButton*>(sender));
700
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 1022 milliseconds