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

1 2

  /external/clang/test/SemaObjC/
objc-qualified-property-lookup.m 7 @protocol TextInput
12 NSObject<TextInput>* editor;
  /external/webkit/Tools/DumpRenderTree/mac/
TextInputController.m 219 - (NSObject <NSTextInput> *)textInput
227 NSObject <NSTextInput> *textInput = [self textInput];
229 if (textInput)
230 [textInput insertText:aString];
235 NSObject <NSTextInput> *textInput = [self textInput];
237 if (textInput)
238 [textInput doCommandBySelector:NSSelectorFromString(aCommand)];
243 NSObject <NSTextInput> *textInput = [self textInput]
    [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebJavaScriptTextInputPanel.m 44 // until then, prompt and textInput will be nil.
46 ASSERT(textInput);
48 [textInput setStringValue:t];
58 return [textInput stringValue];
WebJavaScriptTextInputPanel.h 34 IBOutlet NSTextField *textInput;
  /packages/apps/VideoEditor/src/com/android/videoeditor/
AlertDialogs.java 105 final EditText textInput = (EditText) myView.findViewById(R.id.text_1);
108 textInput.setText(text);
109 textInput.setSelection(0, text.length());
111 if (hint != null) textInput.setHint(hint);
116 textInput.setFilters(filters);
120 textInput.setInputType(inputType);
129 textInput.setOnFocusChangeListener(new View.OnFocusChangeListener() {
138 textInput.addTextChangedListener(new TextWatcher() {
  /external/webkit/Source/WebKit2/PluginProcess/mac/
PluginControllerProxyMac.mm 96 void PluginControllerProxy::sendComplexTextInput(const String& textInput)
98 m_plugin->sendComplexTextInput(textInput);
  /external/webkit/Source/WebKit/gtk/tests/
testkeyevents.c 338 g_test_add("/webkit/keyevents/event-textinput", KeyEventFixture,
358 g_test_add("/webkit/keyevent/ime-textinput", KeyEventFixture,
368 g_test_add("/webkit/keyevent/block-textinput", KeyEventFixture,
379 g_test_add("/webkit/keyevent/xim-textinput", KeyEventFixture,
  /external/webkit/Source/WebKit/qt/docs/webkitsnippets/webelement/
main.cpp 86 textInput.setAttribute("value", storedText);
  /external/chromium/chrome/browser/
browser_keyevents_browsertest.cc 54 // the result of keydown, keypress, keyup and textInput events.
60 // For textInput event, the format is: T <text>, where <text> is the text to be
140 // event types are supported: keydown, keypress, keyup and textInput.
153 bool keyup, bool textinput) {
161 SuppressEventByType(tab_index, L"textInput", textinput));
275 " Suppress: keydown:%d, keypress:%d, keyup:%d, textInput:%d\n"
340 // a, suppress textInput
  /external/chromium/chrome/browser/resources/options/
password_manager_list.js 75 var textInput = this.querySelector('input[type=text]');
76 var input = passwordInput || textInput;
  /external/webkit/Source/WebCore/dom/
EventNames.h 105 macro(textInput) \
  /external/webkit/Source/WebKit/English.lproj/WebJavaScriptTextInputPanel.nib/
classes.nib 181 <key>textInput</key>
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKView.mm 946 LOG(TextInput, "%s was handled by text input context", String(#Selector).substring(0, String(#Selector).find("Internal")).ascii().data()); \
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/mac/
WebPageProxyMac.mm 237 void WebPageProxy::sendComplexTextInputToPlugin(uint64_t pluginComplexTextInputIdentifier, const String& textInput)
242 process()->send(Messages::WebPage::SendComplexTextInputToPlugin(pluginComplexTextInputIdentifier, textInput), m_pageID);
  /external/webkit/Source/WebKit2/PluginProcess/
PluginControllerProxy.h 134 void sendComplexTextInput(const String& textInput);
PluginControllerProxy.messages.in 91 SendComplexTextInput(WTF::String textInput)
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapePlugin.h 179 virtual void sendComplexTextInput(const String& textInput);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProxy.h 97 virtual void sendComplexTextInput(const String& textInput);
PluginView.h 67 bool sendComplexTextInput(uint64_t pluginComplexTextInputIdentifier, const String& textInput);
PluginProxy.cpp 353 void PluginProxy::sendComplexTextInput(const String& textInput)
355 m_connection->connection()->send(Messages::PluginControllerProxy::SendComplexTextInput(textInput), m_pluginInstanceID);
Plugin.h 165 virtual void sendComplexTextInput(const String& textInput) = 0;
  /external/webkit/Source/WebKit2/UIProcess/win/
WebView.cpp     [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.messages.in 179 SendComplexTextInputToPlugin(uint64_t pluginComplexTextInputIdentifier, String textInput)
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
NetscapePluginMac.mm 916 void NetscapePlugin::sendComplexTextInput(const String& textInput)
921 event.data.text.text = reinterpret_cast<NPNSString*>(static_cast<NSString*>(textInput));
930 if (!convertStringToKeyCodes(textInput, scriptCode, keyCodes))
  /external/webkit/Source/WebKit/mac/WebView/
WebHTMLView.mm     [all...]

Completed in 851 milliseconds

1 2