Home
last modified time | relevance | path

Searched refs:MatchesGlob (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/media/libstagefright/tests/
DUtils_test.cpp58 ASSERT_TRUE(AStringUtils::MatchesGlob("AudioA", 5, "AudioB", 5, false)); in TEST_F()
59 ASSERT_FALSE(AStringUtils::MatchesGlob("AudioA", 6, "AudioA", 5, false)); in TEST_F()
60 ASSERT_FALSE(AStringUtils::MatchesGlob("AudioA", 5, "AudioA", 6, false)); in TEST_F()
61 ASSERT_FALSE(AStringUtils::MatchesGlob("AudioA", 5, "audiOB", 5, false)); in TEST_F()
62 ASSERT_TRUE(AStringUtils::MatchesGlob("AudioA", 5, "audiOB", 5, true)); in TEST_F()
63 ASSERT_FALSE(AStringUtils::MatchesGlob("AudioA", 6, "AudioA", 5, true)); in TEST_F()
64 ASSERT_FALSE(AStringUtils::MatchesGlob("AudioA", 5, "AudioA", 6, true)); in TEST_F()
66 ASSERT_TRUE(AStringUtils::MatchesGlob("*1", 1, "String8", 6, true)); in TEST_F()
67 ASSERT_TRUE(AStringUtils::MatchesGlob("*1", 1, "String8", 6, false)); in TEST_F()
68 ASSERT_TRUE(AStringUtils::MatchesGlob("*1", 1, "String8", 0, true)); in TEST_F()
[all …]
/frameworks/av/include/media/stagefright/foundation/
DAStringUtils.h30 static bool MatchesGlob(
/frameworks/av/media/libstagefright/foundation/
DAStringUtils.cpp29 bool AStringUtils::MatchesGlob( in MatchesGlob() function in android::AStringUtils
DADebug.cpp75 if (!AStringUtils::MatchesGlob( in GetLevelFromSettingsString()