Searched refs:attribute_name (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/content/browser/accessibility/
H A Daccessibility_tree_formatter_android.cc96 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),
H A Daccessibility_tree_formatter_win.cc216 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/
H A Dautofill_xml_parser.cc72 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
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/
H A Dautofill_xml_parser.cc56 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/
H A Dsavable_resources.cc151 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/
H A Ddom_operations.cc154 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);
310 GetMetaElementsWithAttribute(WebDocument* document, const string16& attribute_name, const string16& attribute_value, std::vector<WebElement>* meta_elements) argument
[all...]
H A Ddom_operations.h88 // Puts the meta-elements of |document| that have the attribute |attribute_name|
92 const string16& attribute_name,
/external/chromium/chrome/common/
H A Dlibxml_utils.h151 bool AddAttribute(const std::string& attribute_name, argument
154 BAD_CAST attribute_name.c_str(),
/external/chromium_org/third_party/libxml/chromium/
H A Dlibxml_utils.h137 bool AddAttribute(const std::string& attribute_name, argument
140 BAD_CAST attribute_name.c_str(),
/external/chromium_org/chrome/test/chromedriver/
H A Delement_util.h41 const std::string& attribute_name,
48 const std::string& attribute_name,
H A Delement_util.cc293 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);
289 GetElementAttribute( Session* session, WebView* web_view, const std::string& element_id, const std::string& attribute_name, scoped_ptr<base::Value>* value) argument
303 IsElementAttributeEqualToIgnoreCase( Session* session, WebView* web_view, const std::string& element_id, const std::string& attribute_name, const std::string& attribute_value, bool* is_equal) argument
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DAttribute_info.java112 final CONSTANT_Utf8_info attribute_name = (CONSTANT_Utf8_info) constants.get (attribute_name_index);
113 final String name = attribute_name.m_value;
/external/chromium_org/chrome_frame/
H A Dhtml_utils.h65 bool GetTagAttribute(const wchar_t* attribute_name,
H A Dhtml_utils.cc74 bool HTMLScanner::StringRange::GetTagAttribute(const wchar_t* attribute_name, argument
76 if (NULL == attribute_name || NULL == attribute_value) {
83 std::string search_name_ascii(WideToASCII(attribute_name));
/external/chromium_org/content/renderer/browser_plugin/
H A Dbrowser_plugin.h48 // 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;
H A Dbrowser_plugin.cc138 void BrowserPlugin::UpdateDOMAttribute(const std::string& attribute_name, argument
145 WebKit::WebString::fromUTF8(attribute_name);
146 if (!HasDOMAttribute(attribute_name) ||
154 void BrowserPlugin::RemoveDOMAttribute(const std::string& attribute_name) { argument
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));
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
H A Dcompute_dependencies.py145 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/chrome/common/extensions/
H A Dupdate_manifest.cc71 static std::string GetAttribute(xmlNode* node, const char* attribute_name) { argument
72 const xmlChar* name = reinterpret_cast<const xmlChar*>(attribute_name);
/external/chromium_org/chrome/common/extensions/
H A Dupdate_manifest.cc73 static std::string GetAttribute(xmlNode* node, const char* attribute_name) { argument
74 const xmlChar* name = reinterpret_cast<const xmlChar*>(attribute_name);
/external/chromium_org/third_party/pymock/
H A Dmock.py1113 attribute_name = None variable in class:_patch
1149 patcher.attribute_name = self.attribute_name
1195 if patching.attribute_name is not None:
1360 if self.attribute_name is not None:
1363 extra_args[self.attribute_name] = new
1484 patcher.attribute_name = attribute
1490 this_patcher.attribute_name = attribute
/external/chromium_org/chrome/renderer/
H A Dchrome_render_view_observer.cc880 const WebString attribute_name(ASCIIToUTF16("http-equiv"));
890 WebString value = element.getAttribute(attribute_name);
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 529 milliseconds