HomeSort by relevance Sort by last modified time
    Searched full:textfield (Results 1 - 25 of 246) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium_org/ui/views/controls/textfield/
textfield_test_api.cc 5 #include "ui/views/controls/textfield/textfield_test_api.h"
9 TextfieldTestApi::TextfieldTestApi(Textfield* textfield)
10 : textfield_(textfield) {
11 DCHECK(textfield);
textfield_test_api.h 8 #include "ui/views/controls/textfield/textfield.h"
12 // Helper class to access internal state of Textfield in tests.
15 explicit TextfieldTestApi(Textfield* textfield);
36 Textfield* textfield_;
textfield_controller.cc 5 #include "ui/views/controls/textfield/textfield_controller.h"
12 bool TextfieldController::HandleKeyEvent(Textfield* sender,
17 bool TextfieldController::HandleMouseEvent(Textfield* sender,
textfield.cc 5 #include "ui/views/controls/textfield/textfield.h"
30 #include "ui/views/controls/textfield/textfield_controller.h"
240 const char Textfield::kViewClassName[] = "Textfield";
241 const int Textfield::kTextPadding = 3;
244 size_t Textfield::GetCaretBlinkMs() {
254 Textfield::Textfield()
289 Textfield::~Textfield() {
    [all...]
textfield_controller.h 22 class Textfield;
30 // Textfield::SetText() or Textfield::AppendText().
31 virtual void ContentsChanged(Textfield* sender,
37 virtual bool HandleKeyEvent(Textfield* sender,
43 virtual bool HandleMouseEvent(Textfield* sender,
46 // Called before performing a user action that may change the textfield.
48 virtual void OnBeforeUserAction(Textfield* sender) {}
50 // Called after performing a user action that may change the textfield.
52 virtual void OnAfterUserAction(Textfield* sender) {
    [all...]
  /external/chromium_org/ui/views/examples/
textfield_example.h 12 #include "ui/views/controls/textfield/textfield_controller.h"
34 virtual void ContentsChanged(Textfield* sender,
36 virtual bool HandleKeyEvent(Textfield* sender,
38 virtual bool HandleMouseEvent(Textfield* sender,
45 Textfield* name_;
46 Textfield* password_;
47 Textfield* read_only_;
49 // Various buttons to control textfield.
  /external/chromium_org/chrome/browser/ui/views/
cookie_info_view.h 19 class Textfield;
59 views::Textfield* textfield);
66 views::Textfield* name_value_field_;
68 views::Textfield* content_value_field_;
70 views::Textfield* domain_value_field_;
72 views::Textfield* path_value_field_;
74 views::Textfield* send_for_value_field_;
76 views::Textfield* created_value_field_;
78 views::Textfield* expires_value_field_
    [all...]
cookie_info_view.cc 24 #include "ui/views/controls/textfield/textfield.h"
116 views::Textfield* textfield) {
120 textfield, 2, 1, views::GridLayout::FILL, views::GridLayout::CENTER);
122 // Now that the Textfield is in the view hierarchy, it can be initialized.
123 textfield->SetReadOnly(true);
124 textfield->SetBorder(views::Border::NullBorder());
126 textfield->SetBackgroundColor(GetNativeTheme()->GetSystemColor(
128 textfield->SetTextColor(SkColorSetRGB(0x78, 0x78, 0x78))
    [all...]
edit_search_engine_dialog.h 13 #include "ui/views/controls/textfield/textfield_controller.h"
51 virtual void ContentsChanged(views::Textfield* sender,
53 virtual bool HandleKeyEvent(views::Textfield* sender,
62 views::Textfield* CreateTextfield(const base::string16& text);
75 views::Textfield* title_tf_;
76 views::Textfield* keyword_tf_;
77 views::Textfield* url_tf_;
crypto_module_password_dialog_view.h 13 #include "ui/views/controls/textfield/textfield_controller.h"
18 class Textfield;
48 virtual void ContentsChanged(views::Textfield* sender,
50 virtual bool HandleKeyEvent(views::Textfield* sender,
60 views::Textfield* password_entry_;
  /external/clang/test/SemaObjC/
objcbridge-related-attribute.m 21 NSColor * Test1(NSTextField *textField, CGColorRef newColor) {
23 textField.backgroundColor = newColor; // expected-error {{'CGColorRef' (aka 'struct CGColor *') must be explicitly converted to 'NSColor *'; use '+colorWithCGColor:' method for this conversion}}
27 NSColor * Test2(NSTextField *textField, CGColorRef1 newColor) {
29 textField.backgroundColor = newColor; // expected-warning {{incompatible pointer types assigning}}
33 CGColorRef Test3(NSTextField *textField, CGColorRef newColor) {
34 newColor = textField.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted to 'CGColorRef' (aka 'struct CGColor *'); use '-CGColor' method for this conversion}}
35 return textField.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted to 'CGColorRef' (aka 'struct CGColor *'); use '-CGColor' method for this conversion}}
38 CGColorRef2 Test4(NSTextField *textField, CGColorRef2 newColor) {
39 newColor = textField.backgroundColor; // expected-warning {{incompatible pointer types assigning}}
40 return textField.backgroundColor; // expected-warning {{incompatible pointer types returning}
    [all...]
arc-objcbridge-related-attribute.m 21 NSColor * Test1(NSTextField *textField, CGColorRef newColor) {
23 textField.backgroundColor = newColor; // expected-error {{'CGColorRef' (aka 'struct CGColor *') must be explicitly converted to 'NSColor *__strong'; use '+colorWithCGColor:' method for this conversion}}
27 NSColor * Test2(NSTextField *textField, CGColorRef1 newColor) {
29 textField.backgroundColor = newColor; // expected-warning {{incompatible pointer types assigning to 'NSColor *__strong' from 'CGColorRef1' (aka 'struct CGColor1 *')}}
33 CGColorRef Test3(NSTextField *textField, CGColorRef newColor) {
34 newColor = textField.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted to 'CGColorRef' (aka 'struct CGColor *'); use '-CGColor' method for this conversion}}
35 return textField.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted to 'CGColorRef' (aka 'struct CGColor *'); use '-CGColor' method for this conversion}}
38 CGColorRef2 Test4(NSTextField *textField, CGColorRef2 newColor) {
39 newColor = textField.backgroundColor; // expected-warning {{incompatible pointer types assigning}}
40 return textField.backgroundColor; // expected-warning {{incompatible pointer types returning}
    [all...]
check-objcbridge-related-attribute-lookup.m 22 NSColor * Test1(NSTextField *textField, CGColorRef newColor) {
23 textField.backgroundColor = newColor; // expected-error {{'CGColorRef' (aka 'struct CGColor *') must be explicitly converted to 'NSColor *'; use '+colorXWithCGColor:' method for this conversion}} \
25 newColor = textField.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted to 'CGColorRef' (aka 'struct CGColor *'); use '-CXGColor' method for this conversion}} \
28 NSColor * Test2(NSTextField *textField, CGColorRef1 newColor) {
29 textField.backgroundColor = newColor; // expected-error {{could not find Objective-C class 'XNSColor' to convert 'CGColorRef1' (aka 'struct CGColor1 *') to 'NSColor *'}} \
31 newColor = textField.backgroundColor ; // expected-error {{could not find Objective-C class 'XNSColor' to convert 'NSColor *' to 'CGColorRef1' (aka 'struct CGColor1 *')}} \
35 NSColor * Test3(NSTextField *textField, CGColorRef2 newColor) {
36 textField.backgroundColor = newColor; // expected-error {{'PNsColor' must be name of an Objective-C class to be able to convert 'CGColorRef2' (aka 'struct CGColor2 *') to 'NSColor *'}} \
38 newColor = textField.backgroundColor; // expected-error {{'PNsColor' must be name of an Objective-C class to be able to convert 'NSColor *' to 'CGColorRef2' (aka 'struct CGColor2 *')}} \
  /external/chromium_org/chrome/browser/chromeos/options/
passphrase_textfield.h 10 #include "ui/views/controls/textfield/textfield.h"
14 class PassphraseTextfield : public views::Textfield {
21 // Override views::Textfield so that when focus is gained, then clear out the
wimax_config_view.h 17 #include "ui/views/controls/textfield/textfield_controller.h"
28 // A dialog box for showing a password textfield.
39 virtual void ContentsChanged(views::Textfield* sender,
41 virtual bool HandleKeyEvent(views::Textfield* sender,
81 views::Textfield* identity_textfield_;
86 views::Textfield* passphrase_textfield_;
passphrase_textfield.cc 13 : Textfield(),
31 Textfield::OnFocus();
39 Textfield::OnBlur();
  /external/chromium_org/content/test/data/
touch_selection.html 3 <input id='textfield' type="text" value="Text in a textfield">
20 document.getElementById("textfield").focus();
26 var div = document.getElementById("textfield");
  /external/chromium_org/chrome/browser/ui/views/autofill/
autofill_dialog_view_tester_views.cc 12 #include "ui/views/controls/textfield/textfield.h"
41 ExpandingTextfield* textfield = view_->TextfieldForType(type); local
42 if (textfield)
43 return textfield->GetText();
56 ExpandingTextfield* textfield = view_->TextfieldForType(type); local
57 if (textfield) {
58 textfield->SetText(contents);
75 view_->GroupForSection(section)->suggested_info->textfield()->SetText(text);
decorated_textfield.h 11 #include "ui/views/controls/textfield/textfield.h"
21 // A class which holds a textfield and draws extra stuff on top, like
23 class DecoratedTextfield : public views::Textfield,
33 // Sets whether to indicate the textfield has invalid content.
41 // Sets the icon to display inside the textfield at the end of the text.
48 // views::Textfield implementation.
72 // The view that holds the icon at the end of the textfield.
80 // pieces of the textfield disappear (border, background, icon, placeholder
expanding_textfield.h 12 #include "ui/views/controls/textfield/textfield_controller.h"
35 // Sets the contents of the textfields. Textfield n is set to the nth line
42 // Sets whether to indicate the first textfield has invalid content. Latter
49 // Like validity, this only cares about the first textfield.
66 virtual void ContentsChanged(views::Textfield* sender,
68 virtual bool HandleKeyEvent(views::Textfield* sender,
70 virtual bool HandleMouseEvent(views::Textfield* sender,
74 // Calls a given function on every textfield.
  /external/clang/test/FixIt/
fixit-objc-bridge-related-attr.m 19 NSColor * Test1(NSTextField *textField, CGColorRef newColor) {
20 textField.backgroundColor = newColor;
24 CGColorRef Test2(NSTextField *textField, CGColorRef newColor) {
25 newColor = textField.backgroundColor; // [textField.backgroundColor CGColor]
26 return textField.backgroundColor;
  /external/chromium_org/ui/app_list/views/
search_box_view.h 14 #include "ui/views/controls/textfield/textfield_controller.h"
20 class Textfield;
31 // SearchBoxView consists of an icon and a Textfield. SearchBoxModel is its data
33 // Textfield. The text and selection model part could be set to change the
34 // contents and selection model of the Textfield.
51 views::Textfield* search_box() { return search_box_; }
62 // Updates model text and selection model with current Textfield info.
69 virtual void ContentsChanged(views::Textfield* sender,
71 virtual bool HandleKeyEvent(views::Textfield* sender,
102 views::Textfield* search_box_; // Owned by views hierarchy
    [all...]
  /external/chromium_org/ui/views/color_chooser/
color_chooser_view.h 12 #include "ui/views/controls/textfield/textfield_controller.h"
19 class Textfield;
58 virtual void ContentsChanged(Textfield* sender,
60 virtual bool HandleKeyEvent(Textfield* sender,
78 // The textfield to write the color explicitly.
79 Textfield* textfield_;
  /external/chromium_org/third_party/WebKit/ManualTests/accessibility/resources/
AppletTest.java 36 JTextField textField = new JTextField("TextField",20);
39 textField.setBounds(10,40,100,40);
42 add(textField);
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omnibox/
SuggestionAnswer.java 96 private final List<TextField> mTextFields;
97 private final TextField mAdditionalText;
98 private final TextField mStatusText;
102 mTextFields = new ArrayList<TextField>();
106 mTextFields.add(new TextField(textValues.getJSONObject(i)));
110 new TextField(jsonLine.getJSONObject(ANSWERS_JSON_ADDITIONAL_TEXT)) :
114 new TextField(jsonLine.getJSONObject(ANSWERS_JSON_STATUS_TEXT)) :
125 public List<TextField> getTextFields() {
139 public TextField getAdditionalText() {
153 public TextField getStatusText()
    [all...]

Completed in 688 milliseconds

1 2 3 4 5 6 7 8 910