HomeSort by relevance Sort by last modified time
    Searched refs:InsertText (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/chromium_org/ui/views/controls/
prefix_selector_unittest.cc 67 selector_->InsertText(ASCIIToUTF16("an"));
72 selector_->InsertText(ASCIIToUTF16("a"));
76 selector_->InsertText(ASCIIToUTF16("g"));
80 selector_->InsertText(ASCIIToUTF16("b"));
81 selector_->InsertText(ASCIIToUTF16("a"));
85 selector_->InsertText(ASCIIToUTF16("\t"));
86 selector_->InsertText(ASCIIToUTF16("b"));
87 selector_->InsertText(ASCIIToUTF16("a"));
prefix_selector.h 32 virtual void InsertText(const base::string16& text) OVERRIDE;
prefix_selector.cc 50 void PrefixSelector::InsertText(const base::string16& text) {
  /external/clang/include/clang/Rewrite/Core/
Rewriter.h 63 /// InsertText - Insert some text at the specified point, where the offset in
67 void InsertText(unsigned OrigOffset, StringRef Str,
74 /// method is the same as InsertText with "InsertAfter == false".
76 InsertText(OrigOffset, Str, false);
83 InsertText(OrigOffset, Str);
184 /// InsertText - Insert the specified string at the specified location in the
190 bool InsertText(SourceLocation Loc, StringRef Str,
197 /// at the some point (the default behavior for InsertText).
199 return InsertText(Loc, Str);
206 /// InsertText - Insert the specified string at the specified location in th
    [all...]
  /external/chromium_org/content/shell/renderer/test_runner/
text_input_controller.h 36 void InsertText(const std::string& text);
text_input_controller.cc 38 void InsertText(const std::string& text);
87 .SetMethod("insertText", &TextInputControllerBindings::InsertText)
100 void TextInputControllerBindings::InsertText(const std::string& text) {
102 controller_->InsertText(text);
161 void TextInputController::InsertText(const std::string& text) {
  /external/chromium_org/chrome/browser/chromeos/input_method/
textinput_surroundingtext_browsertest.cc 45 helper.GetTextInputClient()->InsertText(sample_text1);
50 helper.GetTextInputClient()->InsertText(sample_text2);
86 helper.GetTextInputClient()->InsertText(sample_text);
  /external/chromium_org/ui/base/ime/
dummy_text_input_client.cc 29 void DummyTextInputClient::InsertText(const base::string16& text) {
dummy_text_input_client.h 23 virtual void InsertText(const base::string16& text) OVERRIDE;
text_input_client.h 46 virtual void InsertText(const base::string16& text) = 0;
48 // Inserts a single char at the insertion point. Unlike above InsertText()
input_method_auralinux.cc 125 GetTextInputClient()->InsertText(text);
  /external/chromium_org/ui/keyboard/
keyboard_util.h 106 KEYBOARD_EXPORT bool InsertText(const base::string16& text,
keyboard_util.cc 170 bool InsertText(const base::string16& text, aura::Window* root_window) {
183 tic->InsertText(text);
191 // ui::TextInputClient from that (see above in InsertText()).
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TypingCommand.h 39 InsertText,
63 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);
TypingCommand.cpp 158 void TypingCommand::insertText(Document& document, const String& text, Options options, TextCompositionType composition)
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)
191 lastTypingCommand->insertText(newText, options & SelectInsertedText);
195 RefPtrWillBeRawPtr<TypingCommand> cmd = TypingCommand::create(document, InsertText, newText, options, compositionType);
276 case InsertText:
277 insertText(m_textToInsert, m_selectInsertedText);
328 void TypingCommand::insertText(const String &text, bool selectInsertedText)
346 typingAddedToOpenCommand(InsertText);
615 case InsertText
    [all...]
  /external/chromium_org/ui/app_list/views/
search_box_view_unittest.cc 92 view_->search_box()->InsertText(base::string16(1, character));
  /external/chromium_org/ui/views/controls/tree/
tree_view_unittest.cc 396 selector()->InsertText(ASCIIToUTF16("b"));
398 selector()->InsertText(ASCIIToUTF16("1"));
403 selector()->InsertText(ASCIIToUTF16("z"));
407 selector()->InsertText(ASCIIToUTF16("a"));
  /external/chromium_org/ui/views/ime/
input_method_bridge.h 57 virtual void InsertText(const base::string16& text) OVERRIDE;
mock_input_method.cc 83 client->InsertText(result_text_);
input_method_bridge.cc 201 void InputMethodBridge::InsertText(const base::string16& text) {
204 client->InsertText(text);
  /external/clang/lib/Rewrite/Core/
Rewriter.cpp 96 void RewriteBuffer::InsertText(unsigned OrigOffset, StringRef Str,
240 /// InsertText - Insert the specified string at the specified location in the
242 bool Rewriter::InsertText(SourceLocation Loc, StringRef Str,
279 getEditBuffer(FID).InsertText(StartOffs, Str, InsertAfter);
290 getEditBuffer(FID).InsertText(StartOffs, Str, /*InsertAfter*/true);
422 RB.InsertText(offs, indent, /*InsertAfter=*/false);
  /external/chromium_org/chrome/browser/extensions/api/input/
input.cc 51 return keyboard::InsertText(text, ash::Shell::GetPrimaryRootWindow());
  /external/chromium_org/ui/views/controls/textfield/
textfield_model.h 69 void InsertText(const base::string16& new_text) {
  /external/pdfium/fpdfsdk/include/pdfwindow/
PWL_EditCtrl.h 41 //5 InsertText
128 virtual void InsertText(FX_LPCWSTR csText);
  /external/chromium_org/ppapi/examples/ime/
ime.cc 239 InsertText(std::string());
267 void InsertText(const std::string& text) {
338 InsertText(std::string());
350 InsertText(std::string());
658 it->InsertText(str);
670 it->InsertText(ev.GetText().AsString());

Completed in 600 milliseconds

1 2 3