/external/chromium_org/sync/sessions/ |
H A D | sync_session.h | 56 // delegate is the only thing that can give an authoritative answer for 58 // as the delegate ensures no session is started if syncing is silenced. 99 Delegate* delegate); 117 Delegate* delegate() const { return delegate_; } function in class:syncer::sessions::SyncSession 126 SyncSession(SyncSessionContext* context, Delegate* delegate); 131 // The delegate for this session, must never be NULL.
|
/external/chromium_org/ui/accessibility/platform/ |
H A D | ax_platform_node_base.cc | 18 void AXPlatformNodeBase::Init(AXPlatformNodeDelegate* delegate) { argument 19 delegate_ = delegate;
|
/external/chromium_org/ui/app_list/ |
H A D | app_list_menu.cc | 16 AppListMenu::AppListMenu(AppListViewDelegate* delegate) argument 18 delegate_(delegate), 19 users_(delegate->GetUsers()) {
|
/external/chromium_org/ui/app_list/cocoa/ |
H A D | apps_search_results_controller.h | 47 @property(assign, nonatomic) NSObject<AppsSearchResultsDelegate>* delegate; variable
|
/external/chromium_org/ui/base/models/ |
H A D | simple_menu_model.h | 54 // Notifies the delegate that the item with the specified command id was 63 // Notifies the delegate that the menu is about to show. 66 // Notifies the delegate that the menu has closed. 72 explicit SimpleMenuModel(Delegate* delegate); 172 void set_delegate(Delegate* delegate) { delegate_ = delegate; } argument 173 Delegate* delegate() { return delegate_; } function in class:ui::SimpleMenuModel 192 // Notify the delegate that the menu is closed.
|
/external/chromium_org/ui/gfx/animation/ |
H A D | animation_container_unittest.cc | 46 explicit TestAnimation(AnimationDelegate* delegate) argument 47 : LinearAnimation(20, 20, delegate) { 67 TestAnimationDelegate delegate; local 69 scoped_ptr<Animation> animation(new TestAnimation(&delegate)); 97 // Run the message loop the delegate quits the message loop when notified. 122 // Run the message loop. The delegate quits the message loop when notified.
|
H A D | animation_unittest.cc | 28 RunAnimation(int frame_rate, AnimationDelegate* delegate) argument 29 : LinearAnimation(frame_rate, delegate) { 43 CancelAnimation(int duration, int frame_rate, AnimationDelegate* delegate) argument 44 : LinearAnimation(duration, frame_rate, delegate) { 58 EndAnimation(int duration, int frame_rate, AnimationDelegate* delegate) argument 59 : LinearAnimation(duration, frame_rate, delegate) { 107 // right delegate methods invoked. 118 // Runs an animation with a delegate that deletes the animation in end. 120 DeletingAnimationDelegate delegate; local 121 RunAnimation* animation = new RunAnimation(150, &delegate); [all...] |
H A D | slide_animation_unittest.cc | 88 // Tests that delegate is not notified when animation is running and is deleted. 91 TestAnimationDelegate delegate; local 92 scoped_ptr<SlideAnimation> animation(new SlideAnimation(&delegate)); 100 // Make sure the delegate wasn't notified. 101 EXPECT_FALSE(delegate.finished()); 102 EXPECT_FALSE(delegate.canceled());
|
/external/chromium_org/ui/gfx/ |
H A D | screen.cc | 47 void Screen::SetScreenTypeDelegate(ScreenTypeDelegate* delegate) { argument 48 g_screen_type_delegate_ = delegate;
|
/external/chromium_org/ui/message_center/ |
H A D | message_center_tray.h | 35 MessageCenterTray(MessageCenterTrayDelegate* delegate, 70 MessageCenterTrayDelegate* delegate() { return delegate_; } function in class:message_center::MessageCenterTray
|
/external/chromium_org/ui/ozone/platform/dri/ |
H A D | dri_window_delegate_manager.cc | 20 scoped_ptr<DriWindowDelegate> delegate) { 22 delegate_map_.add(widget, delegate.Pass()); 28 scoped_ptr<DriWindowDelegate> delegate = delegate_map_.take_and_erase(widget); local 29 DCHECK(delegate) << "Attempting to remove non-existing delegate for " 31 return delegate.Pass(); 40 NOTREACHED() << "Attempting to get non-existing delegate for " << widget; 18 AddWindowDelegate( gfx::AcceleratedWidget widget, scoped_ptr<DriWindowDelegate> delegate) argument
|
/external/chromium_org/ui/views/ime/ |
H A D | input_method_base.h | 32 virtual void SetDelegate(internal::InputMethodDelegate* delegate) OVERRIDE; 44 internal::InputMethodDelegate* delegate() const { return delegate_; } function in class:views::InputMethodBase
|
/external/chromium_org/ui/views/widget/desktop_aura/ |
H A D | desktop_capture_client.cc | 56 aura::client::CaptureDelegate* delegate = root_->GetHost()->dispatcher(); local 57 delegate->UpdateCapture(old_capture_window, new_capture_window); 61 delegate->ReleaseNativeCapture(); 63 delegate->SetNativeCapture(); 71 aura::client::CaptureDelegate* delegate = local 73 delegate->OnOtherRootGotCapture();
|
/external/chromium_org/ui/views/widget/ |
H A D | root_view_targeter.cc | 15 RootViewTargeter::RootViewTargeter(ViewTargeterDelegate* delegate, argument 17 : ViewTargeter(delegate), root_view_(root_view) {
|
/external/chromium_org/ui/wm/core/ |
H A D | accelerator_filter.cc | 40 AcceleratorFilter::AcceleratorFilter(scoped_ptr<AcceleratorDelegate> delegate) argument 41 : delegate_(delegate.Pass()) {
|
H A D | nested_accelerator_controller.cc | 16 NestedAcceleratorDelegate* delegate) 17 : dispatcher_delegate_(delegate) { 18 DCHECK(delegate); 15 NestedAcceleratorController( NestedAcceleratorDelegate* delegate) argument
|
H A D | nested_accelerator_dispatcher_linux.cc | 50 explicit NestedAcceleratorDispatcherLinux(NestedAcceleratorDelegate* delegate) argument 51 : NestedAcceleratorDispatcher(delegate), 98 NestedAcceleratorDelegate* delegate, 101 new NestedAcceleratorDispatcherLinux(delegate)); 97 Create( NestedAcceleratorDelegate* delegate, base::MessagePumpDispatcher* nested_dispatcher) argument
|
H A D | nested_accelerator_dispatcher_win.cc | 31 NestedAcceleratorDispatcherWin(NestedAcceleratorDelegate* delegate, argument 33 : NestedAcceleratorDispatcher(delegate), nested_dispatcher_(nested) {} 68 NestedAcceleratorDelegate* delegate, 71 new NestedAcceleratorDispatcherWin(delegate, nested_dispatcher)); 67 Create( NestedAcceleratorDelegate* delegate, MessagePumpDispatcher* nested_dispatcher) argument
|
/external/droiddriver/src/com/google/android/droiddriver/scroll/ |
H A D | Scrollers.java | 34 * Augments the delegate {@link ScrollStepStrategy) - after a successful 47 /** Convenience method to wrap {@code delegate} with this class */ 48 public static ScrollStepStrategy wrap(final ScrollStepStrategy delegate) { argument 51 protected ScrollStepStrategy delegate() { 52 return delegate;
|
/external/guava/guava/src/com/google/common/cache/ |
H A D | ForwardingLoadingCache.java | 44 protected abstract LoadingCache<K, V> delegate(); method in class:ForwardingLoadingCache 48 return delegate().get(key); 53 return delegate().getUnchecked(key); 58 return delegate().getAll(keys); 63 return delegate().apply(key); 68 delegate().refresh(key); 80 private final LoadingCache<K, V> delegate; field in class:ForwardingLoadingCache.SimpleForwardingLoadingCache 82 protected SimpleForwardingLoadingCache(LoadingCache<K, V> delegate) { argument 83 this.delegate = Preconditions.checkNotNull(delegate); 87 protected final LoadingCache<K, V> delegate() { method in class:ForwardingLoadingCache.SimpleForwardingLoadingCache [all...] |
/external/guava/guava/src/com/google/common/collect/ |
H A D | ForwardingConcurrentMap.java | 39 @Override protected abstract ConcurrentMap<K, V> delegate(); method in class:ForwardingConcurrentMap 43 return delegate().putIfAbsent(key, value); 48 return delegate().remove(key, value); 53 return delegate().replace(key, value); 58 return delegate().replace(key, oldValue, newValue);
|
H A D | ForwardingListIterator.java | 39 @Override protected abstract ListIterator<E> delegate(); method in class:ForwardingListIterator 43 delegate().add(element); 48 return delegate().hasPrevious(); 53 return delegate().nextIndex(); 58 return delegate().previous(); 63 return delegate().previousIndex(); 68 delegate().set(element);
|
H A D | ForwardingListMultimap.java | 41 @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 D | ForwardingMapEntry.java | 35 * <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 D | ForwardingQueue.java | 32 * <b>indiscriminately</b> to the methods of the delegate. For example, 52 @Override protected abstract Queue<E> delegate(); method in class:ForwardingQueue 56 return delegate().offer(o); 61 return delegate().poll(); 66 return delegate().remove(); 71 return delegate().peek(); 76 return delegate().element();
|