Home
last modified time | relevance | path

Searched refs:textfield (Results 1 – 25 of 27) sorted by relevance

12

/third_party/cef/tests/ceftests/views/
Dtextfield_unittest.cc35 CefRefPtr<CefTextfield> textfield = CefTextfield::CreateTextfield(nullptr); in RunTextfieldContents() local
36 EXPECT_TRUE(textfield.get()); in RunTextfieldContents()
37 EXPECT_TRUE(textfield->AsTextfield().get()); in RunTextfieldContents()
41 window->AddChildView(textfield); in RunTextfieldContents()
45 EXPECT_TRUE(textfield->GetText().empty()); in RunTextfieldContents()
46 EXPECT_FALSE(textfield->HasSelection()); in RunTextfieldContents()
47 EXPECT_EQ(CefRange(0, 0), textfield->GetSelectedRange()); in RunTextfieldContents()
48 EXPECT_EQ(0U, textfield->GetCursorPosition()); in RunTextfieldContents()
52 textfield->SetText(kText); in RunTextfieldContents()
53 EXPECT_STREQ(kText, textfield->GetText().ToString().c_str()); in RunTextfieldContents()
[all …]
/third_party/cef/libcef_dll/ctocpp/views/
Dtextfield_delegate_ctocpp.cc23 bool CefTextfieldDelegateCToCpp::OnKeyEvent(CefRefPtr<CefTextfield> textfield, in OnKeyEvent() argument
34 DCHECK(textfield.get()); in OnKeyEvent()
35 if (!textfield.get()) in OnKeyEvent()
40 _struct, CefTextfieldCppToC::Wrap(textfield), &event); in OnKeyEvent()
48 CefRefPtr<CefTextfield> textfield) { in OnAfterUserAction() argument
58 DCHECK(textfield.get()); in OnAfterUserAction()
59 if (!textfield.get()) in OnAfterUserAction()
63 _struct->on_after_user_action(_struct, CefTextfieldCppToC::Wrap(textfield)); in OnAfterUserAction()
Dtextfield_delegate_ctocpp.h40 bool OnKeyEvent(CefRefPtr<CefTextfield> textfield,
42 void OnAfterUserAction(CefRefPtr<CefTextfield> textfield) override;
/third_party/cef/libcef_dll/cpptoc/views/
Dtextfield_delegate_cpptoc.cc26 cef_textfield_t* textfield, in textfield_delegate_on_key_event() argument
36 DCHECK(textfield); in textfield_delegate_on_key_event()
37 if (!textfield) in textfield_delegate_on_key_event()
51 CefTextfieldCToCpp::Wrap(textfield), eventObj); in textfield_delegate_on_key_event()
59 cef_textfield_t* textfield) { in textfield_delegate_on_after_user_action() argument
68 DCHECK(textfield); in textfield_delegate_on_after_user_action()
69 if (!textfield) in textfield_delegate_on_after_user_action()
74 CefTextfieldCToCpp::Wrap(textfield)); in textfield_delegate_on_after_user_action()
/third_party/cef/libcef/browser/views/
Dtextfield_view.h34 CefRefPtr<CefTextfield> textfield = GetCefView()->AsTextfield(); in GetCefTextfield() local
35 DCHECK(textfield); in GetCefTextfield()
36 return textfield; in GetCefTextfield()
Dtextfield_impl.cc38 CefRefPtr<CefTextfieldImpl> textfield = new CefTextfieldImpl(delegate); in Create() local
39 textfield->Initialize(); in Create()
40 return textfield; in Create()
/third_party/cef/tests/cefclient/browser/
Dviews_style.cc78 void ApplyTo(CefRefPtr<CefTextfield> textfield) { in ApplyTo() argument
82 textfield->SetBackgroundColor(g_background_color); in ApplyTo()
83 textfield->SetTextColor(g_text_color); in ApplyTo()
Dviews_style.h25 void ApplyTo(CefRefPtr<CefTextfield> textfield);
Dviews_window.cc474 bool ViewsWindow::OnKeyEvent(CefRefPtr<CefTextfield> textfield, in OnKeyEvent() argument
477 DCHECK_EQ(ID_URL_TEXTFIELD, textfield->GetID()); in OnKeyEvent()
484 const CefString& url = textfield->GetText(); in OnKeyEvent()
Dviews_window.h150 bool OnKeyEvent(CefRefPtr<CefTextfield> textfield,
/third_party/cef/include/views/
Dcef_textfield_delegate.h59 virtual bool OnKeyEvent(CefRefPtr<CefTextfield> textfield, in OnKeyEvent() argument
68 virtual void OnAfterUserAction(CefRefPtr<CefTextfield> textfield) {} in OnAfterUserAction() argument
/third_party/cef/include/capi/views/
Dcef_textfield_delegate_capi.h68 struct _cef_textfield_t* textfield,
76 struct _cef_textfield_t* textfield);
/third_party/alsa-utils/alsamixer/
Dcolors.c90 .textfield = A_REVERSE | COLOR_PAIR(5), in init_colors()
117 .textfield = A_REVERSE, in init_colors()
Ddevice_name.c183 set_field_fore(fields[1], attrs.textfield); in create_device_name_form()
184 set_field_back(fields[1], attrs.textfield); in create_device_name_form()
Dcolors.h33 int textfield; member
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dsemantics_debugger_test.dart438 testWidgets('SemanticsDebugger textfield', (WidgetTester tester) async {
457 'textfield',
Dtext_golden_test.dart659 testWidgets('Text Inline widget textfield', (WidgetTester tester) async {
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dtext_selection.dart813 /// The interface is usually implemented by textfield implementations wrapping
816 /// the builder with information about the current state of the textfield.
822 /// * [TextField], which implements this delegate for the Material textfield.
823 /// * [CupertinoTextField], which implements this delegate for the Cupertino textfield.
829 /// Whether the textfield should respond to force presses.
832 /// Whether the user may select text in the textfield.
865 /// currently be performed on the textfield. Based on this, the builder adds
Dsemantics_debugger.dart242 annotations.add('textfield');
/third_party/flutter/flutter/packages/flutter/test/material/
Dtext_field_splash_test.dart186 // Pointer is dragged below the textfield, splash is canceled.
/third_party/skia/third_party/externals/expat/expat/doc/
Dok.min.css2textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-…
/third_party/flutter/flutter/packages/flutter/lib/src/cupertino/
Dtext_field.dart527 /// {@macro flutter.material.textfield.onTap}
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dtext_field.dart565 /// {@template flutter.material.textfield.onTap}
/third_party/ffmpeg/doc/
Dbootstrap.min.css5 …x;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=searc…
/third_party/libevdev/doc/style/
Dbootstrap.css166 -webkit-appearance: textfield;

12