Searched defs:mRemoteInputs (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DRemoteInputView.java79 private RemoteInput[] mRemoteInputs; field in class:RemoteInputView
140 RemoteInput.addResultsToIntent(mRemoteInputs, fillInIntent,
257 mRemoteInputs = remoteInputs;
392 setRemoteInput(other.mRemoteInputs, other.mRemoteInput);
/frameworks/support/compat/java/android/support/v4/app/
H A DNotificationCompat.java2727 private final RemoteInput[] mRemoteInputs; field in class:NotificationCompat.Action
2768 this.mRemoteInputs = remoteInputs;
2806 return mRemoteInputs;
2832 private ArrayList<RemoteInput> mRemoteInputs; field in class:NotificationCompat.Action.Builder
2860 mRemoteInputs = remoteInputs == null ? null : new ArrayList<>(
2896 if (mRemoteInputs == null) {
2897 mRemoteInputs = new ArrayList<RemoteInput>();
2899 mRemoteInputs.add(remoteInput);
2934 if (mRemoteInputs != null) {
2935 for (RemoteInput input : mRemoteInputs) {
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java1234 private final RemoteInput[] mRemoteInputs; field in class:Notification.Action
1268 mRemoteInputs = in.createTypedArray(RemoteInput.CREATOR);
1290 this.mRemoteInputs = remoteInputs;
1326 return mRemoteInputs;
1352 private ArrayList<RemoteInput> mRemoteInputs; field in class:Notification.Action.Builder
1393 mRemoteInputs = new ArrayList<RemoteInput>(remoteInputs.length);
1394 Collections.addAll(mRemoteInputs, remoteInputs);
1430 if (mRemoteInputs == null) {
1431 mRemoteInputs = new ArrayList<RemoteInput>();
1433 mRemoteInputs
[all...]

Completed in 100 milliseconds