OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:textfield
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/ui/views/accessibility/
native_view_accessibility_win_unittest.cc
11
#include "ui/views/controls/
textfield
/
textfield
.h"
29
Textfield
*
textfield
= new
Textfield
;
local
30
textfield
->SetAccessibleName(L"Name");
31
textfield
->SetText(L"Value");
32
content->AddChildView(
textfield
);
62
ASSERT_STREQ(L"New value",
textfield
->text().c_str());
/external/chromium/chrome/browser/ui/views/
accessibility_event_router_views.cc
27
#include "views/controls/
textfield
/
textfield
.h"
163
} else if (class_name == views::
Textfield
::kViewClassName) {
268
views::
Textfield
*
textfield
= static_cast<views::
Textfield
*>(view);
local
269
bool password =
textfield
->IsPassword();
/external/chromium_org/ash/
extended_desktop_unittest.cc
30
#include "ui/views/controls/
textfield
/
textfield
.h"
763
views::
Textfield
*
textfield
= new views::
Textfield
;
local
764
lock_widget->client_view()->AddChildView(
textfield
);
771
textfield
->RequestFocus();
784
EXPECT_EQ("a", UTF16ToASCII(
textfield
->text()));
790
EXPECT_EQ("ab", UTF16ToASCII(
textfield
->text()));
797
EXPECT_EQ("abc", UTF16ToASCII(
textfield
->text()))
[
all
...]
/external/chromium_org/ui/views/test/
child_modal_window.cc
13
#include "ui/views/controls/
textfield
/
textfield
.h"
76
Textfield
*
textfield
= new
Textfield
;
local
77
AddChildView(
textfield
);
78
textfield
->SetBounds(
113
textfield_(new
Textfield
),
/external/chromium_org/ui/views/focus/
focus_manager_unittest.cc
13
#include "ui/views/controls/
textfield
/
textfield
.h"
168
class TestTextfield : public
Textfield
{
179
TestTextfield*
textfield
= new TestTextfield();
local
180
GetContentsView()->AddChildView(
textfield
);
182
FocusNativeView(
textfield
->TestGetNativeControlView());
183
EXPECT_EQ(
textfield
, GetFocusManager()->GetFocusedView());
[
all
...]
/external/chromium_org/ui/views/controls/textfield/
native_textfield_views_unittest.cc
5
#include "ui/views/controls/
textfield
/native_textfield_views.h"
31
#include "ui/views/controls/
textfield
/
textfield
.h"
32
#include "ui/views/controls/
textfield
/textfield_controller.h"
33
#include "ui/views/controls/
textfield
/textfield_views_model.h"
52
// A
Textfield
wrapper to intercept OnKey[Pressed|Released]() ressults.
53
class TestTextfield : public views::
Textfield
{
56
:
Textfield
(style),
63
key_handled_ = views::
Textfield
::OnKeyPressed(e);
69
key_handled_ = views::
Textfield
::OnKeyReleased(e)
189
Textfield*
textfield
= new Textfield(style);
local
[
all
...]
/external/chromium_org/ui/views/
view_unittest.cc
27
#include "ui/views/controls/
textfield
/
textfield
.h"
1516
Textfield*
textfield
= new Textfield();
local
[
all
...]
/external/chromium_org/ui/views/widget/
widget_unittest.cc
20
#include "ui/views/controls/
textfield
/
textfield
.h"
932
Textfield
*
textfield
= new
Textfield
();
local
933
textfield
->SetText(ASCIIToUTF16("some text"));
934
container->AddChildView(
textfield
);
936
textfield
->RequestFocus();
[
all
...]
/external/chromium_org/chrome/browser/ui/views/autofill/
autofill_dialog_views.cc
57
#include "ui/views/controls/
textfield
/
textfield
.h"
148
// Returns whether |view| is an input (e.g.
textfield
, combobox).
205
//
Textfield
is right aligned.
1450
views::Textfield*
textfield
= TextfieldForInput(input);
local
1465
views::Textfield*
textfield
= TextfieldForInput(input);
local
2421
DecoratedTextfield*
textfield
=
textfield
_it->second;
local
[
all
...]
/external/chromium_org/chrome/browser/ui/views/frame/
browser_view.cc
124
#include "ui/views/controls/
textfield
/
textfield
.h"
2632
views::Textfield*
textfield
= static_cast<views::Textfield*>(focused);
local
[
all
...]
Completed in 370 milliseconds