Home
last modified time | relevance | path

Searched refs:textField (Results 1 – 24 of 24) sorted by relevance

/external/webkit/Source/WebCore/manual-tests/accessibility/resources/
DAppletTest.java36 JTextField textField = new JTextField("TextField",20); in init() local
39 textField.setBounds(10,40,100,40); in init()
42 add(textField); in init()
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
DInputSystemJme.java253 final TextField textField = element.getNiftyControl(TextField.class); in processSoftKeyboard() local
254 if (textField != null && !(textField instanceof TextFieldNull)) { in processSoftKeyboard()
255 …ogger(InputSystemJme.class.getName()).log(Level.INFO, "Current TextField: {0}", textField.getId()); in processSoftKeyboard()
256 String initialValue = textField.getText(); in processSoftKeyboard()
265 textField.setText(text); in processSoftKeyboard()
/external/chromium/chrome/browser/ui/cocoa/
Dpage_info_bubble_controller.mm33 - (void)configureTextFieldAsLabel:(NSTextField*)textField;
321 - (void)configureTextFieldAsLabel:(NSTextField*)textField {
322 [textField setEditable:NO];
323 [textField setSelectable:YES];
324 [textField setDrawsBackground:NO];
325 [textField setBezeled:NO];
334 scoped_nsobject<NSTextField> textField(
336 [self configureTextFieldAsLabel:textField.get()];
337 [textField setStringValue:base::SysUTF16ToNSString(info.headline)];
339 [textField setFont:font];
[all …]
Dl10n_util.mm26 NSTextField* textField = static_cast<NSTextField*>(view);
27 if ([textField isEditable])
30 [GTMUILocalizerAndLayoutTweaker sizeToFitFixedWidthTextField:textField];
Djs_modal_dialog_cocoa.mm28 - (NSTextField*)textField; method
42 - (NSTextField*)textField { method
137 field = [helper_ textField];
/external/webkit/Source/WebKit/chromium/src/
DAutoFillPopupMenuClient.cpp265 HTMLInputElement* textField, in initialize() argument
278 m_textField = textField; in initialize()
291 regularFont.update(textField->document()->styleSelector()->fontSelector()); in initialize()
296textField->renderer()->style()->direction(), textField->renderer()->style()->unicodeBidi() == Over… in initialize()
DPlatformBridge.cpp844 webThemeExtraParams->textField.isTextArea = extraParams->textField.isTextArea; in GetWebThemeExtraParams()
845 webThemeExtraParams->textField.isListbox = extraParams->textField.isListbox; in GetWebThemeExtraParams()
846 webThemeExtraParams->textField.backgroundColor = extraParams->textField.backgroundColor; in GetWebThemeExtraParams()
/external/webkit/Source/WebKit/mac/WebView/
DWebFormDelegate.h57 - (BOOL)textField:(DOMHTMLInputElement *)element doCommandBySelector:(SEL)commandSelector inFrame:(…
58 - (BOOL)textField:(DOMHTMLInputElement *)element shouldHandleEvent:(NSEvent *)event inFrame:(WebFra…
DWebVideoFullscreenHUDWindowController.mm325 NSTextField *textField = [[NSTextField alloc] initWithFrame:frame];
326 [textField setTextColor:[NSColor whiteColor]];
327 [textField setBordered:NO];
328 [textField setFont:[NSFont boldSystemFontOfSize:10]];
329 [textField setDrawsBackground:NO];
330 [textField setBezeled:NO];
331 [textField setEditable:NO];
332 [textField setSelectable:NO];
333 return textField;
DWebFormDelegate.m63 - (BOOL)textField:(DOMHTMLInputElement *)element doCommandBySelector:(SEL)commandSelector inFrame:(…
68 - (BOOL)textField:(DOMHTMLInputElement *)element shouldHandleEvent:(NSEvent *)event inFrame:(WebFra…
/external/chromium/webkit/glue/
Dwebthemeengine_impl_linux.cc115 extra_params->textField.isTextArea; in GetNativeThemeExtraParams()
117 extra_params->textField.isListbox; in GetNativeThemeExtraParams()
119 extra_params->textField.backgroundColor; in GetNativeThemeExtraParams()
/external/webkit/Source/WebCore/rendering/
DRenderThemeChromiumLinux.cpp249 extraParams.textField.isTextArea = part == TextAreaPart; in paintTextField()
250 extraParams.textField.isListbox = part == ListboxPart; in paintTextField()
256 extraParams.textField.backgroundColor = backgroundColor.rgb(); in paintTextField()
/external/webkit/Source/WebKit/chromium/public/linux/
DWebThemeEngine.h135 TextFieldExtraParams textField; member
/external/webkit/Source/WebKit/win/Interfaces/
DIWebFormDelegate.idl87 …//- (BOOL)textField:(DOMHTMLInputElement *)element doCommandBySelector:(SEL)commandSelector inFram…
90 …//- (BOOL)textField:(DOMHTMLInputElement *)element shouldHandleEvent:(NSEvent *)event inFrame:(Web…
/external/proguard/src/proguard/gui/
DProGuardGUI.java862 private JButton createBrowseButton(final JTextField textField, in createBrowseButton() argument
872 fileChooser.setSelectedFile(new File(textField.getText())); in createBrowseButton()
878 textField.setText(fileChooser.getSelectedFile().getPath()); in createBrowseButton()
887 protected JButton createOptimizationsButton(final JTextField textField) in createOptimizationsButton() argument
897 optimizationsDialog.setFilter(textField.getText()); in createOptimizationsButton()
903 textField.setText(optimizationsDialog.getFilter()); in createOptimizationsButton()
/external/webkit/Source/WebCore/platform/chromium/
DPlatformBridge.h353 TextFieldExtraParams textField; member
/external/webkit/Source/WebKit/win/
DDOMHTMLClasses.cpp1385 BOOL textField = FALSE; in isUserEdited() local
1386 if (FAILED(isTextField(&textField)) || !textField) in isUserEdited()
/external/webkit/Source/WebKit/mac/WebCoreSupport/
DWebEditorClient.mm689 …return CallFormDelegateReturningBoolean(NO, m_webView, @selector(textField:doCommandBySelector:inF…
701 …CallFormDelegateReturningBoolean(NO, m_webView, @selector(textField:doCommandBySelector:inFrame:),…
/external/webkit/Source/WebKit/mac/
DChangeLog-2006-02-094542 (-[WebBridge textField:doCommandBySelector:]):
4547 (-[WebFormDelegate textField:doCommandBySelector:inFrame:]):
4570 (-[WebBridge textField:shouldHandleEvent:]):
4582 (-[WebFormDelegate textField:shouldHandleEvent:inFrame:]):
/external/webkit/Source/WebKit/chromium/
DChangeLog-2011-02-1628345 (WebKit::AutocompletePopupMenuClient::textField):
/external/webkit/Source/WebCore/
DChangeLog-2006-12-3130971 Don't call textField:doCommandBySelector: with a nil selector. This was indirectly causing a
51197 marking stops at the first textField (or at the root) and
DChangeLog-2005-08-237886 Rename control:textView:doCommandBySelector: to textField:doCommandBySelector:, and changed
DChangeLog-2007-10-1450232 REGRESSION: textField:doCommandBySelector:inFrame: not being called properly
/external/webkit/Source/WebKit2/
DChangeLog-2011-02-1630574 …- (BOOL)textField:(DOMHTMLInputElement *)element doCommandBySelector:(SEL)commandSelector inFrame:…