Home | History | Annotate | Download | only in content

Lines Matching defs:IntentFilter

45  * Structured description of Intent values to be matched.  An IntentFilter can
50 * <p>IntentFilter objects are often created in XML as part of a package's
89 * for an IntentFilter to match an Intent, three conditions must hold:
103 * used for the MIME sub-type, in both the Intent and IntentFilter, so that the
142 * that unlike the action, an IntentFilter with no categories
145 public class IntentFilter implements Parcelable {
378 * Create a new IntentFilter instance with a specified action and MIME
386 * @return A new IntentFilter for the given action and type.
388 * @see #IntentFilter(String, String)
390 public static IntentFilter create(String action, String dataType) {
392 return new IntentFilter(action, dataType);
399 * New empty IntentFilter.
401 public IntentFilter() {
407 * New IntentFilter
413 public IntentFilter(String action) {
420 * New IntentFilter that matches a single action and data type.
435 public IntentFilter(String action, String dataType)
444 * New IntentFilter containing a copy of an existing filter.
448 public IntentFilter(IntentFilter o) {
968 * @return Returns either {@link IntentFilter#NO_MATCH_DATA},
969 * {@link IntentFilter#MATCH_CATEGORY_PORT}, or
970 * {@link IntentFilter#MATCH_CATEGORY_HOST}.
977 if (false) Log.v("IntentFilter",
1524 * against the filter, as described in {@link IntentFilter}; in that case,
1592 * Write the contents of the IntentFilter as an XML stream.
1746 Log.w("IntentFilter", "Unknown tag parsing IntentFilter: " + tagName);
1889 public static final Parcelable.Creator<IntentFilter> CREATOR
1890 = new Parcelable.Creator<IntentFilter>() {
1891 public IntentFilter createFromParcel(Parcel source) {
1892 return new IntentFilter(source);
1895 public IntentFilter[] newArray(int size) {
1896 return new IntentFilter[size];
1975 Log.w("IntentFilter", "QUESTIONABLE INTENT FILTER:");
1976 dump(Log.WARN, "IntentFilter", " ");
1985 public IntentFilter(Parcel source) {
2039 // Deal with an Intent wanting to match every type in the IntentFilter.
2045 // Deal with this IntentFilter wanting to match every Intent type.
2076 Iterator<IntentFilter.AuthorityEntry> it = authoritiesIterator();
2079 IntentFilter.AuthorityEntry entry = it.next();