HomeSort by relevance Sort by last modified time
    Searched refs:delegate (Results 26 - 50 of 192) sorted by null

12 3 4 5 6 7 8

  /external/guava/src/com/google/common/util/concurrent/
AbstractIdleService.java 39 private final Service delegate = new AbstractService() { field in class:AbstractIdleService
102 return delegate.start();
106 return delegate.startAndWait();
110 return delegate.isRunning();
114 return delegate.state();
118 return delegate.stop();
122 return delegate.stopAndWait();
  /external/chromium/base/
directory_watcher.h 17 // The delegate will get called whenever a file is added or changed in the
21 class Delegate {
23 virtual ~Delegate() {}
33 // if |backend_loop| is NULL. If |recursive| is true, the delegate will be
41 bool Watch(const FilePath& path, Delegate* delegate,
43 return impl_->Watch(path, delegate, backend_loop, recursive);
49 virtual bool Watch(const FilePath& path, Delegate* delegate,
file_descriptor_shuffle.h 28 // A Delegate which performs the actions required to perform an injective
70 InjectionDelegate* delegate);
73 FileDescriptorTableInjection delegate; local
74 return PerformInjectiveMultimap(map, &delegate);
directory_watcher_stub.cc 12 virtual bool Watch(const FilePath& path, DirectoryWatcher::Delegate* delegate,
message_pump_default.cc 17 void MessagePumpDefault::Run(Delegate* delegate) {
23 bool did_work = delegate->DoWork();
27 did_work |= delegate->DoDelayedWork(&delayed_work_time_);
34 did_work = delegate->DoIdleWork();
54 // other than service each delegate method.
waitable_event_watcher_win.cc 33 Delegate* delegate) {
34 delegate_ = delegate;
52 Delegate* delegate = delegate_; local
57 delegate->OnWaitableEventSignaled(event);
platform_thread_posix.cc 24 PlatformThread::Delegate* delegate = local
25 static_cast<PlatformThread::Delegate*>(closure);
26 delegate->ThreadMain();
77 PlatformThread::Delegate* delegate,
96 success = !pthread_create(thread_handle, &attributes, ThreadFunc, delegate);
105 bool PlatformThread::Create(size_t stack_size, Delegate* delegate,
108 delegate, thread_handle)
    [all...]
platform_thread_win.cc 24 PlatformThread::Delegate* delegate = local
25 static_cast<PlatformThread::Delegate*>(closure);
26 delegate->ThreadMain();
68 bool PlatformThread::Create(size_t stack_size, Delegate* delegate,
83 NULL, stack_size, ThreadFunc, delegate, flags, NULL);
88 bool PlatformThread::CreateNonJoinable(size_t stack_size, Delegate* delegate) {
90 bool result = Create(stack_size, delegate, &thread_handle)
    [all...]
waitable_event_watcher_unittest.cc 16 class QuitDelegate : public WaitableEventWatcher::Delegate {
23 class DecrementCountDelegate : public WaitableEventWatcher::Delegate {
43 QuitDelegate delegate; local
44 watcher.StartWatching(&event, &delegate);
62 QuitDelegate delegate; local
63 watcher.StartWatching(&event, &delegate);
77 DecrementCountDelegate delegate(&counter);
79 watcher.StartWatching(&event, &delegate);
90 // Our delegate should not have fired.
104 QuitDelegate delegate; local
120 QuitDelegate delegate; local
    [all...]
object_watcher_unittest.cc 13 class QuitDelegate : public base::ObjectWatcher::Delegate {
20 class DecrementCountDelegate : public base::ObjectWatcher::Delegate {
42 QuitDelegate delegate; local
43 bool ok = watcher.StartWatching(event, &delegate);
63 QuitDelegate delegate; local
64 bool ok = watcher.StartWatching(event, &delegate);
79 DecrementCountDelegate delegate(&counter);
84 bool ok = watcher.StartWatching(event, &delegate);
96 // Our delegate should not have fired.
112 QuitDelegate delegate; local
    [all...]
message_pump.h 17 // these delegate methods are used.
18 class Delegate {
20 virtual ~Delegate() {}
47 // messages as well as for giving cycles to the delegate periodically. The
48 // message pump should take care to mix delegate callbacks with native
102 virtual void Run(Delegate* delegate) = 0;
message_pump_default.h 20 virtual void Run(Delegate* delegate);
message_pump_glib.h 57 virtual void RunWithDispatcher(Delegate* delegate, Dispatcher* dispatcher);
59 virtual void Run(Delegate* delegate) { RunWithDispatcher(delegate, NULL); }
85 Delegate* delegate; member in struct:base::MessagePumpForUI::RunState
directory_watcher_unittest.cc 122 class TestDelegate : public DirectoryWatcher::Delegate {
160 TestDelegate delegate(this);
161 ASSERT_TRUE(watcher.Watch(test_dir_, &delegate, NULL, false));
175 TestDelegate delegate(this);
176 ASSERT_TRUE(watcher.Watch(test_dir_, &delegate, NULL, false));
190 TestDelegate delegate(this);
191 ASSERT_TRUE(watcher.Watch(test_dir_, &delegate, NULL, false));
201 TestDelegate delegate(this);
205 ASSERT_TRUE(watcher.Watch(test_dir_, &delegate, NULL, false));
221 TestDelegate delegate(this)
    [all...]
file_descriptor_shuffle.cc 16 InjectionDelegate* delegate) {
34 if (!delegate->Duplicate(&temp_fd, i->dest))
53 if (!delegate->Move(i->source, i->dest))
58 delegate->Close(i->source);
63 delegate->Close(*i);
message_pump_mac.h 12 // of the machinery necessary to dispatch events to a delegate, but does not
59 virtual void Run(Delegate* delegate);
60 virtual void DoRun(Delegate* delegate) = 0;
167 // (weak) Delegate passed as an argument to the innermost Run call.
168 Delegate* delegate_;
190 // must wait until a delegate is available to process it. This can happen
193 // work on entry and redispatch it as needed once a delegate is available.
205 virtual void DoRun(Delegate* delegate)
    [all...]
  /external/webkit/JavaScriptCore/yarr/
RegexParser.h 48 template<class Delegate>
52 friend const char* parse(FriendDelegate& delegate, const UString& pattern, unsigned backReferenceLimit);
73 * implements enough of the delegate interface such that it can be passed to
79 CharacterClassParserDelegate(Delegate& delegate, ErrorCode& err)
80 : m_delegate(delegate)
169 // parseEscape() should never call these delegate methods when
184 Delegate& m_delegate;
194 Parser(Delegate& delegate, const UString& pattern, unsigned backReferenceLimit
    [all...]
  /external/webkit/WebKit/mac/Misc/
WebDownload.mm 52 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...]
WebIconDatabaseInternal.h 37 id delegate; member in namespace:NSObject
  /external/webkit/WebKit/mac/WebView/
WebDelegateImplementationCaching.mm 72 // 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, selector, self, object)
    [all...]
WebVideoFullscreenHUDWindowController.h 52 - (id <WebVideoFullscreenHUDWindowControllerDelegate>)delegate;
53 - (void)setDelegate:(id <WebVideoFullscreenHUDWindowControllerDelegate>)delegate;
  /external/webkit/WebKitTools/Scripts/webkitpy/
queueengine_unittest.py 113 def __init__(self, delegate):
114 QueueEngine.__init__(self, "fast-queue", delegate)
125 delegate = LoggingDelegate(self)
126 work_queue = QueueEngine("trivial-queue", delegate)
128 self.assertEquals(delegate._callbacks, LoggingDelegate.expected_callbacks)
133 delegate = ThrowErrorDelegate(self, 3)
134 work_queue = QueueEngine("error-queue", delegate)
141 self.assertEquals(delegate._callbacks, expected_callbacks)
144 delegate = ThrowErrorDelegate(self, QueueEngine.handled_error_code)
145 work_queue = QueueEngine("handled-error-queue", delegate)
    [all...]
  /external/guava/src/com/google/common/collect/
ImmutableClassToInstanceMap.java 120 private final ImmutableMap<Class<? extends B>, B> delegate; field in class:ImmutableClassToInstanceMap
123 ImmutableMap<Class<? extends B>, B> delegate) {
124 this.delegate = delegate;
127 @Override protected Map<Class<? extends B>, B> delegate() { method in class:ImmutableClassToInstanceMap
128 return delegate;
133 return (T) delegate.get(type);
  /external/chromium/net/base/
directory_lister_unittest.cc 62 ListerDelegate delegate; local
64 new net::DirectoryLister(path, &delegate);
70 EXPECT_EQ(delegate.error(), net::OK);
77 ListerDelegate delegate; local
79 new net::DirectoryLister(path, &delegate);
86 EXPECT_EQ(delegate.error(), net::ERR_ABORTED);
  /external/webkit/WebKit/mac/WebInspector/
WebNodeHighlight.h 44 - (void)setDelegate:(id)delegate;
45 - (id)delegate;

Completed in 1972 milliseconds

12 3 4 5 6 7 8