Searched refs:delegate (Results 76 - 100 of 825) sorted by relevance

1234567891011>>

/external/chromium/base/synchronization/
H A Dwaitable_event_watcher_win.cc33 Delegate* delegate) {
34 delegate_ = delegate;
52 Delegate* delegate = delegate_; local
57 delegate->OnWaitableEventSignaled(event);
32 StartWatching(WaitableEvent* event, Delegate* delegate) argument
H A Dwaitable_event_watcher_unittest.cc42 QuitDelegate delegate; local
43 watcher.StartWatching(&event, &delegate);
61 QuitDelegate delegate; local
62 watcher.StartWatching(&event, &delegate);
76 DecrementCountDelegate delegate(&counter);
78 watcher.StartWatching(&event, &delegate);
89 // Our delegate should not have fired.
103 QuitDelegate delegate; local
104 watcher.StartWatching(&event, &delegate);
119 QuitDelegate delegate; local
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dproxy_settings_dialog.h16 ProxySettingsDialog(LoginHtmlDialog::Delegate* delegate,
/external/chromium/chrome/browser/download/
H A Ddownload_status_updater.cc18 DownloadStatusUpdaterDelegate* delegate) {
19 delegates_.insert(delegate);
24 DownloadStatusUpdaterDelegate* delegate) {
25 delegates_.erase(delegate);
17 AddDelegate( DownloadStatusUpdaterDelegate* delegate) argument
23 RemoveDelegate( DownloadStatusUpdaterDelegate* delegate) argument
/external/chromium/chrome/browser/notifications/
H A Dnotification.cc11 NotificationDelegate* delegate)
16 delegate_(delegate) {
24 delegate_(notification.delegate()) {
34 delegate_ = notification.delegate();
7 Notification(const GURL& origin_url, const GURL& content_url, const string16& display_source, const string16& replace_id, NotificationDelegate* delegate) argument
/external/chromium/chrome/browser/
H A Dplugin_carbon_interpose_mac.cc23 static bool IsContainingWindowActive(const OpaquePluginRef delegate) { argument
24 return mac_plugin_interposing::GetPluginWindowHasFocus(delegate);
63 const OpaquePluginRef delegate = local
66 return delegate ? IsContainingWindowActive(delegate)
71 const OpaquePluginRef delegate = local
74 return delegate ? IsContainingWindowActive(delegate)
128 OpaquePluginRef delegate = mac_plugin_interposing::GetActiveDelegate(); local
131 WindowRef plugin_window = tracker->GetDummyWindowForDelegate(delegate);
149 OpaquePluginRef delegate = mac_plugin_interposing::GetActiveDelegate(); local
158 OpaquePluginRef delegate = mac_plugin_interposing::GetActiveDelegate(); local
[all...]
/external/chromium/chrome/browser/tab_contents/
H A Dtab_util.cc18 return render_view_host->delegate()->GetAsTabContents();
/external/chromium/chrome/browser/ui/gtk/infobars/
H A Dinfobar_container_gtk.h37 void RemoveDelegate(InfoBarDelegate* delegate);
54 // Makes the calls to show an arrow for |delegate| (either on the browser
56 void ShowArrowForDelegate(InfoBarDelegate* delegate, bool animate);
58 // Adds an InfoBar for the specified delegate, in response to a notification
60 void AddInfoBar(InfoBarDelegate* delegate, bool animate);
62 // Removes an InfoBar for the specified delegate, in response to a
65 void RemoveInfoBar(InfoBarDelegate* delegate, bool animate);
/external/chromium/chrome/browser/ui/search_engines/
H A Dtemplate_url_fetcher_ui_callbacks.cc33 if (!source_ || !source_->delegate() || !tab_contents_)
36 source_->delegate()->ConfirmSetDefaultSearchProvider(
46 if (!source_ || !source_->delegate())
49 source_->delegate()->ConfirmAddSearchProvider(owned_template_url.release(),
/external/guava/guava/src/com/google/common/collect/
H A DForwardingListMultimap.java41 @Override protected abstract ListMultimap<K, V> delegate(); method in class:ForwardingListMultimap
44 return delegate().get(key);
48 return delegate().removeAll(key);
52 return delegate().replaceValues(key, values);
H A DForwardingMapEntry.java35 * <i>indiscriminately</i> to the methods of the delegate. For example,
62 @Override protected abstract Map.Entry<K, V> delegate(); method in class:ForwardingMapEntry
66 return delegate().getKey();
71 return delegate().getValue();
76 return delegate().setValue(value);
80 return delegate().equals(object);
84 return delegate().hashCode();
H A DForwardingMap.java37 * <i>indiscriminately</i> to the methods of the delegate. For example,
66 @Override protected abstract Map<K, V> delegate(); method in class:ForwardingMap
70 return delegate().size();
75 return delegate().isEmpty();
80 return delegate().remove(object);
85 delegate().clear();
90 return delegate().containsKey(key);
95 return delegate().containsValue(value);
100 return delegate().get(key);
105 return delegate()
[all...]
/external/webkit/Source/WebKit/mac/WebView/
H A DWebDelegateImplementationCaching.mm72 // declared inside a WebView category to get direct access to the delegate data memebers,
82 static inline id CallDelegate(WebView *self, id delegate, SEL selector)
84 if (!delegate || ![delegate respondsToSelector:selector])
87 return objc_msgSend(delegate, selector, self);
89 return objc_msgSend(delegate, selector, self);
96 static inline id CallDelegate(WebView *self, id delegate, SEL selector, id object)
98 if (!delegate || ![delegate respondsToSelector:selector])
101 return objc_msgSend(delegate, selecto
[all...]
/external/chromium/base/threading/
H A Dplatform_thread_win.cc27 PlatformThread::Delegate* delegate; member in struct:base::__anon1633::ThreadParams
33 PlatformThread::Delegate* delegate = thread_params->delegate; local
37 delegate->ThreadMain();
45 PlatformThread::Delegate* delegate,
56 params->delegate = delegate;
116 bool PlatformThread::Create(size_t stack_size, Delegate* delegate, argument
119 return CreateThreadInternal(stack_size, delegate, thread_handle);
123 bool PlatformThread::CreateNonJoinable(size_t stack_size, Delegate* delegate) { argument
44 CreateThreadInternal(size_t stack_size, PlatformThread::Delegate* delegate, PlatformThreadHandle* out_thread_handle) argument
[all...]
/external/webkit/Source/WebKit/mac/Misc/
H A DWebDownload.mm52 delegate:(id)delegate
55 delegate:(id)delegate
95 selector == @selector(download:shouldBeginChildDownloadOfSource:delegate:) ||
180 - (NSURLRequest *)download:(NSURLDownload *)download shouldBeginChildDownloadOfSource:(NSURLRequest *)child delegate:(id *)childDelegate
182 return [realDelegate download:download shouldBeginChildDownloadOfSource:child delegate:childDelegate];
194 - (void)_setRealDelegate:(id)delegate
198 [_webInternal setRealDelegate:delegate];
200 ASSERT(_webInternal == delegate);
[all...]
/external/chromium/chrome/browser/chromeos/notifications/
H A Dsystem_notification_factory.h25 NotificationDelegate* delegate);
31 NotificationDelegate* delegate);
/external/chromium/chrome/browser/instant/
H A Dinstant_unload_handler.h34 void Activate(TabContentsDelegateImpl* delegate);
37 void Destroy(TabContentsDelegateImpl* delegate);
/external/chromium/chrome/browser/ui/cocoa/location_bar/
H A Dautocomplete_text_field_editor.h42 // The delegate is always an AutocompleteTextField*. Override the superclass
44 - (AutocompleteTextField*)delegate;
45 - (void)setDelegate:(AutocompleteTextField*)delegate;
/external/chromium/chrome/browser/ui/tabs/
H A Dtab_menu_model.h19 TabMenuModel(ui::SimpleMenuModel::Delegate* delegate, bool is_pinned);
20 TabMenuModel(ui::SimpleMenuModel::Delegate* delegate,
/external/chromium/chrome/browser/ui/views/infobars/
H A Dconfirm_infobar.cc20 ConfirmInfoBar::ConfirmInfoBar(ConfirmInfoBarDelegate* delegate) argument
21 : InfoBarView(delegate),
66 ConfirmInfoBarDelegate* delegate = GetDelegate(); local
67 label_ = CreateLabel(delegate->GetMessageText());
70 if (delegate->GetButtons() & ConfirmInfoBarDelegate::BUTTON_OK) {
72 delegate->GetButtonLabel(ConfirmInfoBarDelegate::BUTTON_OK),
73 delegate->NeedElevation(ConfirmInfoBarDelegate::BUTTON_OK));
77 if (delegate->GetButtons() & ConfirmInfoBarDelegate::BUTTON_CANCEL) {
79 delegate->GetButtonLabel(ConfirmInfoBarDelegate::BUTTON_CANCEL),
80 delegate
98 ConfirmInfoBarDelegate* delegate = GetDelegate(); local
[all...]
H A Dtranslate_infobar_base.cc47 TranslateInfoBarBase::TranslateInfoBarBase(TranslateInfoBarDelegate* delegate) argument
48 : InfoBarView(delegate),
81 TranslateInfoBarDelegate* delegate = GetDelegate(); local
82 button->SetText(UTF16ToWideHack(delegate->GetLanguageDisplayableNameAt(
84 delegate->original_language_index() :
85 delegate->target_language_index())));
92 return delegate()->AsTranslateInfoBarDelegate();
98 const InfoBarContainer::Delegate* delegate = container_delegate(); local
99 if (delegate)
100 error_background_.set_separator_color(delegate
[all...]
/external/chromium/chrome/browser/ui/gtk/
H A Dconstrained_window_gtk.cc32 TabContents* owner, ConstrainedWindowGtkDelegate* delegate)
34 delegate_(delegate),
38 DCHECK(delegate);
39 GtkWidget* dialog = delegate->GetWidgetRoot();
48 if (delegate->ShouldHaveBorderPadding()) {
55 if (delegate->GetBackgroundColor(&background)) {
107 if ((!owner_->delegate() ||
108 owner_->delegate()->ShouldFocusConstrainedWindow()) &&
152 ConstrainedWindowGtkDelegate* delegate) {
153 return new ConstrainedWindowGtk(parent, delegate);
31 ConstrainedWindowGtk( TabContents* owner, ConstrainedWindowGtkDelegate* delegate) argument
150 CreateConstrainedDialog( TabContents* parent, ConstrainedWindowGtkDelegate* delegate) argument
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DJdkFutureAdapters.java83 * <p>If the delegate future is interrupted or throws an unexpected unchecked
102 // This allows us to only start up a thread waiting on the delegate future
106 // The delegate future.
107 private final Future<V> delegate; field in class:JdkFutureAdapters.ListenableFutureAdapter
109 ListenableFutureAdapter(Future<V> delegate) { argument
110 this(delegate, defaultAdapterExecutor);
113 ListenableFutureAdapter(Future<V> delegate, Executor adapterExecutor) { argument
114 this.delegate = checkNotNull(delegate);
119 protected Future<V> delegate() { method in class:JdkFutureAdapters.ListenableFutureAdapter
[all...]
/external/webkit/Tools/Scripts/webkitpy/tool/bot/
H A Dqueueengine_unittest.py123 def __init__(self, delegate):
124 QueueEngine.__init__(self, "fast-queue", delegate, threading.Event())
135 delegate = LoggingDelegate(self)
136 self._run_engine(delegate)
137 self.assertEquals(delegate.stop_message, "Delegate terminated queue.")
138 self.assertEquals(delegate._callbacks, LoggingDelegate.expected_callbacks)
143 delegate = RaisingDelegate(self, ScriptError(exit_code=3))
144 self._run_engine(delegate)
150 self.assertEquals(delegate._callbacks, expected_callbacks)
153 delegate
[all...]
/external/chromium/chrome/browser/extensions/
H A Duser_script_listener_unittest.cc143 TestURLRequest* StartTestRequest(net::URLRequest::Delegate* delegate, argument
145 TestURLRequest* request = new TestURLRequest(GURL(url), delegate);
180 TestDelegate delegate; local
181 scoped_ptr<TestURLRequest> request(StartTestRequest(&delegate, kMatchingUrl));
189 EXPECT_EQ(kTestData, delegate.data_received());
196 TestDelegate delegate; local
197 scoped_ptr<TestURLRequest> request(StartTestRequest(&delegate, kMatchingUrl));
212 EXPECT_EQ(kTestData, delegate.data_received());
216 TestDelegate delegate; local
217 scoped_ptr<TestURLRequest> request(StartTestRequest(&delegate, kMatchingUr
230 TestDelegate delegate; local
[all...]

Completed in 638 milliseconds

1234567891011>>