Home
last modified time | relevance | path

Searched refs:Compare (Results 1 – 10 of 10) sorted by relevance

/frameworks/av/media/libstagefright/foundation/tests/
DUtils_test.cpp33 ASSERT_EQ(AStringUtils::Compare("Audio", "AudioExt", 5, false), 0); in TEST_F()
34 ASSERT_EQ(AStringUtils::Compare("Audio", "audiOExt", 5, true), 0); in TEST_F()
35 ASSERT_NE(AStringUtils::Compare("Audio", "audioExt", 5, false), 0); in TEST_F()
36 ASSERT_NE(AStringUtils::Compare("Audio", "AudiOExt", 5, false), 0); in TEST_F()
38 ASSERT_LT(AStringUtils::Compare("Audio", "AudioExt", 7, false), 0); in TEST_F()
39 ASSERT_LT(AStringUtils::Compare("Audio", "audiOExt", 7, true), 0); in TEST_F()
41 ASSERT_GT(AStringUtils::Compare("AudioExt", "Audio", 7, false), 0); in TEST_F()
42 ASSERT_GT(AStringUtils::Compare("audiOext", "Audio", 7, true), 0); in TEST_F()
44 ASSERT_LT(AStringUtils::Compare("Audio", "Video", 5, false), 0); in TEST_F()
45 ASSERT_LT(AStringUtils::Compare("Audio1", "Audio2", 6, false), 0); in TEST_F()
[all …]
DBase64_test.cpp54 ASSERT_EQ(AStringUtils::Compare(expected[i].c_str(), in verifyDecode()
69 ASSERT_EQ(AStringUtils::Compare(expected[i].c_str(), out.c_str(), in verifyEncode()
/frameworks/av/media/libstagefright/foundation/
DAStringUtils.cpp23 int AStringUtils::Compare(const char *a, const char *b, size_t len, bool ignoreCase) { in Compare() function in android::AStringUtils
38 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()
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
DAStringUtils.h26 static int Compare(const char *a, const char *b, size_t len, bool ignoreCase);
/frameworks/compile/mclinker/include/mcld/LD/
DBranchIsland.h128 struct Compare { struct
157 typedef HashEntry<Key, Stub*, Key::Compare> StubEntryType;
/frameworks/av/media/libstagefright/codecs/common/include/
DvoMem.h48 VO_S32 (VO_API * Compare) (VO_S32 uID, VO_PTR pBuffer1, VO_PTR pBuffer2, VO_U32 uSize);
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
Dserialization.h265 template <typename Key, typename T, typename Compare, typename Allocator>
267 const std::map<Key, T, Compare, Allocator>& m);
354 template <typename Key, typename T, typename Compare, typename Allocator>
356 const std::map<Key, T, Compare, Allocator>& v) {
642 template <typename Key, typename T, typename Compare, typename Allocator>
643 inline void SerializeType(const std::map<Key, T, Compare, Allocator>& value,
860 template <typename Key, typename T, typename Compare, typename Allocator>
861 inline void SerializeObject(const std::map<Key, T, Compare, Allocator>&, MessageWriter*, void*&);
1005 template <typename Key, typename T, typename Compare, typename Allocator>
1006 inline void SerializeObject(const std::map<Key, T, Compare, Allocator>& v,
[all …]
Dencoding.h470 template <typename Key, typename T, typename Compare, typename Allocator>
472 const std::map<Key, T, Compare, Allocator>& value) { in EncodeType() argument
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
Dscale_sig_opt.s34 CMP r2, #0 @Compare exp and 0
/frameworks/compile/slang/
Dslang_rs_context.h280 template <class FilterIn, class Compare>
281 std::vector<RSExportType *> getReduceResultTypes(FilterIn Filt, Compare Comp) const { in getReduceResultTypes()