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

  /external/chromium_org/content/browser/accessibility/
accessibility_tree_formatter_android.cc 96 const char* attribute_name = BOOL_ATTRIBUTES[i]; local
98 if (dict.GetBoolean(attribute_name, &value) && value)
99 WriteAttribute(true, attribute_name, &line);
103 const char* attribute_name = STRING_ATTRIBUTES[i]; local
105 if (!dict.GetString(attribute_name, &value) || value.empty())
108 StringPrintf("%s='%s'", attribute_name, value.c_str()),
113 const char* attribute_name = INT_ATTRIBUTES[i]; local
115 if (!dict.GetInteger(attribute_name, &value) || value == 0)
118 StringPrintf("%s=%d", attribute_name, value),
accessibility_tree_formatter_win.cc 216 const char* attribute_name = ALL_ATTRIBUTES[i]; local
218 if (!dict.Get(attribute_name, &value))
227 UTF8ToUTF16(attribute_name).c_str(),
237 UTF8ToUTF16(attribute_name).c_str(),
247 UTF8ToUTF16(attribute_name).c_str(),
271 if (strcmp(attribute_name, "size") == 0) {
276 } else if (strcmp(attribute_name, "location") == 0) {
  /external/chromium_org/components/autofill/core/browser/
autofill_xml_parser.cc 72 const std::string& attribute_name = attribute_qname.LocalPart(); local
73 if (attribute_name.compare("uploadrequired") == 0) {
78 } else if (attribute_name.compare("experimentid") == 0) {
99 const std::string& attribute_name = attribute_qname.LocalPart(); local
100 if (attribute_name.compare("autofilltype") == 0) {
107 attribute_name.compare("defaultvalue") == 0) {
120 const std::string& attribute_name = attribute_qname.LocalPart(); local
121 if (attribute_name.compare("page_no") == 0)
123 else if (attribute_name.compare("total_pages") == 0)
125 else if (attribute_name.compare("ignore_ajax") == 0
150 const std::string& attribute_name = attribute_qname.LocalPart(); local
170 const std::string& attribute_name = attribute_qname.LocalPart(); local
238 const std::string &attribute_name = attribute_qname.LocalPart(); local
    [all...]
  /external/chromium/chrome/browser/autofill/
autofill_xml_parser.cc 56 const std::string& attribute_name = attribute_qname.LocalPart(); local
57 if (attribute_name.compare("uploadrequired") == 0) {
62 } else if (attribute_name.compare("experimentid") == 0) {
80 const std::string& attribute_name = attribute_qname.LocalPart(); local
82 if (attribute_name.compare("autofilltype") == 0) {
124 const std::string &attribute_name = attribute_qname.LocalPart(); local
125 if (attribute_name.compare("positiveuploadrate") == 0) {
127 } else if (attribute_name.compare("negativeuploadrate") == 0) {
  /external/chromium_org/content/renderer/
savable_resources.cc 151 const char* attribute_name = NULL; local
154 attribute_name = "src";
158 attribute_name = "src";
164 attribute_name = "background";
169 attribute_name = "cite";
176 attribute_name = "href";
179 if (!attribute_name)
181 WebString value = element.getAttribute(WebString::fromUTF8(attribute_name));
  /external/chromium/webkit/glue/
dom_operations.cc 154 const char* attribute_name = NULL; local
157 attribute_name = "src";
161 attribute_name = "src";
167 attribute_name = "background";
172 attribute_name = "cite";
179 attribute_name = "href";
182 if (!attribute_name)
184 WebString value = element.getAttribute(WebString::fromUTF8(attribute_name));
311 const string16& attribute_name,
329 WebString value = element.getAttribute(attribute_name);
    [all...]
dom_operations.h 88 // Puts the meta-elements of |document| that have the attribute |attribute_name|
92 const string16& attribute_name,
  /development/testrunner/test_defs/
xml_suite_helper.py 87 def _ParseAttribute(self, suite_element, attribute_name, mandatory,
89 if suite_element.hasAttribute(attribute_name):
90 value = suite_element.getAttribute(attribute_name)
93 (attribute_name, self.TAG_NAME))
  /external/chromium/chrome/common/
libxml_utils.h 151 bool AddAttribute(const std::string& attribute_name,
154 BAD_CAST attribute_name.c_str(),
  /external/chromium_org/third_party/libxml/chromium/
libxml_utils.h 137 bool AddAttribute(const std::string& attribute_name,
140 BAD_CAST attribute_name.c_str(),
  /external/chromium_org/chrome/test/chromedriver/
element_util.h 41 const std::string& attribute_name,
48 const std::string& attribute_name,
element_util.cc 293 const std::string& attribute_name,
297 args.AppendString(attribute_name);
307 const std::string& attribute_name,
312 session, web_view, element_id, attribute_name, &result);
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
Attribute_info.java 112 final CONSTANT_Utf8_info attribute_name = (CONSTANT_Utf8_info) constants.get (attribute_name_index); local
113 final String name = attribute_name.m_value;
  /external/chromium_org/chrome_frame/
html_utils.h 65 bool GetTagAttribute(const wchar_t* attribute_name,
html_utils.cc 74 bool HTMLScanner::StringRange::GetTagAttribute(const wchar_t* attribute_name,
76 if (NULL == attribute_name || NULL == attribute_value) {
83 std::string search_name_ascii(WideToASCII(attribute_name));
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin.h 48 // Update Browser Plugin's DOM Node attribute |attribute_name| with the value
50 void UpdateDOMAttribute(const std::string& attribute_name,
52 // Remove the DOM Node attribute with the name |attribute_name|.
53 void RemoveDOMAttribute(const std::string& attribute_name);
54 // Get Browser Plugin's DOM Node attribute |attribute_name|'s value.
55 std::string GetDOMAttributeValue(const std::string& attribute_name) const;
56 // Checks if the attribute |attribute_name| exists in the DOM.
57 bool HasDOMAttribute(const std::string& attribute_name) const;
browser_plugin.cc 138 void BrowserPlugin::UpdateDOMAttribute(const std::string& attribute_name,
145 WebKit::WebString::fromUTF8(attribute_name);
146 if (!HasDOMAttribute(attribute_name) ||
154 void BrowserPlugin::RemoveDOMAttribute(const std::string& attribute_name) {
159 WebKit::WebString::fromUTF8(attribute_name));
163 const std::string& attribute_name) const {
168 WebKit::WebString::fromUTF8(attribute_name)).utf8();
171 bool BrowserPlugin::HasDOMAttribute(const std::string& attribute_name) const {
176 WebKit::WebString::fromUTF8(attribute_name));
    [all...]
  /external/chromium/chrome/common/extensions/
update_manifest.cc 71 static std::string GetAttribute(xmlNode* node, const char* attribute_name) {
72 const xmlChar* name = reinterpret_cast<const xmlChar*>(attribute_name);
  /external/chromium_org/chrome/common/extensions/
update_manifest.cc 73 static std::string GetAttribute(xmlNode* node, const char* attribute_name) {
74 const xmlChar* name = reinterpret_cast<const xmlChar*>(attribute_name);
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
compute_dependencies.py 145 for attribute_name, attribute_value in extended_attributes.iteritems():
146 if attribute_name not in ['Conditional', 'EnabledAtRuntime', 'EnabledPerContext']:
148 extended_attribute = attribute_name
  /external/chromium_org/third_party/pymock/
mock.py 1113 attribute_name = None variable in class:_patch
    [all...]
  /external/chromium_org/chrome/renderer/
chrome_render_view_observer.cc     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py     [all...]
  /external/emma/lib/
emma.jar 

Completed in 415 milliseconds