Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/xmlparser/
DMediaCodecsXmlParser.cpp246 && mCurrent.back().mType != mCurrent.back().mCodec->second.typeMap.end(); in inType()
973 typeIt = codecIt->second.typeMap.insert(Type(type, AttributeMap())).first; in enterMediaCodec()
975 typeIt = codecIt->second.typeMap.end(); in enterMediaCodec()
984 typeIt = codecIt->second.typeMap.find(type); in enterMediaCodec()
985 if (typeIt == codecIt->second.typeMap.end()) { in enterMediaCodec()
990 typeIt = codecIt->second.typeMap.begin(); in enterMediaCodec()
991 if (typeIt == codecIt->second.typeMap.end() in enterMediaCodec()
992 || codecIt->second.typeMap.size() != 1) { in enterMediaCodec()
1107 TypeMap::iterator typeIt = codecIt->second.typeMap.find(name); in enterType()
1109 if (typeIt != codecIt->second.typeMap.end()) { in enterType()
[all …]
/frameworks/av/media/libstagefright/xmlparser/include/media/stagefright/xmlparser/
DMediaCodecsXmlParser.h66 TypeMap typeMap; ///< Map of types supported by this codec member
/frameworks/base/core/tests/coretests/src/android/view/
DWindowInsetsTest.java60 public void typeMap() { in typeMap() method in WindowInsetsTest
/frameworks/av/media/codec2/sfplugin/
DCodec2InfoBuilder.cpp503 for (auto typeIt = codec.typeMap.begin(); typeIt != codec.typeMap.end(); ++typeIt) { in buildMediaCodecList()