HomeSort by relevance Sort by last modified time
    Searched full:presenter (Results 1 - 25 of 36) sorted by null

1 2

  /external/webkit/Source/WebCore/notifications/
Notification.cpp 55 ASSERT(m_notificationCenter->presenter());
56 if (m_notificationCenter->presenter()->checkPermission(context) != NotificationPresenter::PermissionAllowed) {
76 ASSERT(m_notificationCenter->presenter());
77 if (m_notificationCenter->presenter()->checkPermission(context) != NotificationPresenter::PermissionAllowed) {
114 if (m_notificationCenter->presenter())
115 m_notificationCenter->presenter()->show(this);
121 if (m_state == Idle && m_notificationCenter->presenter() && m_notificationCenter->presenter()->show(this))
136 if (m_notificationCenter->presenter())
137 m_notificationCenter->presenter()->cancel(this)
    [all...]
NotificationCenter.h 49 static PassRefPtr<NotificationCenter> create(ScriptExecutionContext* context, NotificationPresenter* presenter) { return adoptRef(new NotificationCenter(context, presenter)); }
53 if (!presenter()) {
66 if (!presenter()) {
74 NotificationPresenter* presenter() const { return m_notificationPresenter; } function in class:WebCore::NotificationCenter
NotificationCenter.cpp 43 NotificationCenter::NotificationCenter(ScriptExecutionContext* context, NotificationPresenter* presenter)
45 , m_notificationPresenter(presenter) {}
49 if (!presenter() || !scriptExecutionContext())
56 if (!presenter() || !scriptExecutionContext())
NotificationPresenter.h 63 // Informs the presenter that a Notification object has been destroyed
64 // (such as by a page transition). The presenter may continue showing
  /packages/apps/Mms/src/com/android/mms/ui/
Presenter.java 27 * An abstract message presenter.
29 public abstract class Presenter implements IModelChangedObserver {
34 public Presenter(Context context, ViewInterface view, Model model) {
PresenterFactory.java 35 public static Presenter getPresenter(String className, Context context,
45 return (Presenter) constructor.newInstance(context, view, model);
SlideshowEditActivity.java 385 Presenter presenter = PresenterFactory.getPresenter( local
387 ((SlideshowPresenter) presenter).setLocation(position);
388 presenter.present(null);
MmsThumbnailPresenter.java 36 public class MmsThumbnailPresenter extends Presenter {
SlideshowPresenter.java 43 * A basic presenter of slides.
45 public class SlideshowPresenter extends Presenter {
AttachmentEditor.java 61 private Presenter mPresenter;
  /frameworks/base/core/java/com/android/internal/view/menu/
MenuPresenter.java 47 * the presenter should attempt to do so.
53 * Initialize this presenter for the given context and menu.
54 * This method is called by MenuBuilder when a presenter is
57 * @param context Context for this presenter; used for view creation and resource management
89 * if applicable the presenter should present the submenu.
98 * closing. Presenter implementations should close the representation
108 * @return true if this presenter changed the action status of any items.
117 * @return true if this presenter expanded the action view, false otherwise.
126 * @return true if this presenter collapsed the action view, false otherwise.
137 * Returns a Parcelable describing the current state of the presenter
    [all...]
MenuBuilder.java 208 * Add a presenter to this menu. This will only hold a WeakReference;
209 * you do not need to explicitly remove a presenter, but you can using
212 * @param presenter The presenter to add
214 public void addMenuPresenter(MenuPresenter presenter) {
215 mPresenters.add(new WeakReference<MenuPresenter>(presenter));
216 presenter.initForMenu(mContext, this);
221 * Remove a presenter from this menu. That presenter will no longer
224 * @param presenter The presenter to remov
240 final MenuPresenter presenter = ref.get(); local
256 final MenuPresenter presenter = ref.get(); local
272 final MenuPresenter presenter = ref.get(); local
295 final MenuPresenter presenter = ref.get(); local
917 final MenuPresenter presenter = ref.get(); local
1044 final MenuPresenter presenter = ref.get(); local
1230 final MenuPresenter presenter = ref.get(); local
1252 final MenuPresenter presenter = ref.get(); local
    [all...]
ListMenuPresenter.java 60 * to initForMenu when this presenter is added.
113 * this presenter as an OnItemClickListener.
ActionMenuView.java 68 public void setPresenter(ActionMenuPresenter presenter) {
69 mPresenter = presenter;
  /external/webkit/Source/WebKit/chromium/src/
NotificationPresenterImpl.cpp 70 void NotificationPresenterImpl::initialize(WebNotificationPresenter* presenter)
72 m_presenter = presenter;
NotificationPresenterImpl.h 50 void initialize(WebNotificationPresenter* presenter);
  /external/webkit/Source/WebCore/workers/
WorkerThread.h 64 void setNotificationPresenter(NotificationPresenter* presenter) { m_notificationPresenter = presenter; }
  /external/webkit/Source/WebKit/win/Interfaces/
IWebUIDelegate2.idl 39 provides access to a notification presenter.
IWebDesktopNotificationsDelegate.idl 94 @abstract Notify the presenter that the object has been destroyed. The
  /external/webkit/Source/WebKit/chromium/public/
WebCommonWorkerClient.h 74 // Returns the notification presenter for this worker context. Pointer
WebNotification.h 82 // Called if the presenter goes out of scope before the notification does.
  /frameworks/base/tools/aidl/
generate_java_rpc.cpp 380 append(iface->name.data, ".Presenter"),
906 // _presenter = new Presenter(_broker, listener);
960 // the presenter class
961 EventListenerClass* presenter = new EventListenerClass(iface, listener->type); local
    [all...]
  /external/bluetooth/bluez/compat/
fakehid.txt 1 EPox Presenter
  /frameworks/av/libvideoeditor/osal/inc/
M4OSA_CoreID.h 141 /* presenter */
  /frameworks/av/libvideoeditor/vss/common/inc/
M4OSA_CoreID.h 142 /* presenter */

Completed in 4188 milliseconds

1 2