Searched refs:attrName (Results 101 - 125 of 198) sorted by relevance

12345678

/external/webkit/Source/WebCore/svg/
H A DSVGFEFloodElement.cpp44 bool SVGFEFloodElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
52 if (attrName == SVGNames::flood_colorAttr)
54 if (attrName == SVGNames::flood_opacityAttr)
H A DSVGSVGElement.cpp292 static void updateCSSForAttribute(SVGSVGElement* element, const QualifiedName& attrName, CSSPropertyID property, const SVGLength& value) argument
294 Attribute* attribute = element->attributes(false)->getAttributeItem(attrName);
300 void SVGSVGElement::svgAttributeChanged(const QualifiedName& attrName) argument
302 SVGStyledElement::svgAttributeChanged(attrName);
310 if (attrName == SVGNames::widthAttr) {
311 updateCSSForAttribute(this, attrName, CSSPropertyWidth, widthBaseValue());
313 } else if (attrName == SVGNames::heightAttr) {
314 updateCSSForAttribute(this, attrName, CSSPropertyHeight, heightBaseValue());
319 || attrName == SVGNames::xAttr
320 || attrName
340 synchronizeProperty(const QualifiedName& attrName) argument
[all...]
H A DSVGFEBlendElement.h39 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& attrName);
H A DSVGFitToViewBox.cpp108 bool SVGFitToViewBox::isKnownAttribute(const QualifiedName& attrName) argument
110 return attrName == SVGNames::viewBoxAttr || attrName == SVGNames::preserveAspectRatioAttr;
H A DSVGFEDisplacementMapElement.h41 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& attrName);
H A DSVGFETurbulenceElement.h47 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& attrName);
/external/webkit/Source/WebCore/html/
H A DHTMLFontElement.cpp124 bool HTMLFontElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const
126 if (attrName == sizeAttr ||
127 attrName == colorAttr ||
128 attrName == faceAttr) {
133 return HTMLElement::mapToEntry(attrName, result);
H A DHTMLLIElement.cpp53 bool HTMLLIElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const argument
55 if (attrName == typeAttr) {
60 return HTMLElement::mapToEntry(attrName, result);
H A DHTMLMapElement.cpp106 const QualifiedName& attrName = attribute->name(); local
107 if (isIdAttributeName(attrName) || attrName == nameAttr) {
109 if (isIdAttributeName(attrName)) {
H A DHTMLScriptElement.cpp71 const QualifiedName& attrName = attr->name(); local
73 if (attrName == srcAttr)
75 else if (attrName == onloadAttr)
77 else if (attrName == onbeforeloadAttr)
79 else if (attrName == onbeforeprocessAttr)
H A DHTMLTableCellElement.cpp73 bool HTMLTableCellElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const argument
75 if (attrName == nowrapAttr) {
80 if (attrName == widthAttr ||
81 attrName == heightAttr) {
86 return HTMLTablePartElement::mapToEntry(attrName, result);
H A DHTMLEmbedElement.h37 virtual bool mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const;
H A DHTMLPlugInElement.h59 virtual bool mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const;
H A DHTMLVideoElement.cpp96 const QualifiedName& attrName = attr->name(); local
98 if (attrName == posterAttr) {
114 } else if (attrName == widthAttr)
116 else if (attrName == heightAttr)
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
H A DST.stg67 public STAttrMap Add(string attrName, object value)
69 base.Add(attrName, value);
72 public STAttrMap Add(string attrName, int value)
74 base.Add(attrName, value);
163 /** An action has %st.attrName=expr; or %{st}.attrName=expr; */
164 actionSetAttribute(st,attrName,expr) ::= <<
165 (<st>).SetAttribute("<attrName>",<expr>);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
H A DST.stg61 public STAttrMap put(String attrName, Object value) {
62 super.put(attrName, value);
65 public STAttrMap put(String attrName, int value) {
66 super.put(attrName, new Integer(value));
154 /** An action has %st.attrName=expr; or %{st}.attrName=expr; */
155 actionSetAttribute(st,attrName,expr) ::= <<
156 (<st>).setAttribute("<attrName>",<expr>);
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DTreeWalker.java330 final String attrName = attr.getNodeName();
331 final int colon = attrName.indexOf(':');
334 // System.out.println("TreeWalker#startNode: attr["+i+"] = "+attrName+", "+attr.getNodeValue());
335 if (attrName.equals("xmlns") || attrName.startsWith("xmlns:"))
343 prefix = attrName.substring(colon + 1);
349 prefix = attrName.substring(0,colon);
477 final String attrName = attr.getNodeName();
478 final int colon = attrName.indexOf(':');
481 if (attrName
[all...]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DSchema.java71 @param attrName Name (Qname) of the attribute
76 public void attribute(String elemName, String attrName, argument
80 throw new Error("Attribute " + attrName +
84 e.setAttribute(attrName, type, value);
/external/webkit/Source/WebCore/wml/
H A DWMLElement.cpp52 bool WMLElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const argument
54 if (attrName == HTMLNames::alignAttr) {
59 return StyledElement::mapToEntry(attrName, result);
H A DWMLPElement.cpp51 bool WMLPElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const argument
53 if (attrName == HTMLNames::alignAttr) {
58 return WMLElement::mapToEntry(attrName, result);
H A DWMLElement.h37 virtual bool mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const;
/external/webkit/Source/WebKit/chromium/src/
H A DDOMUtilitiesPrivate.h62 const WebCore::QualifiedName& attrName);
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DTreeWalker.java340 String attrName = attr.getNodeName();
342 // System.out.println("TreeWalker#startNode: attr["+i+"] = "+attrName+", "+attr.getNodeValue());
343 if (attrName.equals("xmlns") || attrName.startsWith("xmlns:"))
345 // System.out.println("TreeWalker#startNode: attr["+i+"] = "+attrName+", "+attr.getNodeValue());
350 String prefix = (index = attrName.indexOf(":")) < 0
351 ? "" : attrName.substring(index + 1);
475 String attrName = attr.getNodeName();
477 if (attrName.equals("xmlns") || attrName
[all...]
/external/clang/include/clang/Sema/
H A DAttributeList.h151 AttributeList(IdentifierInfo *attrName, SourceRange attrRange, argument
156 : AttrName(attrName), ScopeName(scopeName), ParmName(parmName),
166 AttributeList(IdentifierInfo *attrName, SourceRange attrRange, argument
175 : AttrName(attrName), ScopeName(scopeName), ParmName(parmName),
189 AttributeList(IdentifierInfo *attrName, SourceRange attrRange, argument
195 : AttrName(attrName), ScopeName(scopeName), ParmName(argumentKindName),
447 AttributeList *create(IdentifierInfo *attrName, SourceRange attrRange,
454 return add(new (memory) AttributeList(attrName, attrRange,
460 AttributeList *create(IdentifierInfo *attrName, SourceRange attrRange,
470 return add(new (memory) AttributeList(attrName, attrRang
[all...]
/external/webkit/Tools/DumpRenderTree/mac/
H A DTextInputController.m118 - (id)valueOfAttribute:(NSString *)attrName atIndex:(int)index
120 return [self attribute:attrName atIndex:(unsigned)index effectiveRange:nil];
123 - (void)addAttribute:(NSString *)attrName value:(id)value
125 [self addAttribute:attrName value:value range:NSMakeRange(0, [self length])];
128 - (void)addAttribute:(NSString *)attrName value:(id)value from:(int)from length:(int)length
130 [self addAttribute:attrName value:value range:NSMakeRange((unsigned)from, (unsigned)length)];
133 - (void)addColorAttribute:(NSString *)attrName red:(float)red green:(float)green blue:(float)blue alpha:(float)alpha
135 [self addAttribute:attrName value:[NSColor colorWithDeviceRed:red green:green blue:blue alpha:alpha] range:NSMakeRange(0, [self length])];
138 - (void)addColorAttribute:(NSString *)attrName red:(float)red green:(float)green blue:(float)blue alpha:(float)alpha from:(int)from length:(int)length
140 [self addAttribute:attrName valu
[all...]

Completed in 376 milliseconds

12345678