Home
last modified time | relevance | path

Searched refs:typeIt (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/xmlparser/
DMediaCodecsXmlParser.cpp1015 TypeMap::iterator typeIt; in enterMediaCodec() local
1025 typeIt = codecIt->second.typeMap.insert(Type(type, AttributeMap())).first; in enterMediaCodec()
1027 typeIt = codecIt->second.typeMap.end(); in enterMediaCodec()
1038 typeIt = codecIt->second.typeMap.find(type); in enterMediaCodec()
1039 if (typeIt == codecIt->second.typeMap.end()) { in enterMediaCodec()
1046 typeIt = codecIt->second.typeMap.begin(); in enterMediaCodec()
1047 if (typeIt == codecIt->second.typeMap.end() in enterMediaCodec()
1055 mCurrent.emplace_back(CodecAndType{name, codecIt, typeIt, updating}); in enterMediaCodec()
1209 TypeMap::iterator typeIt = codecIt->second.typeMap.find(name); in enterType() local
1211 if (typeIt != codecIt->second.typeMap.end()) { in enterType()
[all …]
/frameworks/av/media/codec2/sfplugin/
DCodec2InfoBuilder.cpp670 for (auto typeIt = codec.typeMap.begin(); typeIt != codec.typeMap.end(); ++typeIt) { in buildMediaCodecList() local
671 const std::string &mediaType = typeIt->first; in buildMediaCodecList()
686 ALOGI("adding type '%s'", typeIt->first.c_str()); in buildMediaCodecList()
687 const MediaCodecsXmlParser::AttributeMap &attrMap = typeIt->second; in buildMediaCodecList()