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/core/java/com/android/internal/app/
ChooserActivity.java
28
Parcelable
targetParcelable
= intent.getParcelableExtra(Intent.EXTRA_INTENT);
29
if (!(
targetParcelable
instanceof Intent)) {
30
Log.w("ChooseActivity", "Target is not an intent: " +
targetParcelable
);
34
Intent target = (Intent)
targetParcelable
;
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
UsbResolverActivity.java
52
Parcelable
targetParcelable
= intent.getParcelableExtra(Intent.EXTRA_INTENT);
53
if (!(
targetParcelable
instanceof Intent)) {
54
Log.w("UsbResolverActivity", "Target is not an intent: " +
targetParcelable
);
58
Intent target = (Intent)
targetParcelable
;
Completed in 430 milliseconds