OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetMessageLineLimit
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/ui/message_center/views/
notification_view_unittest.cc
207
EXPECT_EQ(5, notification_view()->
GetMessageLineLimit
(0, 360));
208
EXPECT_EQ(5, notification_view()->
GetMessageLineLimit
(1, 360));
209
EXPECT_EQ(3, notification_view()->
GetMessageLineLimit
(2, 360));
214
EXPECT_EQ(2, notification_view()->
GetMessageLineLimit
(0, 360));
215
EXPECT_EQ(2, notification_view()->
GetMessageLineLimit
(1, 360));
216
EXPECT_EQ(1, notification_view()->
GetMessageLineLimit
(2, 360));
223
EXPECT_EQ(1, notification_view()->
GetMessageLineLimit
(0, 360));
224
EXPECT_EQ(1, notification_view()->
GetMessageLineLimit
(1, 360));
225
EXPECT_EQ(0, notification_view()->
GetMessageLineLimit
(2, 360));
notification_view.h
93
int
GetMessageLineLimit
(int title_lines, int width) const;
notification_view.cc
387
int correct_limit =
GetMessageLineLimit
(title_lines, width);
417
message_view_->SetLineLimit(
GetMessageLineLimit
(title_lines, width()));
746
int NotificationView::
GetMessageLineLimit
(int title_lines, int width) const {
Completed in 697 milliseconds