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

  /external/proguard/src/proguard/util/
ExtensionMatcher.java 48 return endsWithIgnoreCase(string, extension);
56 private static boolean endsWithIgnoreCase(String string, String suffix)
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/
AdtUtilsTest.java 23 assertTrue(AdtUtils.endsWithIgnoreCase("foo", "foo"));
24 assertTrue(AdtUtils.endsWithIgnoreCase("foo", "Foo"));
25 assertTrue(AdtUtils.endsWithIgnoreCase("foo", "foo"));
26 assertTrue(AdtUtils.endsWithIgnoreCase("Barfoo", "foo"));
27 assertTrue(AdtUtils.endsWithIgnoreCase("BarFoo", "foo"));
28 assertTrue(AdtUtils.endsWithIgnoreCase("BarFoo", "foO"));
30 assertFalse(AdtUtils.endsWithIgnoreCase("foob", "foo"));
31 assertFalse(AdtUtils.endsWithIgnoreCase("foo", "fo"));
  /external/proguard/src/proguard/
DataEntryReaderFactory.java 52 boolean isJar = endsWithIgnoreCase(entryName, ".jar");
53 boolean isWar = endsWithIgnoreCase(entryName, ".war");
54 boolean isEar = endsWithIgnoreCase(entryName, ".ear");
55 boolean isZip = endsWithIgnoreCase(entryName, ".zip");
148 private static boolean endsWithIgnoreCase(String string, String suffix)
DataEntryWriterFactory.java 69 boolean isJar = endsWithIgnoreCase(entryName, ".jar");
70 boolean isWar = endsWithIgnoreCase(entryName, ".war");
71 boolean isEar = endsWithIgnoreCase(entryName, ".ear");
72 boolean isZip = endsWithIgnoreCase(entryName, ".zip");
157 private static boolean endsWithIgnoreCase(String string, String suffix)
  /libcore/luni/src/main/java/java/util/jar/
JarFile.java 338 && (endsWithIgnoreCase(entryName, ".SF")
339 || endsWithIgnoreCase(entryName, ".DSA")
340 || endsWithIgnoreCase(entryName, ".RSA"))) {
354 private static boolean endsWithIgnoreCase(String s, String suffix) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtils.java 23 import static com.android.ide.eclipse.adt.AdtUtils.endsWithIgnoreCase;
520 return endsWithIgnoreCase(path, DOT_PNG)
521 || endsWithIgnoreCase(path, DOT_9PNG)
522 || endsWithIgnoreCase(path, DOT_GIF)
523 || endsWithIgnoreCase(path, DOT_JPG)
524 || endsWithIgnoreCase(path, DOT_BMP);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourcePreviewHelper.java 19 import static com.android.ide.eclipse.adt.AdtUtils.endsWithIgnoreCase;
148 && !endsWithIgnoreCase(path, DOT_9PNG)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java 53 public static boolean endsWithIgnoreCase(String string, String suffix) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileCreationPage.java 654 if (AdtUtils.endsWithIgnoreCase(res.getName(), DOT_XML)) {
    [all...]
  /external/proguard/lib/
proguard.jar 
  /prebuilt/common/jfreechart/
jcommon-1.0.12.jar 

Completed in 4522 milliseconds