Searched defs:filters (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/text/
H A DEditable.java107 * Sets the series of filters that will be called in succession
111 public void setFilters(InputFilter[] filters); argument
114 * Returns the array of input filters that are currently applied
H A DSpannableStringBuilder.java1307 public void setFilters(InputFilter[] filters) { argument
1308 if (filters == null) {
1312 mFilters = filters;
/frameworks/base/core/java/android/nfc/
H A DNfcAdapter.java64 * most specific intent filters possible to avoid the activity chooser dialog, which can
993 * <p>If you pass {@code null} for both the {@code filters} and {@code techLists} parameters
1006 * @param filters the IntentFilters to override dispatching for, or null to always dispatch
1012 IntentFilter[] filters, String[][] techLists) {
1027 sService.setForegroundDispatch(intent, filters, parcel);
1011 enableForegroundDispatch(Activity activity, PendingIntent intent, IntentFilter[] filters, String[][] techLists) argument
/frameworks/base/core/java/android/widget/
H A DTextView.java4158 * Sets the list of input filters that will be used if the buffer is
4163 public void setFilters(InputFilter[] filters) { argument
4164 if (filters == null) {
4168 mFilters = filters;
4171 setFilters((Editable) mText, filters);
4176 * Sets the list of input filters on the specified Editable,
4179 private void setFilters(Editable e, InputFilter[] filters) { argument
4181 InputFilter[] nf = new InputFilter[filters.length + 1];
4183 System.arraycopy(filters, 0, nf, 0, filters
[all...]

Completed in 356 milliseconds