Home
last modified time | relevance | path

Searched refs:remoteInputs (Results 1 – 20 of 20) sorted by relevance

/frameworks/support/v4/jellybean/android/support/v4/app/
DRemoteInputCompatJellybean.java61 RemoteInputCompatBase.RemoteInput[] remoteInputs = factory.newArray(bundles.length); in fromBundleArray() local
63 remoteInputs[i] = fromBundle(bundles[i], factory); in fromBundleArray()
65 return remoteInputs; in fromBundleArray()
68 static Bundle[] toBundleArray(RemoteInputCompatBase.RemoteInput[] remoteInputs) { in toBundleArray() argument
69 if (remoteInputs == null) { in toBundleArray()
72 Bundle[] bundles = new Bundle[remoteInputs.length]; in toBundleArray()
73 for (int i = 0; i < remoteInputs.length; i++) { in toBundleArray()
74 bundles[i] = toBundle(remoteInputs[i]); in toBundleArray()
94 static void addResultsToIntent(RemoteInputCompatBase.RemoteInput[] remoteInputs, Intent intent, in addResultsToIntent() argument
97 for (RemoteInputCompatBase.RemoteInput remoteInput : remoteInputs) { in addResultsToIntent()
DNotificationCompatJellybean.java260 RemoteInputCompatBase.RemoteInput[] remoteInputs = null; in readAction() local
263 remoteInputs = RemoteInputCompatJellybean.fromBundleArray( in readAction()
268 return factory.build(icon, title, actionIntent, extras, remoteInputs, in readAction()
/frameworks/support/v4/java/android/support/v4/app/
DRemoteInput.java202 public static void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, in addResultsToIntent() argument
204 IMPL.addResultsToIntent(remoteInputs, intent, results); in addResultsToIntent()
211 void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, in addResultsToIntent() argument
223 public void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, Bundle results) { in addResultsToIntent() argument
235 public void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, Bundle results) { in addResultsToIntent() argument
236 RemoteInputCompatJellybean.addResultsToIntent(remoteInputs, intent, results); in addResultsToIntent()
247 public void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, Bundle results) { in addResultsToIntent() argument
248 RemoteInputCompatApi20.addResultsToIntent(remoteInputs, intent, results); in addResultsToIntent()
DNotificationCompat.java2361 RemoteInput[] remoteInputs, boolean allowGeneratedReplies) { in Action() argument
2366 this.mRemoteInputs = remoteInputs; in Action()
2515 RemoteInput[] remoteInputs = mRemoteInputs != null in build() local
2517 return new Action(mIcon, mTitle, mIntent, mExtras, remoteInputs, in build()
2756 RemoteInputCompatBase.RemoteInput[] remoteInputs,
2759 (RemoteInput[]) remoteInputs, allowGeneratedReplies);
/frameworks/support/v4/api20/android/support/v4/app/
DRemoteInputCompatApi20.java59 static void addResultsToIntent(RemoteInputCompatBase.RemoteInput[] remoteInputs, in addResultsToIntent() argument
61 RemoteInput.addResultsToIntent(fromCompat(remoteInputs), intent, results); in addResultsToIntent()
DNotificationCompatApi20.java142 RemoteInputCompatBase.RemoteInput[] remoteInputs = RemoteInputCompatApi20.toCompat( in getActionCompatFromAction() local
147 action.getExtras(), remoteInputs, allowGeneratedReplies); in getActionCompatFromAction()
157 RemoteInput[] remoteInputs = RemoteInputCompatApi20.fromCompat(remoteInputCompats); in getActionFromActionCompat() local
158 for (RemoteInput remoteInput : remoteInputs) { in getActionFromActionCompat()
/frameworks/base/core/java/android/app/
DRemoteInput.java272 public static void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, in addResultsToIntent() argument
275 for (RemoteInput remoteInput : remoteInputs) { in addResultsToIntent()
DNotification.java1052 RemoteInput[] remoteInputs, boolean allowGeneratedReplies) { in Action() argument
1060 this.mRemoteInputs = remoteInputs; in Action()
1141 RemoteInput[] remoteInputs) { in Builder() argument
1146 if (remoteInputs != null) { in Builder()
1147 mRemoteInputs = new ArrayList<RemoteInput>(remoteInputs.length); in Builder()
1148 Collections.addAll(mRemoteInputs, remoteInputs); in Builder()
1219 RemoteInput[] remoteInputs = mRemoteInputs != null in build() local
1221 return new Action(mIcon, mTitle, mIntent, mExtras, remoteInputs, in build()
3542 RemoteInput[] remoteInputs = action.getRemoteInputs(); in hasValidRemoteInput() local
3543 if (remoteInputs == null) { in hasValidRemoteInput()
[all …]
/frameworks/support/v4/donut/android/support/v4/app/
DNotificationCompatBase.java39 Bundle extras, RemoteInputCompatBase.RemoteInput[] remoteInputs, in build() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DRemoteInputView.java210 public void setRemoteInput(RemoteInput[] remoteInputs, RemoteInput remoteInput) { in setRemoteInput() argument
211 mRemoteInputs = remoteInputs; in setRemoteInput()
/frameworks/base/core/java/android/widget/
DRemoteViews.java167 public void setRemoteInputs(int viewId, RemoteInput[] remoteInputs) { in setRemoteInputs() argument
168 mActions.add(new SetRemoteInputsAction(viewId, remoteInputs)); in setRemoteInputs()
2011 public SetRemoteInputsAction(int viewId, RemoteInput[] remoteInputs) {
2013 this.remoteInputs = remoteInputs;
2018 remoteInputs = parcel.createTypedArray(RemoteInput.CREATOR);
2024 dest.writeTypedArray(remoteInputs, flags);
2032 target.setTagInternal(R.id.remote_input_tag, remoteInputs);
2039 final Parcelable[] remoteInputs;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DBaseStatusBar.java1773 RemoteInput[] remoteInputs = action.getRemoteInputs();
1774 if (remoteInputs == null) {
1777 for (RemoteInput ri : remoteInputs) {
/frameworks/support/v4/api/
D22.1.0.txt666 field public static final java.lang.String EXTRA_REMOTE_INPUTS = "android.support.remoteInputs";
D22.0.0.txt666 field public static final java.lang.String EXTRA_REMOTE_INPUTS = "android.support.remoteInputs";
D22.2.0.txt695 field public static final java.lang.String EXTRA_REMOTE_INPUTS = "android.support.remoteInputs";
D22.2.1.txt696 field public static final java.lang.String EXTRA_REMOTE_INPUTS = "android.support.remoteInputs";
D23.1.1.txt750 field public static final java.lang.String EXTRA_REMOTE_INPUTS = "android.support.remoteInputs";
D23.1.0.txt797 field public static final java.lang.String EXTRA_REMOTE_INPUTS = "android.support.remoteInputs";
D23.0.0.txt789 field public static final java.lang.String EXTRA_REMOTE_INPUTS = "android.support.remoteInputs";
Dcurrent.txt810 field public static final java.lang.String EXTRA_REMOTE_INPUTS = "android.support.remoteInputs";