/external/webkit/Source/WebCore/editing/ |
D | TypingCommand.h | 63 …static void insertText(Document*, const String&, Options, TextCompositionType = TextCompositionNon… 64 …static void insertText(Document*, const String&, const VisibleSelection&, Options, TextComposition… 74 void insertText(const String &text, bool selectInsertedText);
|
D | TypingCommand.cpp | 151 void TypingCommand::insertText(Document* document, const String& text, Options options, TextComposi… in insertText() function in WebCore::TypingCommand 161 insertText(document, text, frame->selection()->selection(), options, composition); in insertText() 165 void TypingCommand::insertText(Document* document, const String& text, const VisibleSelection& sele… in insertText() function in WebCore::TypingCommand 202 lastTypingCommand->insertText(newText, options & SelectInsertedText); in insertText() 310 insertText(m_textToInsert, m_selectInsertedText); in doApply() 371 void TypingCommand::insertText(const String &text, bool selectInsertedText) in insertText() function in WebCore::TypingCommand
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/ |
D | WebEditorClientGtk.cpp | 107 frame->editor()->insertText(platformEvent->text(), event); in handleKeyboardEvent() 119 if (frame->editor()->insertText(platformEvent->text(), event)) in handleKeyboardEvent()
|
/external/chromium/chrome/browser/ui/cocoa/location_bar/ |
D | autocomplete_text_field_editor_unittest.mm | 74 [editor_ insertText:@"t"]; 77 [editor_ insertText:@"h"]; 81 [editor_ insertText:[NSString stringWithFormat:@"%c", 7]]; 85 [editor_ insertText:[NSString stringWithFormat:@"%c", 12]]; 89 [editor_ insertText:[NSString stringWithFormat:@"i%cs%c", 8, 127]]; 95 [editor_ insertText:[NSString stringWithFormat:@"%c", 12]];
|
D | autocomplete_text_field_editor.mm | 277 - (void)insertText:(id)aString { 300 [super insertText:aString];
|
/external/webkit/Tools/DumpRenderTree/qt/ |
D | TextInputControllerQt.h | 51 void insertText(const QString& string);
|
D | TextInputControllerQt.cpp | 142 void TextInputController::insertText(const QString& string) in insertText() function in TextInputController
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
D | AutoEscaper.java | 260 autoEscapeContext.insertText(); in caseAUvarCommand() 297 autoEscapeContext.insertText(); in applyAutoEscaping() 323 autoEscapeContext.insertText(); in saveAutoEscapingContext()
|
/external/jsilver/src/com/google/streamhtmlparser/ |
D | HtmlParser.java | 270 public void insertText() throws ParseException; in insertText() method
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
D | TextInputController.h | 50 void insertText(const CppArgumentList&, CppVariant*);
|
D | TextInputController.cpp | 62 bindMethod("insertText", &TextInputController::insertText); in TextInputController() 78 void TextInputController::insertText(const CppArgumentList& arguments, CppVariant* result) in insertText() function in TextInputController
|
/external/webkit/Tools/DumpRenderTree/mac/ |
D | TextInputController.m | 159 if (aSelector == @selector(insertText:) 180 if (aSelector == @selector(insertText:)) 181 return @"insertText"; 225 - (void)insertText:(id)aString 230 [textInput insertText:aString];
|
/external/jsilver/src/com/google/clearsilver/jsilver/autoescape/ |
D | AutoEscapeContext.java | 283 public void insertText() { in insertText() method in AutoEscapeContext 285 htmlParser.insertText(); in insertText()
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/mac/ |
D | WebPageMac.mm | 137 if (commands[i].commandName == "insertText:") { 143 … // An insertText: might be handled by other responders in the chain if we don't handle it. 145 eventWasHandled |= frame->editor()->insertText(commands[i].text, event); 250 void WebPage::insertText(const String& text, uint64_t replacementRangeStart, uint64_t replacementRa… 261 // An insertText: might be handled by other responders in the chain if we don't handle it. 263 handled = frame->editor()->insertText(text, m_keyboardEventBeingInterpreted);
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
D | EditorClientAndroid.cpp | 206 if (frame->editor()->insertText(keyEvent->text(), event)) in handleKeyboardEvent()
|
/external/webkit/Source/WebKit/haiku/WebCoreSupport/ |
D | EditorClientHaiku.cpp | 312 frame->editor()->insertText(kevent->text(), event); in handleKeyboardEvent()
|
/external/webkit/Source/WebKit2/UIProcess/API/mac/ |
D | WKView.mm | 1090 …// As in insertText:replacementRange:, we assume that the call comes from an input method if there… 1102 - (void)insertText:(id)string 1105 …sn't performed. We are not going to actually insert any text in that case, but saving an insertText 1107 [self insertText:string replacementRange:NSMakeRange(NSNotFound, 0)]; 1110 - (void)insertText:(id)string replacementRange:(NSRange)replacementRange 1116 …LOG(TextInput, "insertText:\"%@\" replacementRange:(%u, %u)", isAttributedString ? [string string]… 1118 LOG(TextInput, "insertText:\"%@\"", isAttributedString ? [string string] : string); 1132 // insertText can be called for several reasons: 1140 parameters->commands->append(KeypressCommand("insertText:", text)); 1146 …bool eventHandled = _data->_page->insertText(eventText, replacementRange.location, NSMaxRange(repl… [all …]
|
/external/jsilver/src/com/google/clearsilver/jsilver/template/ |
D | DefaultRenderingContext.java | 139 autoEscapeContext.insertText(); in writeEscaped()
|
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
D | EditorClientGtk.cpp | 748 frame->editor()->insertText(String::fromUTF8(m_pendingComposition.get()), event); in handleKeyboardEvent() 761 if (frame->editor()->insertText(platformEvent->text(), event)) in handleKeyboardEvent()
|
/external/webkit/Source/WebKit/efl/WebCoreSupport/ |
D | EditorClientEfl.cpp | 395 return frame->editor()->insertText(event->keyEvent()->text(), event); in handleEditingKeyboardEvent()
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebFrame.h | 391 virtual void insertText(const WebString& text) = 0;
|
/external/webkit/Source/WebKit/wince/WebCoreSupport/ |
D | EditorClientWinCE.cpp | 405 return frame->editor()->insertText(event->keyEvent()->text(), event); in handleEditingKeyboardEvent()
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebFrameImpl.h | 149 virtual void insertText(const WebString&);
|
/external/webkit/Source/WebKit/wx/WebKitSupport/ |
D | EditorClientWx.cpp | 407 return frame->editor()->insertText(event->keyEvent()->text(), event); in handleEditingKeyboardEvent()
|
/external/chromium/chrome/browser/renderer_host/ |
D | render_widget_host_view_mac.mm | 1209 // Tells insertText: and doCommandBySelector: that we are handling a key 1353 // We don't get insertText: calls if ctrl or cmd is down, or the key event 2062 // [WebHTMLView insertText] -> 2063 // Editor::insertText() 2080 // [RenderWidgetHostViewMac insertText] (browser) -> 2082 // Editor::insertText() (renderer) 2099 // [RenderWidgetHostViewMac insertText] (browser) -> 2101 // Editor::insertText() (renderer) 2277 - (void)insertText:(id)string { 2390 // insertText. So, we need to send an IPC message to a renderer so it can [all …]
|