OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:targetParcelable
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Nfc/src/com/android/nfc/
TechListChooserActivity.java
35
Parcelable
targetParcelable
= intent.getParcelableExtra(Intent.EXTRA_INTENT);
36
if (!(
targetParcelable
instanceof Intent)) {
37
Log.w("TechListChooserActivity", "Target is not an intent: " +
targetParcelable
);
41
Intent target = (Intent)
targetParcelable
;
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
UsbResolverActivity.java
62
Parcelable
targetParcelable
= intent.getParcelableExtra(Intent.EXTRA_INTENT);
63
if (!(
targetParcelable
instanceof Intent)) {
64
Log.w("UsbResolverActivity", "Target is not an intent: " +
targetParcelable
);
68
Intent target = (Intent)
targetParcelable
;
/frameworks/base/core/java/com/android/internal/app/
ChooserActivity.java
179
Parcelable
targetParcelable
= intent.getParcelableExtra(Intent.EXTRA_INTENT);
180
if (!(
targetParcelable
instanceof Intent)) {
181
Log.w("ChooserActivity", "Target is not an intent: " +
targetParcelable
);
186
Intent target = (Intent)
targetParcelable
;
[
all
...]
Completed in 64 milliseconds