HomeSort by relevance Sort by last modified time
    Searched refs:notification (Results 176 - 200 of 262) sorted by null

1 2 3 4 5 6 78 91011

  /external/chromium/chrome/browser/notifications/
balloon_collection_impl.cc 11 #include "chrome/browser/notifications/notification.h"
18 // Portion of the screen allotted for notifications. When notification balloons
44 void BalloonCollectionImpl::Add(const Notification& notification,
46 Balloon* new_balloon = MakeBalloon(notification, profile);
  /external/junit/src/org/junit/runners/
ParentRunner.java 30 import org.junit.runner.notification.RunNotifier;
31 import org.junit.runner.notification.StoppedByUserException;
  /external/webkit/Source/WebCore/rendering/
RenderWidget.cpp 247 void RenderWidget::notifyWidget(WidgetNotification notification)
250 m_widget->notifyWidget(notification);
  /frameworks/base/services/java/com/android/server/
SystemServer.java 275 NotificationManagerService notification = null; local
460 * MountService has a few dependencies: Notification Manager and
469 Slog.i(TAG, "Notification Manager");
470 notification = new NotificationManagerService(context, statusBar, lights);
471 ServiceManager.addService(Context.NOTIFICATION_SERVICE, notification);
472 networkPolicy.bindNotificationManager(notification);
474 reportWtf("starting Notification Manager", e);
688 if (notification != null) {
690 notification.systemReady();
692 reportWtf("making Notification Service ready", e)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBar.java 28 import android.app.Notification;
123 private static final int HIDE_ICONS_BELOW_SCORE = Notification.PRIORITY_LOW * NOTIFICATION_PRIORITY_MULTIPLIER;
167 View mNotificationPanel; // the sliding/resizing panel within the notification window
454 mLocationController = new LocationController(mContext); // will post a notification
719 public void addNotification(IBinder key, StatusBarNotification notification) {
720 /* if (DEBUG) */ Slog.d(TAG, "addNotification score=" + notification.score);
721 StatusBarIconView iconView = addNotificationViews(key, notification);
737 notification.notification.intruderView != null)) {
738 Slog.d(TAG, "Presenting high-priority notification");
    [all...]
  /external/chromium/chrome/browser/resources/
new_new_tab.js 972 // Notification
979 * notification slot at the top of the NTP. A close button ("x") will be
986 * notification.
989 // TODO(arv): Create a notification component.
990 var notificationElement = $('notification');
997 document.body.classList.add('notification-shown');
1010 if (notification.classList.contains('promo'))
1016 notification.classList.remove('first-run');
1017 notification.classList.remove('promo');
1021 var closeButton = notificationElement.querySelector('#notification-close')
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
RIL.java 2895 SuppServiceNotification notification = new SuppServiceNotification(); local
3384 CdmaCallWaitingNotification notification = new CdmaCallWaitingNotification(); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapMakerInternalMapTest.java 295 public void onRemoval(RemovalNotification<Object, Object> notification) {}
427 RemovalNotification<K, V> notification = listener.remove(); local
428 assertSame(key, notification.getKey());
429 assertSame(value, notification.getValue());
430 assertSame(cause, notification.getCause());
1208 RemovalNotification<K, V> notification = map.removalNotificationQueue.poll(); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
CacheExpirationTest.java 180 public void onRemoval(RemovalNotification<Integer, AtomicInteger> notification) {
181 if (notification.wasEvicted()) {
183 totalSum.addAndGet(notification.getValue().get());
LocalCacheTest.java 630 public void onRemoval(RemovalNotification<Object, Object> notification) {
870 RemovalNotification<K, V> notification = listener.remove(); local
871 assertSame(key, notification.getKey());
872 assertSame(value, notification.getValue());
873 assertSame(cause, notification.getCause());
1253 RemovalNotification<Object, Object> notification = listener.remove(); local
1254 assertEquals(immutableEntry(key, value2), notification); local
1281 assertEquals(immutableEntry(key, value3), notification); local
1295 assertEquals(immutableEntry(key, null), notification); local
1776 RemovalNotification<K, V> notification = map.removalNotificationQueue.poll(); local
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/lcml/src/
LCML_DspCodec.c 188 * The memory is allocated and the dsp node is created. Add notification object
413 struct DSP_NOTIFICATION* notification; local
416 LCML_MALLOC(notification,sizeof(struct DSP_NOTIFICATION),struct DSP_NOTIFICATION)
417 if(notification == NULL)
422 memset(notification, 0, sizeof(struct DSP_NOTIFICATION));
424 status = DSPNode_RegisterNotify(phandle->dspCodec->hNode, DSP_NODEMESSAGEREADY, DSP_SIGNALEVENT, notification);
426 phandle->g_aNotificationObjects[0] = notification;
512 * The memory is allocated and the dsp node is created. Add notification object
722 struct DSP_NOTIFICATION* notification; local
725 LCML_MALLOC(notification,sizeof(struct DSP_NOTIFICATION),struct DSP_NOTIFICATION)
    [all...]
  /external/webkit/Source/WebKit/mac/Misc/
WebIconDatabase.mm 83 - (void)_resetCachedWebPreferences:(NSNotification *)notification;
331 - (void)_applicationWillTerminate:(NSNotification *)notification
366 - (void)_resetCachedWebPreferences:(NSNotification *)notification
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
PDFViewController.mm 201 - (void)_scaleOrDisplayModeOrPageChanged:(NSNotification *)notification
203 ASSERT_ARG(notification, [notification object] == _pdfView);
  /external/chromium/chrome/browser/
background_contents_service.cc 17 #include "chrome/browser/notifications/notification.h"
100 Notification notification(
103 g_browser_process->notification_ui_manager()->Add(notification, profile);
278 // an EXTENSION_UNLOADED notification. This UNLOADED signal causes all the
347 // unregistered via the EXTENSIONS_UNLOADED notification, unless there's a
455 // Register the BackgroundContents internally, then send out a notification
  /external/chromium/chrome/browser/ui/gtk/notifications/
balloon_view_gtk.cc 18 #include "chrome/browser/notifications/notification.h"
49 // Margin, in pixels, between the notification frame and the contents
50 // of the notification.
213 balloon->notification().display_source());
259 // Create a label for the source of the notification and add it to the
347 balloon_->notification().content_url());
408 // HTML view cut off the roundedness of the notification window.
  /external/webkit/Tools/MiniBrowser/mac/
AppDelegate.m 211 - (void)applicationWillTerminate:(NSNotification *)notification
  /external/webkit/Source/WebCore/html/
HTMLMediaElement.h 157 void deliverNotification(MediaPlayerProxyNotificationType notification);
  /external/webkit/Source/WebCore/platform/graphics/
MediaPlayer.h 282 void deliverNotification(MediaPlayerProxyNotificationType notification);
  /external/webkit/Source/WebKit/mac/Plugins/
WebPluginController.mm 511 - (void)_webPluginContainerPostMediaPlayerNotification:(int)notification forElement:(DOMElement *)element
515 client->deliverNotification((MediaPlayerProxyNotificationType)notification);
  /external/webkit/Source/WebKit/mac/WebView/
WebVideoFullscreenController.mm 232 - (void)applicationDidResignActive:(NSNotification*)notification
338 - (void)applicationDidChangeScreenParameters:(NSNotification*)notification
  /external/webkit/Source/WebKit2/UIProcess/mac/
WKFullScreenWindowController.mm 144 - (void)applicationDidResignActive:(NSNotification*)notification
159 - (void)applicationDidChangeScreenParameters:(NSNotification*)notification
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
ikev2_common.h 323 const u8 *notification; member in struct:ikev2_payloads
  /external/wpa_supplicant_8/src/eap_common/
ikev2_common.h 317 const u8 *notification; member in struct:ikev2_payloads
  /hardware/libhardware/include/hardware/
gps.h 154 /** NI requires notification */
158 /** NI requires privacy override, no notification/minimal trace */
539 * Notification/verification options, combinations of GpsNiNotifyFlags constants
560 * Notification message. It can also be used to store client_id in some cases
583 /** Callback with NI notification.
586 typedef void (*gps_ni_notify_callback)(GpsNiNotification *notification);
592 * Sends the notification request from HAL to GPSLocationProvider.
  /external/webkit/Source/WebCore/platform/graphics/mac/
MediaPlayerPrivateQTKit.mm 185 -(void)loadStateChanged:(NSNotification *)notification;
186 -(void)rateChanged:(NSNotification *)notification;
187 -(void)sizeChanged:(NSNotification *)notification;
188 -(void)timeChanged:(NSNotification *)notification;
189 -(void)didEnd:(NSNotification *)notification;
400 // In newer version of QuickTime, a notification is emitted when maxTimeLoaded changes.
    [all...]

Completed in 1041 milliseconds

1 2 3 4 5 6 78 91011