OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AsCustomButton
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/ui/views/controls/button/
custom_button_unittest.cc
155
TEST_F(CustomButtonTest,
AsCustomButton
) {
159
EXPECT_TRUE(CustomButton::
AsCustomButton
(&text_button));
162
EXPECT_TRUE(CustomButton::
AsCustomButton
(&image_button));
165
EXPECT_TRUE(CustomButton::
AsCustomButton
(&checkbox));
168
EXPECT_TRUE(CustomButton::
AsCustomButton
(&radio_button));
171
EXPECT_TRUE(CustomButton::
AsCustomButton
(&menu_button));
174
EXPECT_FALSE(CustomButton::
AsCustomButton
(&label));
177
EXPECT_FALSE(CustomButton::
AsCustomButton
(&link));
180
EXPECT_FALSE(CustomButton::
AsCustomButton
(&textfield));
custom_button.h
32
static const CustomButton*
AsCustomButton
(const views::View* view);
33
static CustomButton*
AsCustomButton
(views::View* view);
custom_button.cc
33
const CustomButton* CustomButton::
AsCustomButton
(const views::View* view) {
34
return
AsCustomButton
(const_cast<views::View*>(view));
37
CustomButton* CustomButton::
AsCustomButton
(views::View* view) {
/external/chromium_org/chrome/browser/ui/views/toolbar/
wrench_menu.cc
184
CustomButton* button = CustomButton::
AsCustomButton
(view);
430
DCHECK(CustomButton::
AsCustomButton
(button));
644
DCHECK(CustomButton::
AsCustomButton
(fullscreen_button_));
[
all
...]
/external/chromium_org/ui/views/controls/menu/
menu_controller.cc
110
CustomButton* button = CustomButton::
AsCustomButton
(view);
[
all
...]
Completed in 130 milliseconds