OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pref_size
(Results
1 - 9
of
9
) sorted by null
/external/chromium/chrome/browser/ui/views/
first_run_bubble.cc
170
gfx::Size
pref_size
= label1_->GetPreferredSize();
local
175
pref_size
.height());
177
int next_v_space = label1_->y() +
pref_size
.height() +
180
pref_size
= label2_->GetPreferredSize();
183
pref_size
.height());
188
pref_size
= label3_->GetPreferredSize();
191
pref_size
.height());
193
pref_size
= change_button_->GetPreferredSize();
195
canvas.width() -
pref_size
.width() - kBubblePadding,
196
canvas.height() -
pref_size
.height() - views::kButtonVEdgeMargin
323
gfx::Size
pref_size
= label1_->GetPreferredSize();
local
441
gfx::Size
pref_size
= label1_->GetPreferredSize();
local
[
all
...]
first_run_search_engine_view.cc
353
gfx::Size
pref_size
= background_image_->GetPreferredSize();
local
355
pref_size
.height());
369
pref_size
.height() / 2 - title_label_->GetPreferredSize().height() / 2,
dropdown_bar_host.cc
160
gfx::Size
pref_size
= view_->GetPreferredSize();
local
162
pref_size
.height());
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
Cache.java
128
* @param
pref_size
specifies how many leading/trailing bytes of object's
132
public Cache(int
pref_size
, int size) {
134
prefix_size =
pref_size
;
143
* @param
pref_size
specifies how many leading/trailing bytes of object's
146
public Cache(int
pref_size
) {
147
this(
pref_size
, 9);
/external/chromium/chrome/browser/chromeos/notifications/
notification_panel.cc
749
gfx::Size
pref_size
= balloon_container_->GetPreferredSize();
local
750
int new_height = std::min(
pref_size
.height(), kMaxPanelHeight);
751
int new_width =
pref_size
.width();
753
if (new_height !=
pref_size
.height()) {
760
gfx::Size
pref_size
= balloon_container_->GetPreferredSize();
local
763
int new_width =
pref_size
.width();
765
if (new_height !=
pref_size
.height())
/external/chromium/chrome/browser/chromeos/login/
new_user_view.cc
353
gfx::Size
pref_size
= view->GetPreferredSize();
local
355
if (
pref_size
.width() < width) {
356
width =
pref_size
.width();
359
int height =
pref_size
.height();
/external/chromium/chrome/browser/tab_contents/
tab_contents_view_mac.h
71
virtual void UpdatePreferredSize(const gfx::Size&
pref_size
);
tab_contents_view_mac.mm
236
void TabContentsViewMac::UpdatePreferredSize(const gfx::Size&
pref_size
) {
237
preferred_width_ =
pref_size
.width();
238
TabContentsView::UpdatePreferredSize(
pref_size
);
/external/chromium/chrome/browser/notifications/
balloon_host.h
114
virtual void UpdatePreferredSize(const gfx::Size&
pref_size
);
Completed in 1128 milliseconds