diff options
author | Lajos Molnar <lajos@google.com> | 2014-07-08 19:21:08 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-07-08 17:33:57 +0000 |
commit | e8eb7a885e574858ddfe3dfd836fbe9ce62f92b8 (patch) | |
tree | cc156249deb25c2a8763a00f706662c91acbca64 /include/media | |
parent | 0832b2d7d190f4fbe6f134446b2610df0cccdbbb (diff) | |
parent | 3c1da7224155516a08d94598eb64b64204bf10f8 (diff) | |
download | frameworks_av-e8eb7a885e574858ddfe3dfd836fbe9ce62f92b8.zip frameworks_av-e8eb7a885e574858ddfe3dfd836fbe9ce62f92b8.tar.gz frameworks_av-e8eb7a885e574858ddfe3dfd836fbe9ce62f92b8.tar.bz2 |
Merge "AString: add startsWithIgnoreCase and endsWithIgnoreCase"
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/stagefright/foundation/AString.h | 2 |
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(); |