Home | History | Annotate | Download | only in accessibility

Lines Matching refs:html_attributes_

425   for (unsigned int i = 0; i < html_attributes_.size(); i++) {
428 str += Escape(html_attributes_[i].first);
430 str += Escape(html_attributes_[i].second);
847 if (*num_attribs > html_attributes_.size())
848 *num_attribs = html_attributes_.size();
851 attrib_names[i] = SysAllocString(html_attributes_[i].first.c_str());
853 attrib_values[i] = SysAllocString(html_attributes_[i].second.c_str());
873 for (unsigned int j = 0; j < html_attributes_.size(); ++j) {
874 if (html_attributes_[j].first == name) {
875 attrib_values[i] = SysAllocString(html_attributes_[j].second.c_str());
1133 html_attributes_.push_back(std::make_pair(L"level", role_name_.substr(1)));
1139 html_attributes_.push_back(std::make_pair(L"display", display));