Home
last modified time | relevance | path

Searched refs:getAttribute (Results 1 – 25 of 242) sorted by relevance

12345678910

/external/webkit/WebCore/html/
DHTMLNameCollection.cpp64 if (e->getAttribute(nameAttr) == m_name) in itemAfter()
66 if (e->getAttribute(e->idAttributeName()) == m_name) in itemAfter()
74 if (e->getAttribute(nameAttr) == m_name) in itemAfter()
77 … if (e->getAttribute(nameAttr) == m_name || e->getAttribute(e->idAttributeName()) == m_name) in itemAfter()
80 … if ((e->getAttribute(nameAttr) == m_name || e->getAttribute(e->idAttributeName()) == m_name) in itemAfter()
84 …if (e->getAttribute(nameAttr) == m_name || (e->getAttribute(e->idAttributeName()) == m_name && e->… in itemAfter()
DHTMLTableCellElement.cpp144 return getAttribute(abbrAttr); in abbr()
154 return getAttribute(alignAttr); in align()
164 return getAttribute(axisAttr); in axis()
174 return getAttribute(bgcolorAttr); in bgColor()
184 return getAttribute(charAttr); in ch()
194 return getAttribute(charoffAttr); in chOff()
209 return getAttribute(headersAttr); in headers()
219 return getAttribute(heightAttr); in height()
229 return !getAttribute(nowrapAttr).isNull(); in noWrap()
244 return getAttribute(scopeAttr); in scope()
[all …]
DHTMLAppletElement.cpp104 if (getAttribute(codeAttr).isNull()) in rendererIsNeeded()
115 args.set("code", getAttribute(codeAttr)); in createRenderer()
117 const AtomicString& codeBase = getAttribute(codebaseAttr); in createRenderer()
121 …const AtomicString& name = getAttribute(document()->isHTMLDocument() ? nameAttr : idAttributeName(… in createRenderer()
124 const AtomicString& archive = getAttribute(archiveAttr); in createRenderer()
130 const AtomicString& mayScript = getAttribute(mayscriptAttr); in createRenderer()
173 return getAttribute(hspaceAttr); in hspace()
183 return getAttribute(vspaceAttr); in vspace()
DHTMLImageElement.cpp153 String alt = getAttribute(altAttr); in altText()
156 alt = getAttribute(titleAttr); in altText()
241 int width = getAttribute(widthAttr).toInt(&ok); in width()
265 int height = getAttribute(heightAttr).toInt(&ok); in height()
310 return getAttribute(altAttr); in alt()
316 return !equalIgnoringCase(getAttribute(draggableAttr), "false"); in draggable()
327 return getAttribute(hspaceAttr).toInt(); in hspace()
337 return !getAttribute(ismapAttr).isNull(); in isMap()
347 return document()->completeURL(getAttribute(longdescAttr)); in longDesc()
357 return document()->completeURL(getAttribute(lowsrcAttr)); in lowsrc()
[all …]
DHTMLDataGridColElement.cpp58 …m_column = DataGridColumn::create(getAttribute(idAttributeName()), label(), type(), primary(), sor… in ensureColumn()
87 return getAttribute(labelAttr); in label()
97 return getAttribute(typeAttr); in type()
109 return getAttribute(sortableAttr).toInt(0); in sortable()
119 String sortDirection = getAttribute(sortdirectionAttr); in sortDirection()
166 column()->setId(getAttribute(idAttributeName())); in parseMappedAttribute()
DHTMLObjectElement.cpp131 bool isGearsPlugin = equalIgnoringCase(getAttribute(typeAttr), "application/x-googlegears"); in rendererIsNeeded()
303 return !getAttribute(declareAttr).isNull(); in declare()
313 return getAttribute(hspaceAttr).toInt(); in hspace()
323 return getAttribute(vspaceAttr).toInt(); in vspace()
333 if (MIMETypeRegistry::isJavaAppletMIMEType(getAttribute(typeAttr))) in containsJavaApplet()
338 && equalIgnoringCase(child->getAttribute(nameAttr), "type") in containsJavaApplet()
339 && MIMETypeRegistry::isJavaAppletMIMEType(child->getAttribute(valueAttr).string())) in containsJavaApplet()
355 addSubresourceURL(urls, document()->completeURL(getAttribute(dataAttr))); in addSubresourceAttributeURLs()
359 const AtomicString& useMap = getAttribute(usemapAttr); in addSubresourceAttributeURLs()
DHTMLLinkElement.cpp225 String charset = getAttribute(charsetAttr); in process()
372 return !getAttribute(disabledAttr).isNull(); in disabled()
382 return getAttribute(charsetAttr); in charset()
392 return document()->completeURL(getAttribute(hrefAttr)); in href()
402 return getAttribute(hreflangAttr); in hreflang()
412 return getAttribute(mediaAttr); in media()
422 return getAttribute(relAttr); in rel()
432 return getAttribute(revAttr); in rev()
442 return getAttribute(targetAttr); in target()
452 return getAttribute(typeAttr); in type()
DHTMLScriptElement.cpp153 return !getAttribute(deferAttr).isNull(); in defer()
200 return getAttribute(srcAttr).string(); in sourceAttributeValue()
205 return getAttribute(charsetAttr).string(); in charsetAttributeValue()
210 return getAttribute(typeAttr).string(); in typeAttributeValue()
215 return getAttribute(languageAttr).string(); in languageAttributeValue()
220 return getAttribute(forAttr).string(); in forAttributeValue()
DHTMLTableColElement.cpp110 return getAttribute(alignAttr); in align()
120 return getAttribute(charAttr); in ch()
130 return getAttribute(charoffAttr); in chOff()
145 return getAttribute(valignAttr); in vAlign()
155 return getAttribute(widthAttr); in width()
DHTMLFormCollection.cpp114 if (e->isEnumeratable() && e->getAttribute(attributeName) == name) { in getNamedFormItem()
126 if (e->getAttribute(attributeName) == name) { in getNamedFormItem()
179 while (impl && impl->getAttribute(impl->idAttributeName()) == name) in nextNamedItem()
196 const AtomicString& idAttrVal = e->getAttribute(e->idAttributeName()); in updateNameCache()
197 const AtomicString& nameAttrVal = e->getAttribute(nameAttr); in updateNameCache()
223 const AtomicString& idAttrVal = e->getAttribute(e->idAttributeName()); in updateNameCache()
224 const AtomicString& nameAttrVal = e->getAttribute(nameAttr); in updateNameCache()
DHTMLInputElement.cpp238 const AtomicString& pattern = getAttribute(patternAttr); in patternMismatch()
375 return parseToDouble(getAttribute(minAttr), dateDefaultMinimum); in minimum()
378 return parseToDouble(getAttribute(minAttr), dateTimeDefaultMinimum); in minimum()
380 return parseToDouble(getAttribute(minAttr), monthDefaultMinimum); in minimum()
382 return parseToDouble(getAttribute(minAttr), numberDefaultMinimum); in minimum()
384 return parseToDouble(getAttribute(minAttr), rangeDefaultMinimum); in minimum()
386 return parseToDouble(getAttribute(minAttr), timeDefaultMinimum); in minimum()
388 return parseToDouble(getAttribute(minAttr), weekDefaultMinimum); in minimum()
415 return parseToDouble(getAttribute(maxAttr), dateDefaultMaximum); in maximum()
418 return parseToDouble(getAttribute(maxAttr), dateTimeDefaultMaximum); in maximum()
[all …]
DHTMLMetaElement.cpp103 return getAttribute(contentAttr); in content()
113 return getAttribute(http_equivAttr); in httpEquiv()
123 return getAttribute(nameAttr); in name()
133 return getAttribute(schemeAttr); in scheme()
DHTMLTableRowElement.cpp181 return getAttribute(alignAttr); in align()
191 return getAttribute(bgcolorAttr); in bgColor()
201 return getAttribute(charAttr); in ch()
211 return getAttribute(charoffAttr); in chOff()
221 return getAttribute(valignAttr); in vAlign()
DHTMLTableSectionElement.cpp130 return getAttribute(alignAttr); in align()
140 return getAttribute(charAttr); in ch()
150 return getAttribute(charoffAttr); in chOff()
160 return getAttribute(valignAttr); in vAlign()
/external/webkit/WebCore/svg/
DSVGFontFaceElement.cpp128 const AtomicString& value = getAttribute(units_per_emAttr); in unitsPerEm()
137 return static_cast<int>(ceilf(getAttribute(x_heightAttr).toFloat())); in xHeight()
148 return m_fontElement->getAttribute(horiz_origin_xAttr).toFloat(); in horizontalOriginX()
159 return m_fontElement->getAttribute(horiz_origin_yAttr).toFloat(); in horizontalOriginY()
170 return m_fontElement->getAttribute(horiz_adv_xAttr).toFloat(); in horizontalAdvanceX()
181 const AtomicString& value = m_fontElement->getAttribute(vert_origin_xAttr); in verticalOriginX()
196 const AtomicString& value = m_fontElement->getAttribute(vert_origin_yAttr); in verticalOriginY()
210 const AtomicString& value = m_fontElement->getAttribute(vert_adv_yAttr); in verticalAdvanceY()
223 const AtomicString& ascentValue = getAttribute(ascentAttr); in ascent()
228 const AtomicString& vertOriginY = m_fontElement->getAttribute(vert_origin_yAttr); in ascent()
[all …]
DSVGHKernElement.cpp70 kerningPair.unicode1 = getAttribute(u1Attr); in buildHorizontalKerningPair()
71 kerningPair.glyphName1 = getAttribute(g1Attr); in buildHorizontalKerningPair()
72 kerningPair.unicode2 = getAttribute(u2Attr); in buildHorizontalKerningPair()
73 kerningPair.glyphName2 = getAttribute(g2Attr); in buildHorizontalKerningPair()
74 kerningPair.kerning = getAttribute(kAttr).string().toDouble(); in buildHorizontalKerningPair()
DSVGGlyphElement.cpp127 AtomicString value(element->getAttribute(name)); in parseSVGGlyphAttribute()
137 identifier.pathData = parsePathData(element->getAttribute(dAttr)); in buildGenericGlyphIdentifier()
166 identifier.glyphName = getAttribute(glyph_nameAttr); in buildGlyphIdentifier()
167 identifier.orientation = parseOrientation(getAttribute(orientationAttr)); in buildGlyphIdentifier()
168 identifier.arabicForm = parseArabicForm(getAttribute(arabic_formAttr)); in buildGlyphIdentifier()
170 String language = getAttribute(SVGNames::langAttr); in buildGlyphIdentifier()
/external/webkit/WebCore/inspector/front-end/
DTextEditorHighlighter.js78 var state = this._textModel.getAttribute(endLine - 1, "highlighter-state")
94 var state = this._textModel.getAttribute(startLine - 1, "highlighter-state");
114 var state = this._textModel.getAttribute(this._requestedEndLine - 1, "highlighter-state");
137 var state = this._textModel.getAttribute(startLine - 1, "highlighter-state");
148 var highlighterState = this._textModel.getAttribute(i, "highlighter-state");
159 var state = this._textModel.getAttribute(startLine - 1, "highlighter-state");
175 var nextLineState = this._textModel.getAttribute(i + 1, "highlighter-state");
Dutilities.js390 var value = this.getAttribute("id");
393 value = this.getAttribute("class");
397 value = this.getAttribute("name");
400 value = this.getAttribute("href");
404 value = this.getAttribute("src");
408 value = this.getAttribute("src");
412 value = this.getAttribute("name");
415 value = this.getAttribute("type");
419 value = this.getAttribute("action");
529 var id = node.getAttribute("id");
[all …]
/external/webkit/WebCore/accessibility/
DAccessibilityRenderObject.cpp341 if (equalIgnoringCase(getAttribute(aria_pressedAttr).string(), "true")) in isPressed()
376 if (equalIgnoringCase(getAttribute(aria_checkedAttr), "true")) in isChecked()
395 const AtomicString& ariaMultiSelectable = getAttribute(aria_multiselectableAttr); in isMultiSelectable()
458 return element->getAttribute(aria_levelAttr).toInt(); in headingLevel()
548 const AtomicString& AccessibilityRenderObject::getAttribute(const QualifiedName& attribute) const in getAttribute() function in WebCore::AccessibilityRenderObject
558 return element->getAttribute(attribute); in getAttribute()
673 … String siblingAriaRole = static_cast<Element*>(sibling)->getAttribute(roleAttr).string(); in siblingWithAriaRole()
727 … const AtomicString& summary = static_cast<Element*>(curr->node())->getAttribute(summaryAttr); in helpText()
730 … const AtomicString& title = static_cast<Element*>(curr->node())->getAttribute(titleAttr); in helpText()
748 String ariaLevel = element->getAttribute(aria_levelAttr); in hierarchicalLevel()
[all …]
DAccessibilityImageMapLink.cpp76 const AtomicString& ariaRole = m_areaElement->getAttribute(roleAttr); in roleValue()
106 const AtomicString& alt = m_areaElement->getAttribute(altAttr); in accessibilityDescription()
118 const AtomicString& title = m_areaElement->getAttribute(titleAttr); in title()
121 const AtomicString& summary = m_areaElement->getAttribute(summaryAttr); in title()
DAccessibilitySlider.cpp97 const AtomicString& AccessibilitySlider::getAttribute(const QualifiedName& attribute) const in getAttribute() function in WebCore::AccessibilitySlider
99 return element()->getAttribute(attribute); in getAttribute()
109 return getAttribute(maxAttr).toFloat(); in maxValueForRange()
114 return getAttribute(minAttr).toFloat(); in minValueForRange()
/external/apache-http/src/org/apache/http/protocol/
DDefaultedHttpContext.java58 public Object getAttribute(final String id) { in getAttribute() method in DefaultedHttpContext
59 Object obj = this.local.getAttribute(id); in getAttribute()
61 return this.defaults.getAttribute(id); in getAttribute()
/external/chromium/third_party/icu/source/test/letest/
Dxmlreader.cpp168 char *id = getCString(testCase->getAttribute(id_attr)); in readTestFile()
169 char *script = getCString(testCase->getAttribute(script_attr)); in readTestFile()
170 char *lang = getCString(testCase->getAttribute(lang_attr)); in readTestFile()
204 fontName = getCString(element->getAttribute(name_attr)); in readTestFile()
205 fontVer = getCString(element->getAttribute(ver_attr)); in readTestFile()
206 fontCksum = getCString(element->getAttribute(cksum_attr)); in readTestFile()
/external/icu4c/test/letest/
Dxmlreader.cpp168 char *id = getCString(testCase->getAttribute(id_attr)); in readTestFile()
169 char *script = getCString(testCase->getAttribute(script_attr)); in readTestFile()
170 char *lang = getCString(testCase->getAttribute(lang_attr)); in readTestFile()
204 fontName = getCString(element->getAttribute(name_attr)); in readTestFile()
205 fontVer = getCString(element->getAttribute(ver_attr)); in readTestFile()
206 fontCksum = getCString(element->getAttribute(cksum_attr)); in readTestFile()

12345678910