Home
last modified time | relevance | path

Searched refs:CanPasteAndGo (Results 1 – 11 of 11) sorted by relevance

/external/chromium/chrome/browser/ui/cocoa/location_bar/
Dautocomplete_text_field_editor_unittest.mm233 // Test that the menu is constructed correctly when CanPasteAndGo().
235 EXPECT_CALL(field_observer_, CanPasteAndGo())
256 // Test that the menu is constructed correctly when !CanPasteAndGo().
258 EXPECT_CALL(field_observer_, CanPasteAndGo())
283 EXPECT_CALL(field_observer_, CanPasteAndGo())
Dautocomplete_text_field_unittest_helper.h44 MOCK_METHOD0(CanPasteAndGo, bool());
Dautocomplete_text_field.h55 virtual bool CanPasteAndGo() = 0;
Dautocomplete_text_field_editor.mm185 if (observer && observer->CanPasteAndGo()) {
/external/chromium/chrome/browser/autocomplete/
Dautocomplete_edit_view_mac.h98 virtual bool CanPasteAndGo();
Dautocomplete_edit.h228 bool CanPasteAndGo(const string16& text) const;
Dautocomplete_edit_view_win.h384 bool CanPasteAndGo(const string16& text) const;
Dautocomplete_edit_view_win.cc1003 if (CanPasteAndGo(text)) in PasteAndGo()
1078 case IDS_PASTE_AND_GO: return CanPasteAndGo(GetClipboardText()); in IsCommandIdEnabled()
2412 bool AutocompleteEditViewWin::CanPasteAndGo(const string16& text) const { in CanPasteAndGo() function in AutocompleteEditViewWin
2413 return !popup_window_mode_ && model_->CanPasteAndGo(text); in CanPasteAndGo()
Dautocomplete_edit_view_mac.mm966 bool AutocompleteEditViewMac::CanPasteAndGo() { function
968 model_->CanPasteAndGo(GetClipboardText(g_browser_process->clipboard()));
972 DCHECK(CanPasteAndGo());
983 if (CanPasteAndGo())
Dautocomplete_edit.cc409 bool AutocompleteEditModel::CanPasteAndGo(const string16& text) const { in CanPasteAndGo() function in AutocompleteEditModel
Dautocomplete_edit_view_gtk.cc1487 model_->CanPasteAndGo(text_wstr)); in HandlePopulatePopup()
1779 if (model_->CanPasteAndGo(CollapseWhitespace(text, true))) { in OnPerformDropImpl()