Home
last modified time | relevance | path

Searched refs:attributeList (Results 1 – 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/omx/1.0/
DOmxStore.cpp116 hidl_vec<NodeAttribute>& attributeList = node.attributes; in OmxStore() local
117 attributeList.resize(nodePair.second.attributeList.size()); in OmxStore()
119 for (const auto& attributePair : nodePair.second.attributeList) { in OmxStore()
123 attributeList[k] = std::move(attribute); in OmxStore()
/frameworks/av/media/libstagefright/xmlparser/include/media/stagefright/xmlparser/
DMediaCodecsXmlParser.h83 std::vector<Attribute> attributeList; member
/frameworks/av/media/libstagefright/xmlparser/
DMediaCodecsXmlParser.cpp1619 nodeInfo.attributeList.reserve(typeAttributeMap.size()); in generateRoleMap()
1621 nodeInfo.attributeList.push_back( in generateRoleMap()
1626 nodeInfo.attributeList.push_back(Attribute{quirk, "present"}); in generateRoleMap()
1630 nodeInfo.attributeList.push_back(Attribute{"rank", rank}); in generateRoleMap()
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeContext.java792 List<AttributeHolder> attributeList = searchAttrs(attrs); in internalObtainStyledAttributes() local
886 if (attributeList != null) { in internalObtainStyledAttributes()
887 for (int index = 0 ; index < attributeList.size() ; index++) { in internalObtainStyledAttributes()
888 AttributeHolder attributeHolder = attributeList.get(index); in internalObtainStyledAttributes()
/frameworks/av/media/libstagefright/xmlparser/test/
DXMLParserTest.cpp383 vector<Attribute> attrList = nodePtr.attributeList; in TEST_F()