Searched refs:matchAgainst (Results 1 – 3 of 3) sorted by relevance
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
D | Constants.java | 307 public static boolean mimeTypeMatches(String mimeType, String[] matchAgainst) { in mimeTypeMatches() argument 308 for (String matchType : matchAgainst) { in mimeTypeMatches() 316 public static boolean mimeTypeMatches(String mimeType, String matchAgainst) { in mimeTypeMatches() argument 317 Pattern p = Pattern.compile(matchAgainst.replaceAll("\\*", "\\.\\*"), in mimeTypeMatches()
|
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/internet/ |
D | MimeUtility.java | 280 public static boolean mimeTypeMatches(String mimeType, String matchAgainst) { in mimeTypeMatches() argument 281 Pattern p = Pattern.compile(matchAgainst.replaceAll("\\*", "\\.\\*"), Pattern.CASE_INSENSITIVE); in mimeTypeMatches() 294 public static boolean mimeTypeMatches(String mimeType, String[] matchAgainst) { in mimeTypeMatches() argument 295 for (String matchType : matchAgainst) { in mimeTypeMatches()
|
/packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/ |
D | MimeUtility.java | 291 public static boolean mimeTypeMatches(String mimeType, String matchAgainst) { in mimeTypeMatches() argument 292 Pattern p = Pattern.compile(matchAgainst.replaceAll("\\*", "\\.\\*"), in mimeTypeMatches() 306 public static boolean mimeTypeMatches(String mimeType, String[] matchAgainst) { in mimeTypeMatches() argument 307 for (String matchType : matchAgainst) { in mimeTypeMatches()
|