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.cpp98 hidl_vec<NodeAttribute>& attributeList = node.attributes; in OmxStore() local
99 attributeList.resize(nodePair.second.attributeList.size()); in OmxStore()
101 for (const auto& attributePair : nodePair.second.attributeList) { in OmxStore()
105 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.cpp1514 nodeInfo.attributeList.reserve(typeAttributeMap.size()); in generateRoleMap()
1516 nodeInfo.attributeList.push_back( in generateRoleMap()
1521 nodeInfo.attributeList.push_back(Attribute{quirk, "present"}); in generateRoleMap()
1525 nodeInfo.attributeList.push_back(Attribute{"rank", rank}); in generateRoleMap()
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeContext.java727 List<AttributeHolder> attributeList = searchAttrs(attrs); in internalObtainStyledAttributes() local
820 if (attributeList != null) { in internalObtainStyledAttributes()
821 for (int index = 0 ; index < attributeList.size() ; index++) { in internalObtainStyledAttributes()
822 AttributeHolder attributeHolder = attributeList.get(index); in internalObtainStyledAttributes()
/frameworks/av/media/libstagefright/xmlparser/test/
DXMLParserTest.cpp354 vector<Attribute> attrList = nodePtr.attributeList; in TEST_F()