HomeSort by relevance Sort by last modified time
    Searched refs:getAttribute (Results 26 - 50 of 590) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/svg/
SVGFontFaceNameElement.cpp 42 return CSSFontFaceSrcValue::createLocal(getAttribute(SVGNames::nameAttr));
SVGAltGlyphElement.cpp 78 return getAttribute(SVGNames::glyphRefAttr);
88 return getAttribute(SVGNames::formatAttr);
105 Element* elt = document()->getElementById(getTarget(getAttribute(XLinkNames::hrefAttr)));
SVGFontFaceElement.cpp 126 const AtomicString& value = getAttribute(units_per_emAttr);
135 return static_cast<int>(ceilf(getAttribute(x_heightAttr).toFloat()));
146 return m_fontElement->getAttribute(horiz_origin_xAttr).toFloat();
157 return m_fontElement->getAttribute(horiz_origin_yAttr).toFloat();
168 return m_fontElement->getAttribute(horiz_adv_xAttr).toFloat();
179 const AtomicString& value = m_fontElement->getAttribute(vert_origin_xAttr);
194 const AtomicString& value = m_fontElement->getAttribute(vert_origin_yAttr);
208 const AtomicString& value = m_fontElement->getAttribute(vert_adv_yAttr);
221 const AtomicString& ascentValue = getAttribute(ascentAttr);
226 const AtomicString& vertOriginY = m_fontElement->getAttribute(vert_origin_yAttr)
    [all...]
SVGGlyphElement.cpp 128 AtomicString value(element->getAttribute(name));
152 identifier.pathData = parsePathData(element->getAttribute(dAttr));
181 identifier.glyphName = getAttribute(glyph_nameAttr);
182 identifier.orientation = parseOrientation(getAttribute(orientationAttr));
183 identifier.arabicForm = parseArabicForm(getAttribute(arabic_formAttr));
185 String language = getAttribute(SVGNames::langAttr);
SVGFontFaceUriElement.cpp 57 RefPtr<CSSFontFaceSrcValue> src = CSSFontFaceSrcValue::create(getAttribute(XLinkNames::hrefAttr));
58 AtomicString value(getAttribute(formatAttr));
95 String href = getAttribute(XLinkNames::hrefAttr);
SVGStyleElement.cpp 57 const AtomicString& n = getAttribute(SVGNames::typeAttr);
69 const AtomicString& n = getAttribute(SVGNames::mediaAttr);
80 return getAttribute(SVGNames::titleAttr);
  /external/webkit/Source/WebCore/html/
HTMLMetaElement.cpp 96 return getAttribute(contentAttr);
101 return getAttribute(http_equivAttr);
106 return getAttribute(nameAttr);
HTMLScriptElement.cpp 163 return getAttribute(srcAttr).string();
168 return getAttribute(charsetAttr).string();
173 return getAttribute(typeAttr).string();
178 return getAttribute(languageAttr).string();
183 return getAttribute(forAttr).string();
188 return getAttribute(eventAttr).string();
HTMLDataGridColElement.cpp 92 return getAttribute(labelAttr);
102 return getAttribute(typeAttr);
114 return getAttribute(sortableAttr).toInt(0);
124 String sortDirection = getAttribute(sortdirectionAttr);
HTMLTableSectionElement.cpp 114 return getAttribute(alignAttr);
124 return getAttribute(charAttr);
134 return getAttribute(charoffAttr);
144 return getAttribute(valignAttr);
  /packages/apps/Mms/src/com/android/mms/dom/smil/
