HomeSort by relevance Sort by last modified time
    Searched refs:html_attributes_ (Results 1 - 5 of 5) sorted by null

  /external/chromium/chrome/browser/accessibility/
browser_accessibility.h 143 return html_attributes_;
207 std::vector<std::pair<string16, string16> > html_attributes_; member in class:BrowserAccessibility
browser_accessibility_win.cc 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())
    [all...]
browser_accessibility.cc 58 html_attributes_ = src.html_attributes;
  /external/chromium_org/content/browser/accessibility/
browser_accessibility.h 162 return html_attributes_;
308 std::vector<std::pair<std::string, std::string> > html_attributes_; member in class:content::BrowserAccessibility
browser_accessibility.cc 83 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 412 milliseconds