OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CanceledException
(Results
1 - 25
of
167
) sorted by null
1
2
3
4
5
6
7
/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
;
133
public void testGetActivity() throws InterruptedException,
CanceledException
{
164
// From the doc send function will throw
CanceledException
if the PendingIntent
166
// a
CanceledException
should be caught.
169
fail("
CanceledException
expected, but not thrown");
170
} catch (PendingIntent.
CanceledException
e) {
175
public void testGetBroadcast() throws InterruptedException,
CanceledException
{
199
public void testGetService() throws InterruptedException,
CanceledException
{
223
public void testStartServiceOnFinishedHandler() throws InterruptedException,
CanceledException
{
260
public void testCancel() throws
CanceledException
{
[
all
...]
/cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
MyNotificationListenerService.java
19
import android.app.PendingIntent.
CanceledException
;
51
} catch (
CanceledException
e) {
/packages/services/Telephony/src/com/android/services/telephony/activation/
SimActivationActivity.java
21
import android.app.PendingIntent.
CanceledException
;
62
} catch (
CanceledException
e) {
/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
167
public static class
CanceledException
extends AndroidException {
168
public
CanceledException
() {
171
public
CanceledException
(String name) {
175
public
CanceledException
(Exception cause) {
642
* @throws
CanceledException
Throws
CanceledException
if the PendingIntent
645
public void send() throws
CanceledException
{
656
* @throws
CanceledException
Throws
CanceledException
if the PendingIntent
659
public void send(int code) throws
CanceledException
{
[
all
...]
/external/deqp/execserver/
xsPosixFileReader.cpp
83
catch (const ThreadedByteBuffer::
CanceledException
&)
xsPosixTestProcess.cpp
138
catch (const ThreadedByteBuffer::
CanceledException
&)
/packages/services/Telephony/src/com/android/phone/
HfaLogic.java
20
import android.app.PendingIntent.
CanceledException
;
205
} catch (
CanceledException
e) {
/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) {
ShadowLocationManager.java
4
import android.app.PendingIntent.
CanceledException
;
92
} catch (
CanceledException
e) {
/frameworks/base/core/tests/coretests/src/android/app/activity/
SubActivityScreen.java
55
} catch (PendingIntent.
CanceledException
e) {
/frameworks/base/services/core/java/com/android/server/am/
AppTimeTracker.java
93
} catch (PendingIntent.
CanceledException
e) {
/packages/apps/Nfc/src/com/android/nfc/
NfcDispatcher.java
32
import android.app.PendingIntent.
CanceledException
;
406
} catch (
CanceledException
e) {
419
} catch (
CanceledException
e) {
431
} catch (
CanceledException
e) {
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSearch.java
163
} catch (PendingIntent.
CanceledException
ex) {
/packages/experimental/NotificationListenerSample/src/com/android/example/notificationlistener/
Listener.java
211
} catch (PendingIntent.
CanceledException
e) {
227
} catch (PendingIntent.
CanceledException
e) {
/external/deqp/executor/
xeTcpIpLink.cpp
219
catch (const de::BlockBuffer<deUint8>::
CanceledException
&)
528
catch (const de::BlockBuffer<deUint8>::
CanceledException
&)
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
ImsSMSDispatcher.java
21
import android.app.PendingIntent.
CanceledException
;
248
} catch (
CanceledException
ex) {}
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java
21
import android.app.PendingIntent.
CanceledException
;
141
} catch (
CanceledException
ex) {}
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
UsbPermissionActivity.java
147
} catch (PendingIntent.
CanceledException
e) {
/frameworks/base/services/core/java/com/android/server/connectivity/
MetricsLoggerService.java
302
} catch (PendingIntent.
CanceledException
e) {
Completed in 370 milliseconds
1
2
3
4
5
6
7