OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NotificationWrapper
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebKit/qt/WebCoreSupport/
NotificationPresenterClientQt.h
54
class
NotificationWrapper
: public QObject, public QWebNotificationData {
57
NotificationWrapper
();
58
~
NotificationWrapper
() {}
61
void close(Timer<
NotificationWrapper
>*);
77
Timer<
NotificationWrapper
> m_closeTimer;
82
typedef QHash <Notification*,
NotificationWrapper
*> NotificationsQueue;
97
void cancel(
NotificationWrapper
*);
107
Notification* notificationForWrapper(const
NotificationWrapper
*) const;
108
void notificationClicked(
NotificationWrapper
*);
NotificationPresenterClientQt.cpp
70
NotificationWrapper
::
NotificationWrapper
()
71
: m_closeTimer(this, &
NotificationWrapper
::close)
82
void
NotificationWrapper
::close(Timer<
NotificationWrapper
>*)
89
const QString
NotificationWrapper
::title() const
99
const QString
NotificationWrapper
::message() const
109
const QByteArray
NotificationWrapper
::iconData() const
122
const QUrl
NotificationWrapper
::openerPageUrl() const
135
void
NotificationWrapper
::notificationClicked(
[
all
...]
/packages/apps/Calendar/src/com/android/calendar/alerts/
AlertService.java
116
public static class
NotificationWrapper
{
121
ArrayList<
NotificationWrapper
> mNw;
123
public
NotificationWrapper
(Notification n, int notificationId, long eventId,
134
public
NotificationWrapper
(Notification n) {
138
public void add(
NotificationWrapper
nw) {
140
mNw = new ArrayList<
NotificationWrapper
>();
170
public void notify(int id,
NotificationWrapper
nw) {
175
public void notify(String tag, int id,
NotificationWrapper
nw) {
321
NotificationWrapper
notification;
683
NotificationWrapper
notification = AlertReceiver.makeExpandingNotification(context
[
all
...]
Completed in 896 milliseconds