HomeSort by relevance Sort by last modified time
    Searched refs:matchAgainst (Results 1 - 3 of 3) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
Constants.java 297 public static boolean mimeTypeMatches(String mimeType, String[] matchAgainst) {
298 for (String matchType : matchAgainst) {
306 public static boolean mimeTypeMatches(String mimeType, String matchAgainst) {
307 Pattern p = Pattern.compile(matchAgainst.replaceAll("\\*", "\\.\\*"),
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeUtility.java 284 * Returns true if the given mimeType matches the matchAgainst specification. The comparison
285 * ignores case and the matchAgainst string may include "*" for a wildcard (e.g. "image/*").
288 * @param matchAgainst A MIME type to check against. May include wildcards.
291 public static boolean mimeTypeMatches(String mimeType, String matchAgainst) {
292 Pattern p = Pattern.compile(matchAgainst.replaceAll("\\*", "\\.\\*"),
298 * Returns true if the given mimeType matches any of the matchAgainst specifications. The
299 * comparison ignores case and the matchAgainst strings may include "*" for a wildcard
303 * @param matchAgainst An array of MIME types to check against. May include wildcards.
304 * @return true if the mimeType matches any of the matchAgainst strings
306 public static boolean mimeTypeMatches(String mimeType, String[] matchAgainst) {
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
BeautifulSoup.py     [all...]

Completed in 206 milliseconds