ElementTimeImpl.java 71 String[] beginTimeStringList = mSmilElement.getAttribute("begin").split(";");
111 String durString = mSmilElement.getAttribute("dur");
125 String[] endTimeStringList = mSmilElement.getAttribute("end").split(";");
174 String fill = mSmilElement.getAttribute(FILL_ATTRIBUTE_NAME);
207 if (((mSmilElement.getAttribute("dur").length() == 0) &&
208 (mSmilElement.getAttribute("end").length() == 0) &&
209 (mSmilElement.getAttribute("repeatCount").length() == 0) &&
210 (mSmilElement.getAttribute("repeatDur").length() == 0)) ||
219 String fillDefault = mSmilElement.getAttribute(FILLDEFAULT_ATTRIBUTE_NAME);
253 String repeatCount = mSmilElement.getAttribute("repeatCount")
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
ProviderServiceTest.java 82 s.getAttribute(null);
87 assertNull("getAttribute(aaa) failed", s.getAttribute("aaa"));
96 assertNull("getAttribute(bbb) failed", s.getAttribute("bbb"));
97 assertEquals("getAttribute(attribute) failed", "value", s
98 .getAttribute("attribute"));
99 assertEquals("getAttribute(KeySize) failed", "1024", s
100 .getAttribute("KeySize"));
  /external/webkit/Source/WebCore/inspector/front-end/
TextEditorHighlighter.js 56 var state = this._textModel.getAttribute(endLine - 1, "highlight");
72 var state = this._textModel.getAttribute(startLine - 1, "highlight");
88 var state = this._textModel.getAttribute(startLine - 1, "highlight");
98 var state = this._textModel.getAttribute(i, "highlight");
119 var state = this._textModel.getAttribute(this._requestedEndLine - 1, "highlight");
143 var state = this._textModel.getAttribute(startLine - 1, "highlight");
188 var nextLineState = this._textModel.getAttribute(lineNumber + 1, "highlight");
196 var state = this._textModel.getAttribute(lineNumber, "highlight");
212 var state = this._textModel.getAttribute(lineNumber, "highlight");
216 var outdatedState = this._textModel.getAttribute(lineNumber, "highlight-outdated")
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
TestSummaryXml.java 108 mPlan = getAttribute(parser, CtsXmlResultReporter.PLAN_ATTR);
109 mStartTime = getAttribute(parser, CtsXmlResultReporter.STARTTIME_ATTR);
112 mDeviceSerials = getAttribute(parser, DeviceInfoConstants.SERIAL_NUMBER);
  /external/apache-http/src/org/apache/http/impl/client/
DefaultUserTokenHandler.java 52 AuthState targetAuthState = (AuthState) context.getAttribute(
57 AuthState proxyAuthState = (AuthState) context.getAttribute(
64 ManagedClientConnection conn = (ManagedClientConnection) context.getAttribute(
  /external/llvm/lib/DebugInfo/
DWARFAbbreviationDeclaration.cpp 60 const char *attrString = AttributeString(Attribute[i].getAttribute());
64 OS << format("DW_AT_Unknown_%x", Attribute[i].getAttribute());
79 if (Attribute[i].getAttribute() == attr)
  /external/proguard/src/proguard/classfile/
ProgramMember.java 79 (CodeAttribute)getAttribute(clazz, ClassConstants.ATTR_Code);
86 (LineNumberTableAttribute)codeAttribute.getAttribute(clazz,
103 private Attribute getAttribute(Clazz clazz, String name)
  /development/testrunner/coverage/
coverage_targets.py 108 target.SetName(target_element.getAttribute(self._NAME_ATTR))
109 target.SetType(target_element.getAttribute(self._TYPE_ATTR))
110 target.SetBuildPath(target_element.getAttribute(self._BUILD_ATTR))
120 rel_path = src_element.getAttribute(self._PATH_ATTR)
  /external/emma/core/java12/com/vladium/emma/report/
IItem.java 38 IItemAttribute getAttribute (int attributeID, int unitsID);
  /external/smack/src/com/kenai/jbosh/
AbstractBody.java 70 public final String getAttribute(final BodyQName attr) {
  /external/webkit/Source/WebCore/editing/
SetNodeAttributeCommand.cpp 46 m_oldValue = m_element->getAttribute(m_attribute);
  /external/webkit/Source/WebKit/win/
AccessibleImage.cpp 53 const AtomicString& altText = obj->getAttribute(HTMLNames::altAttr);
  /libcore/luni/src/main/java/libcore/icu/
RuleBasedCollatorICU.java 71 return NativeCollation.getAttribute(address, DECOMPOSITION_MODE);
79 return NativeCollation.getAttribute(address, STRENGTH);
90 public int getAttribute(int type) {
91 return NativeCollation.getAttribute(address, type);
  /libcore/luni/src/test/java/libcore/xml/
SimpleBuilderTest.java 83 assertEquals("eins", one.getAttribute("one"));
84 assertEquals("zwei", two.getAttribute("two"));
85 assertEquals("drei", three.getAttribute("three"));
87 assertEquals("vier", four.getAttribute("t:four"));
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
ColladaParser.java 167 String geoURL = shape.getAttribute("url").substring(1);
179 String meshIndexName = materialRef.getAttribute("symbol");
180 String materialName = materialRef.getAttribute("target");
206 String lightURL = shape.getAttribute("url");
217 String camURL = shape.getAttribute("url");
228 String name = node.getAttribute("name");
229 String id = node.getAttribute("id");
248 String description = field.getAttribute("sid");
334 String samplerName = typeElem.getAttribute("texture");
350 String id = mat.getAttribute("id");
    [all...]

Completed in 1322 milliseconds

12 3 4 5 6 7 8 91011>>