OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:clock_layout
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/ash/system/date/
date_view.h
92
explicit TimeView(TrayDate::ClockLayout
clock_layout
);
99
void UpdateClockLayout(TrayDate::ClockLayout
clock_layout
);
113
void SetBorder(TrayDate::ClockLayout
clock_layout
);
date_view_unittest.cc
32
// Creates a time view with horizontal or vertical |
clock_layout
|.
33
void CreateTimeView(TrayDate::ClockLayout
clock_layout
) {
34
time_view_.reset(new TimeView(
clock_layout
));
tray_date.cc
178
ClockLayout
clock_layout
=
local
182
time_tray_ = new tray::TimeView(
clock_layout
);
213
ClockLayout
clock_layout
= (alignment == SHELF_ALIGNMENT_BOTTOM ||
local
216
time_tray_->UpdateClockLayout(
clock_layout
);
date_view.cc
193
TimeView::TimeView(TrayDate::ClockLayout
clock_layout
)
198
UpdateClockLayout(
clock_layout
);
250
void TimeView::UpdateClockLayout(TrayDate::ClockLayout
clock_layout
){
251
SetBorder(
clock_layout
);
252
if (
clock_layout
== TrayDate::HORIZONTAL_CLOCK) {
277
void TimeView::SetBorder(TrayDate::ClockLayout
clock_layout
) {
278
if (
clock_layout
== TrayDate::HORIZONTAL_CLOCK)
Completed in 614 milliseconds