Searched refs:ignoreCase (Results 1 – 7 of 7) sorted by relevance
23 int AStringUtils::Compare(const char *a, const char *b, size_t len, bool ignoreCase) { in Compare() argument25 return ignoreCase ? strncasecmp(a, b, len) : strncmp(a, b, len); in Compare()30 const char *glob, size_t globLen, const char *str, size_t strLen, bool ignoreCase) { in MatchesGlob() argument38 if (strLen < globIx || Compare(str, glob, globIx /* len */, ignoreCase)) { in MatchesGlob()59 return !Compare(tail, pattern, len, ignoreCase); in MatchesGlob()62 while (ix + len <= strLen && Compare(str + ix, pattern, len, ignoreCase)) { in MatchesGlob()
58 fun isPomFile() = fileName.equals("pom.xml", ignoreCase = true)59 || fileName.endsWith(".pom", ignoreCase = true)61 fun isClassFile() = fileName.endsWith(".class", ignoreCase = true)63 fun isXmlFile() = fileName.endsWith(".xml", ignoreCase = true)65 fun isProGuardFile () = fileName.equals("proguard.txt", ignoreCase = true)
171 return ARCHIVE_EXTENSIONS.any { zipEntry.name.endsWith(it, ignoreCase = true) } in isArchive()
26 static int Compare(const char *a, const char *b, size_t len, bool ignoreCase);31 const char *glob, size_t globLen, const char *str, size_t strLen, bool ignoreCase);
46 && file.relativePath.toString().contains(META_INF_DIR, ignoreCase = true) in canTransform()47 && file.fileName.endsWith(VERSION_FILE_SUFFIX, ignoreCase = true) in canTransform()
604 private static boolean equals(String a, String b, boolean ignoreCase) { in equals() argument607 return (ignoreCase) ? a.equalsIgnoreCase(b) : a.equals(b); in equals()
META-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/ ...