Searched refs:insertText (Results 1 - 25 of 41) sorted by relevance

12

/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/VPRubyPluginEnabler/Script PlugIns/
H A Dnew page with date.rb10 windowController.textView.insertText(pageName)
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/Accessible2/
H A DAccessibleEditableText.idl148 HRESULT insertText
182 this object's text at the given offset. This method is similar to the insertText
209 calling IAccessibleEditableText::insertText with the replacement text
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DTypingCommand.h63 static void insertText(Document*, const String&, Options, TextCompositionType = TextCompositionNone);
64 static void insertText(Document*, const String&, const VisibleSelection&, Options, TextCompositionType = TextCompositionNone);
70 void insertText(const String &text, bool selectInsertedText);
H A DDictationCommand.h39 static void insertText(Document*, const String&, const Vector<DictationAlternative>& alternatives, const VisibleSelection&);
H A DTypingCommand.cpp156 void TypingCommand::insertText(Document* document, const String& text, Options options, TextCompositionType composition) function in class:WebCore::TypingCommand
166 insertText(document, text, frame->selection()->selection(), options, composition);
170 void TypingCommand::insertText(Document* document, const String& text, const VisibleSelection& selectionForInsertion, Options options, TextCompositionType compositionType) function in class:WebCore::TypingCommand
193 lastTypingCommand->insertText(newText, options & SelectInsertedText);
282 insertText(m_textToInsert, m_selectInsertedText);
351 void TypingCommand::insertText(const String &text, bool selectInsertedText) function in class:WebCore::TypingCommand
H A DDictationCommand.cpp91 void DictationCommand::insertText(Document* document, const String& text, const Vector<DictationAlternative>& alternatives, const VisibleSelection& selectionForInsertion) function in class:WebCore::DictationCommand
H A DEditor.h216 bool insertText(const String&, Event* triggeringEvent);
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/library/xml/
H A Dxml.xotcl33 $currentElement insertText $text
69 Node instproc insertText {text} {
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DAccessibleTextImpl.h64 virtual HRESULT STDMETHODCALLTYPE insertText(long offset, BSTR* text);
H A DAccessibleTextImpl.cpp583 HRESULT AccessibleText::insertText(long offset, BSTR* text) function in class:AccessibleText
599 frame->editor().insertText(*text, 0);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebCoreSupport/gtk/
H A DWebEditorClientGtk.cpp122 if (frame->editor().insertText(platformEvent->text(), event))
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/mac/
H A DWebPageProxyMac.mm213 bool WebPageProxy::insertText(const String& text, uint64_t replacementRangeStart, uint64_t replacementRangeEnd)
229 return insertText(text, replacementRangeStart, replacementRangeEnd);
244 return insertText(text, replacementRangeStart, replacementRangeEnd);
250 return insertText(text, replacementRangeStart, replacementRangeEnd);
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebKitSupport/
H A DInputHandler.h91 void insertText(const WTF::String&);
/macosx-10.9.5/ppp-727.90.1/Helpers/MiniTerm/
H A DMiniTerm.m238 [text insertText:str];
/macosx-10.9.5/WebKit-7537.78.2/efl/WebCoreSupport/
H A DEditorClientEfl.cpp351 return frame->editor().insertText(event->keyEvent()->text(), event);
/macosx-10.9.5/WebKit-7537.78.2/wince/WebCoreSupport/
H A DEditorClientWinCE.cpp418 return frame->editor().insertText(event->keyEvent()->text(), event);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/mac/
H A DWebPageMac.mm182 if (commands[i].commandName == "insertText:") {
188 // An insertText: might be handled by other responders in the chain if we don't handle it.
190 eventWasHandled |= frame->editor().insertText(commands[i].text, event);
304 void WebPage::insertText(const String& text, uint64_t replacementRangeStart, uint64_t replacementRangeEnd, bool& handled, EditorState& newState)
315 // An insertText: might be handled by other responders in the chain if we don't handle it.
317 handled = frame->editor().insertText(text, m_keyboardEventBeingInterpreted);
/macosx-10.9.5/WebKit-7537.78.2/blackberry/Api/
H A DWebPage.h169 void insertText(const BlackBerry::Platform::String&);
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DEditorClientBlackBerry.cpp504 if (frame->editor().insertText(platformEvent->text(), event))
/macosx-10.9.5/WebKit-7537.78.2/gtk/WebCoreSupport/
H A DEditorClientGtk.cpp483 if (frame->editor().insertText(platformEvent->text(), event))
H A DDumpRenderTreeSupportGtk.cpp349 editor.insertText(String::fromUTF8(text), 0);
/macosx-10.9.5/WebKit-7537.78.2/mac/Plugins/Hosted/
H A DNetscapePluginInstanceProxy.h100 void insertText(NSString *);
H A DWebHostedNetscapePluginView.mm408 _proxy->insertText(string);
/macosx-10.9.5/WebKit-7537.78.2/qt/WebCoreSupport/
H A DEditorClientQt.cpp498 frame->editor().insertText(kevent->text(), event);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/mac/
H A DWKView.mm1264 // As in insertText:replacementRange:, we assume that the call comes from an input method if there is marked text.
1278 - (void)insertText:(id)string
1281 // so text input processing isn't performed. We are not going to actually insert any text in that case, but saving an insertText
1283 [self insertText:string replacementRange:NSMakeRange(NSNotFound, 0)];
1286 - (void)insertText:(id)string replacementRange:(NSRange)replacementRange
1292 LOG(TextInput, "insertText:\"%@\" replacementRange:(%u, %u)", isAttributedString ? [string string] : string, replacementRange.location, replacementRange.length);
1294 LOG(TextInput, "insertText:\"%@\"", isAttributedString ? [string string] : string);
1313 // insertText can be called for several reasons:
1322 KeypressCommand command("insertText:", text);
1334 eventHandled = _data->_page->insertText(eventTex
[all...]

Completed in 156 milliseconds

12