Home | History | Annotate | Download | only in resources

Lines Matching refs:now

11   TilePriority now(HIGH_RESOLUTION, TilePriority::NOW, 0);
16 TilePriority non_ideal_now(NON_IDEAL_RESOLUTION, TilePriority::NOW, 0);
18 EXPECT_FALSE(now.IsHigherPriorityThan(now));
19 EXPECT_FALSE(now.IsHigherPriorityThan(non_ideal_now));
21 EXPECT_TRUE(now.IsHigherPriorityThan(close_soon));
22 EXPECT_TRUE(now.IsHigherPriorityThan(far_soon));
23 EXPECT_TRUE(now.IsHigherPriorityThan(close_eventually));
24 EXPECT_TRUE(now.IsHigherPriorityThan(far_eventually));
35 EXPECT_FALSE(far_eventually.IsHigherPriorityThan(now));
39 EXPECT_FALSE(close_eventually.IsHigherPriorityThan(now));
41 EXPECT_FALSE(far_soon.IsHigherPriorityThan(now));
42 EXPECT_FALSE(close_soon.IsHigherPriorityThan(now));