OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsExpressibleAsRect
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/ui/gfx/geometry/
rect_f.cc
22
bool RectF::
IsExpressibleAsRect
() const {
rect_unittest.cc
789
TEST(RectTest,
IsExpressibleAsRect
) {
790
EXPECT_TRUE(RectF().
IsExpressibleAsRect
());
797
min + 200, min + 200, max - 200, max - 200).
IsExpressibleAsRect
());
799
min - 200, min + 200, max + 200, max + 200).
IsExpressibleAsRect
());
801
min + 200 , min - 200, max + 200, max + 200).
IsExpressibleAsRect
());
803
min + 200, min + 200, max + 200, max - 200).
IsExpressibleAsRect
());
805
min + 200, min + 200, max - 200, max + 200).
IsExpressibleAsRect
());
807
EXPECT_TRUE(RectF(0, 0, max - 200, max - 200).
IsExpressibleAsRect
());
808
EXPECT_FALSE(RectF(200, 0, max + 200, max - 200).
IsExpressibleAsRect
());
809
EXPECT_FALSE(RectF(0, 200, max - 200, max + 200).
IsExpressibleAsRect
());
[
all
...]
rect_f.h
60
bool
IsExpressibleAsRect
() const;
/external/chromium_org/cc/test/
layer_test_common.cc
28
if (!r.
IsExpressibleAsRect
())
Completed in 197 milliseconds