Searched defs:CreateSolidBackground (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/ui/views/
H A Dbackground.h45 static Background* CreateSolidBackground(SkColor color);
48 static Background* CreateSolidBackground(int r, int g, int b) { function in class:views::Background
49 return CreateSolidBackground(SkColorSetRGB(r, g, b));
53 static Background* CreateSolidBackground(int r, int g, int b, int a) { function in class:views::Background
54 return CreateSolidBackground(SkColorSetARGB(a, r, g, b));
H A Dbackground.cc90 Background* Background::CreateSolidBackground(SkColor color) { function in class:views::Background
97 return CreateSolidBackground(SK_ColorWHITE);

Completed in 584 milliseconds