Home
last modified time | relevance | path

Searched refs:CanPasteAndGo (Results 1 – 21 of 21) 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_org/chrome/browser/ui/cocoa/location_bar/
Dautocomplete_text_field_unittest_helper.h44 MOCK_METHOD0(CanPasteAndGo, bool());
Dautocomplete_text_field.h59 virtual bool CanPasteAndGo() = 0;
Dautocomplete_text_field_editor_unittest.mm292 // Test that the menu validation works as expected when CanPasteAndGo().
296 EXPECT_CALL(field_observer_, CanPasteAndGo()).WillOnce(Return(true));
312 // Test that the menu validation works as expected when !CanPasteAndGo().
316 EXPECT_CALL(field_observer_, CanPasteAndGo()).WillOnce(Return(false));
Dautocomplete_text_field_editor.mm518 return 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()
/external/chromium_org/chrome/browser/ui/cocoa/omnibox/
Domnibox_view_mac.h79 virtual bool CanPasteAndGo() OVERRIDE;
Domnibox_view_mac.mm872 bool OmniboxViewMac::CanPasteAndGo() { function
873 return model()->CanPasteAndGo(GetClipboardText());
878 DCHECK(model()->CanPasteAndGo(text));
885 if (model()->CanPasteAndGo(text))
/external/chromium_org/chrome/browser/ui/views/omnibox/
Domnibox_view_views.cc811 if (model()->CanPasteAndGo(text)) { in OnDrop()
820 if (model()->CanPasteAndGo(collapsed_text)) in OnDrop()
856 return !read_only() && model()->CanPasteAndGo(GetClipboardText()); in IsCommandIdEnabled()
/external/chromium_org/chrome/browser/ui/omnibox/
Domnibox_edit_model.h179 bool CanPasteAndGo(const base::string16& text) const;
Domnibox_edit_model.cc580 bool OmniboxEditModel::CanPasteAndGo(const base::string16& text) const { in CanPasteAndGo() function in OmniboxEditModel
590 DCHECK(CanPasteAndGo(text)); in PasteAndGo()
/external/chromium_org/chrome/browser/ui/gtk/omnibox/
Domnibox_view_gtk.cc1240 model()->CanPasteAndGo(sanitized_text_for_paste_and_go_)); in HandlePopulatePopup()
1686 if (model()->CanPasteAndGo(sanitized_string)) { in OnPerformDropImpl()