HomeSort by relevance Sort by last modified time
    Searched refs:CanceledException (Results 1 - 25 of 229) sorted by null

1 2 3 4 5 6 7 8 910

  /cts/tests/app/src/android/app/cts/
PendingIntent_CanceledExceptionTest.java 20 import android.app.PendingIntent.CanceledException;
26 PendingIntent.CanceledException canceledException = new PendingIntent.CanceledException();
28 throw canceledException;
29 } catch (CanceledException e) {
34 canceledException = new PendingIntent.CanceledException(message);
36 throw canceledException;
37 } catch (CanceledException e)
    [all...]
PendingIntentTest.java 20 import android.app.PendingIntent.CanceledException;
138 public void testGetActivity() throws InterruptedException, CanceledException {
169 // From the doc send function will throw CanceledException if the PendingIntent
171 // a CanceledException should be caught.
174 fail("CanceledException expected, but not thrown");
175 } catch (PendingIntent.CanceledException e) {
180 public void testGetBroadcast() throws InterruptedException, CanceledException {
230 public void testUpdateCurrent() throws InterruptedException, CanceledException {
278 public void testGetService() throws InterruptedException, CanceledException {
302 public void testStartServiceOnFinishedHandler() throws InterruptedException, CanceledException {
    [all...]
  /external/deqp/framework/delibs/decpp/
deBlockBuffer.hpp 50 typedef BufferCanceledException CanceledException;
65 void cancel (void); //!< Sets buffer in canceled state. All (including pending) writes and reads will result in CanceledException.
196 throw CanceledException();
239 throw CanceledException();
274 throw CanceledException();
300 throw CanceledException();
353 throw CanceledException();
379 throw CanceledException();
deBlockBuffer.cpp 253 catch (const BlockBuffer<deUint8>::CanceledException&)
287 catch (const BlockBuffer<deUint8>::CanceledException&)
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IntentActivityFlags.java 7 import android.app.PendingIntent.CanceledException;
81 } catch (CanceledException e) {
  /frameworks/base/core/java/android/app/
PendingIntent.java 169 public static class CanceledException extends AndroidException {
170 public CanceledException() {
173 public CanceledException(String name) {
177 public CanceledException(Exception cause) {
680 * @throws CanceledException Throws CanceledException if the PendingIntent
683 public void send() throws CanceledException {
    [all...]
RecoverableSecurityException.java 204 } catch (PendingIntent.CanceledException ignored) {
  /cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
MyNotificationListenerService.java 20 import android.app.PendingIntent.CanceledException;
106 } catch (CanceledException e) {
  /external/deqp/execserver/
xsPosixFileReader.cpp 83 catch (const ThreadedByteBuffer::CanceledException&)
  /packages/apps/Car/Overview/src/com/android/car/overview/
MediaStreamViewHolder.java 76 } catch (PendingIntent.CanceledException e) {
89 } catch (PendingIntent.CanceledException e) {
102 } catch (PendingIntent.CanceledException e) {
115 } catch (PendingIntent.CanceledException e) {
SimpleStreamViewHolder.java 56 } catch (PendingIntent.CanceledException e) {
CurrentCallStreamViewHolder.java 72 } catch (PendingIntent.CanceledException e) {
86 } catch (PendingIntent.CanceledException e) {
100 } catch (PendingIntent.CanceledException e) {
  /packages/services/Telephony/src/com/android/phone/euicc/
EuiccResolutionUiDispatcherActivity.java 68 } catch (PendingIntent.CanceledException e) {
  /frameworks/base/services/backup/java/com/android/server/backup/internal/
RunBackupReceiver.java 55 } catch (PendingIntent.CanceledException ce) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java 21 import android.app.PendingIntent.CanceledException;
101 } catch (CanceledException ex) {}
133 } catch (CanceledException ex) {
166 } catch (CanceledException ex) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPendingIntent.java 4 import android.app.PendingIntent.CanceledException;
43 public void send() throws CanceledException {
48 public void send(Context context, int code, Intent intent) throws CanceledException {
ShadowRemoteViews.java 62 } catch (PendingIntent.CanceledException e) {
  /frameworks/base/core/tests/coretests/src/android/app/activity/
SubActivityScreen.java 55 } catch (PendingIntent.CanceledException e) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/pip/tv/
PipControlsView.java 20 import android.app.PendingIntent.CanceledException;
239 } catch (CanceledException e) {
  /frameworks/base/services/usb/java/com/android/server/usb/
UsbUserSettingsManager.java 178 } catch (PendingIntent.CanceledException e) {
198 } catch (PendingIntent.CanceledException e) {
  /frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger/
SoundTriggerService.java 429 } catch (PendingIntent.CanceledException e) {
451 } catch (PendingIntent.CanceledException e) {
473 } catch (PendingIntent.CanceledException e) {
491 } catch (PendingIntent.CanceledException e) {
509 } catch (PendingIntent.CanceledException e) {
  /frameworks/base/services/core/java/com/android/server/am/
AppTimeTracker.java 93 } catch (PendingIntent.CanceledException e) {
  /frameworks/base/telephony/java/android/telephony/euicc/
EuiccManager.java 519 } catch (PendingIntent.CanceledException e) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
AppSmsManager.java 114 } catch (PendingIntent.CanceledException e) {
  /packages/apps/Launcher3/src/com/android/launcher3/notification/
NotificationInfo.java 106 } catch (PendingIntent.CanceledException e) {

Completed in 1013 milliseconds

1 2 3 4 5 6 7 8 910