Home | History | Annotate | Download | only in content

Lines Matching refs:schemes

70  * you must also specify one or more schemes that it is associated with.
72 * one or more schemes it is associated with.
108 * formal RFC schemes!</em> You should thus always use lower case letters
109 * for your schemes.
112 * the Intent's data scheme specific part <em>and</em> one of the data schemes in the filter
119 * the Intent's data authority <em>and</em> one of the data schemes in the filter
594 * Add a new Intent data scheme to match against. If any schemes are
596 * one of these schemes <em>or</em> a matching data type. If no schemes
600 * case-sensitive, unlike formal RFC schemes. As a result,
601 * you should always write your schemes with lower case letters,
602 * and any schemes you receive from outside of Android should be
617 * Return the number of data schemes in the filter.
644 * Return an iterator over the filter's data schemes.
741 * include one or more schemes (via {@link #addDataScheme}) for the
838 * include one or more schemes (via {@link #addDataScheme}) for the
920 * include one or more schemes (via {@link #addDataScheme}) <em>and</em>
1043 * schemes/paths, the match will only succeed if the intent does not
1044 * also specify a type or data. If the filter does not specify any schemes,
1045 * it will implicitly match intents with no scheme, or the schemes "content:"
1053 * types or schemes that it matches against, it is considered to be empty
1080 final ArrayList<String> schemes = mDataSchemes;
1084 if (types == null && schemes == null) {
1089 if (schemes != null) {
1090 if (schemes.contains(scheme != null ? scheme : "")) {