summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLajos Molnar <lajos@google.com>2014-07-08 19:21:08 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-07-08 17:33:57 +0000
commite8eb7a885e574858ddfe3dfd836fbe9ce62f92b8 (patch)
treecc156249deb25c2a8763a00f706662c91acbca64 /include
parent0832b2d7d190f4fbe6f134446b2610df0cccdbbb (diff)
parent3c1da7224155516a08d94598eb64b64204bf10f8 (diff)
downloadframeworks_av-e8eb7a885e574858ddfe3dfd836fbe9ce62f92b8.zip
frameworks_av-e8eb7a885e574858ddfe3dfd836fbe9ce62f92b8.tar.gz
frameworks_av-e8eb7a885e574858ddfe3dfd836fbe9ce62f92b8.tar.bz2
Merge "AString: add startsWithIgnoreCase and endsWithIgnoreCase"
Diffstat (limited to 'include')
-rw-r--r--include/media/stagefright/foundation/AString.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/media/stagefright/foundation/AString.h b/include/media/stagefright/foundation/AString.h
index 622028e..0edaa1c 100644
--- a/include/media/stagefright/foundation/AString.h
+++ b/include/media/stagefright/foundation/AString.h
@@ -77,6 +77,8 @@ struct AString {
bool startsWith(const char *prefix) const;
bool endsWith(const char *suffix) const;
+ bool startsWithIgnoreCase(const char *prefix) const;
+ bool endsWithIgnoreCase(const char *suffix) const;
void tolower();