Lines Matching refs:attributes
80 for (auto it = s.attributes.begin(); it != s.attributes.end(); it++) { in filter_cover_art()
82 s.attributes.erase(it); in filter_cover_art()
624 if (info.attributes.find(attribute) != info.attributes.end()) { in GetElementAttributesResponse()
625 response->AddAttributeEntry(*info.attributes.find(attribute)); in GetElementAttributesResponse()
629 for (const auto& attribute : info.attributes) { in GetElementAttributesResponse()
1041 if (info.attributes.find(attribute) != info.attributes.end()) { in GetItemAttributesNowPlayingResponse()
1042 builder->AddAttributeEntry(*info.attributes.find(attribute)); in GetItemAttributesNowPlayingResponse()
1048 for (const auto& attribute : info.attributes) { in GetItemAttributesNowPlayingResponse()
1103 if (item_requested.song.attributes.find(attribute) != in GetItemAttributesVFSResponse()
1104 item_requested.song.attributes.end()) { in GetItemAttributesVFSResponse()
1106 *item_requested.song.attributes.find(attribute)); in GetItemAttributesVFSResponse()
1112 for (const auto& attribute : item_requested.song.attributes) { in GetItemAttributesVFSResponse()
1162 if (song.attributes.find(attr) != song.attributes.end()) { in filter_attributes_requested()
1163 result.insert(*song.attributes.find(attr)); in filter_attributes_requested()
1212 song.attributes.find(Attribute::TITLE) != song.attributes.end() in GetVFSListResponse()
1213 ? song.attributes.find(Attribute::TITLE)->value() in GetVFSListResponse()
1219 song_item.attributes_ = std::move(song.attributes); in GetVFSListResponse()
1255 auto title = song.attributes.find(Attribute::TITLE) != song.attributes.end() in GetNowPlayingListResponse()
1256 ? song.attributes.find(Attribute::TITLE)->value() in GetNowPlayingListResponse()
1261 item.attributes_ = std::move(song.attributes); in GetNowPlayingListResponse()