Searched refs:html_attributes_ (Results 1 - 5 of 5) sorted by relevance

/external/chromium/chrome/browser/accessibility/
H A Dbrowser_accessibility.h143 return html_attributes_;
207 std::vector<std::pair<string16, string16> > html_attributes_; member in class:BrowserAccessibility
H A Dbrowser_accessibility_win.cc425 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_[
[all...]
H A Dbrowser_accessibility.cc58 html_attributes_ = src.html_attributes;
/external/chromium_org/content/browser/accessibility/
H A Dbrowser_accessibility.h162 return html_attributes_;
308 std::vector<std::pair<std::string, std::string> > html_attributes_; member in class:content::BrowserAccessibility
H A Dbrowser_accessibility.cc83 html_attributes_ = src.html_attributes;
513 for (size_t i = 0; i < html_attributes_.size(); ++i) {
514 const std::string& attr = html_attributes_[i].first;
516 *value = html_attributes_[i].second;

Completed in 206 milliseconds