Searched refs:attrName (Results 51 - 75 of 162) sorted by relevance

1234567

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGComponentTransferFunctionElement.cpp64 bool SVGComponentTransferFunctionElement::isSupportedAttribute(const QualifiedName& attrName) argument
76 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
84 void SVGComponentTransferFunctionElement::svgAttributeChanged(const QualifiedName& attrName) argument
86 if (!isSupportedAttribute(attrName)) {
87 SVGElement::svgAttributeChanged(attrName);
H A DSVGCursorElement.cpp53 bool SVGCursorElement::isSupportedAttribute(const QualifiedName& attrName) argument
62 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
106 void SVGCursorElement::svgAttributeChanged(const QualifiedName& attrName) argument
108 if (!isSupportedAttribute(attrName)) {
109 SVGElement::svgAttributeChanged(attrName);
H A DSVGFilterPrimitiveStandardAttributes.cpp56 bool SVGFilterPrimitiveStandardAttributes::isSupportedAttribute(const QualifiedName& attrName) argument
66 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
81 void SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(const QualifiedName& attrName) argument
83 if (!isSupportedAttribute(attrName)) {
84 SVGElement::svgAttributeChanged(attrName);
H A DSVGGradientElement.cpp60 bool SVGGradientElement::isSupportedAttribute(const QualifiedName& attrName) argument
69 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
77 void SVGGradientElement::svgAttributeChanged(const QualifiedName& attrName) argument
79 if (!isSupportedAttribute(attrName)) {
80 SVGElement::svgAttributeChanged(attrName);
H A DSVGFEBlendElement.cpp104 bool SVGFEBlendElement::isSupportedAttribute(const QualifiedName& attrName) argument
112 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
120 bool SVGFEBlendElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
123 if (attrName == SVGNames::modeAttr)
130 void SVGFEBlendElement::svgAttributeChanged(const QualifiedName& attrName) argument
132 if (!isSupportedAttribute(attrName)) {
133 SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName);
139 if (attrName == SVGNames::modeAttr) {
140 primitiveAttributeChanged(attrName);
144 if (attrName
[all...]
H A DSVGTextPathElement.cpp77 bool SVGTextPathElement::isSupportedAttribute(const QualifiedName& attrName) argument
86 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
108 void SVGTextPathElement::svgAttributeChanged(const QualifiedName& attrName) argument
110 if (!isSupportedAttribute(attrName)) {
111 SVGTextContentElement::svgAttributeChanged(attrName);
117 if (SVGURIReference::isKnownAttribute(attrName)) {
122 if (attrName == SVGNames::startOffsetAttr)
H A DSVGPatternElement.cpp58 bool SVGPatternElement::isSupportedAttribute(const QualifiedName& attrName) argument
73 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
106 void SVGPatternElement::svgAttributeChanged(const QualifiedName& attrName) argument
108 if (!isSupportedAttribute(attrName)) {
109 SVGElement::svgAttributeChanged(attrName);
115 if (attrName == SVGNames::xAttr
116 || attrName == SVGNames::yAttr
117 || attrName == SVGNames::widthAttr
118 || attrName == SVGNames::heightAttr)
H A DSVGLinearGradientElement.cpp53 bool SVGLinearGradientElement::isSupportedAttribute(const QualifiedName& attrName) argument
62 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
85 void SVGLinearGradientElement::svgAttributeChanged(const QualifiedName& attrName) argument
87 if (!isSupportedAttribute(attrName)) {
88 SVGGradientElement::svgAttributeChanged(attrName);
H A DSVGGraphicsElement.cpp170 bool SVGGraphicsElement::isSupportedAttribute(const QualifiedName& attrName) argument
177 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
185 void SVGGraphicsElement::svgAttributeChanged(const QualifiedName& attrName) argument
187 if (!isSupportedAttribute(attrName)) {
188 SVGElement::svgAttributeChanged(attrName);
195 if (SVGTests::isKnownAttribute(attrName)) {
204 if (attrName == SVGNames::transformAttr) {
H A DSVGAElement.cpp83 void SVGAElement::svgAttributeChanged(const QualifiedName& attrName) argument
87 if (SVGURIReference::isKnownAttribute(attrName)) {
99 SVGGraphicsElement::svgAttributeChanged(attrName);
H A DSVGFEComponentTransferElement.cpp45 bool SVGFEComponentTransferElement::isSupportedAttribute(const QualifiedName& attrName) argument
50 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
H A DSVGPathElement.cpp179 bool SVGPathElement::isSupportedAttribute(const QualifiedName& attrName) argument
186 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
211 void SVGPathElement::svgAttributeChanged(const QualifiedName& attrName) argument
213 if (!isSupportedAttribute(attrName)) {
214 SVGGeometryElement::svgAttributeChanged(attrName);
222 if (attrName == SVGNames::dAttr) {
H A DSVGTextContentElement.cpp196 bool SVGTextContentElement::isSupportedAttribute(const QualifiedName& attrName) argument
204 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
245 void SVGTextContentElement::svgAttributeChanged(const QualifiedName& attrName) argument
247 if (!isSupportedAttribute(attrName)) {
248 SVGGraphicsElement::svgAttributeChanged(attrName);
252 if (attrName == SVGNames::textLengthAttr)
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
H A DX500NameStyle.java28 * @param attrName the string to match.
31 ASN1ObjectIdentifier attrNameToOID(String attrName); argument
/external/clang/include/clang/Sema/
H A DAttributeList.h215 AttributeList(IdentifierInfo *attrName, SourceRange attrRange, argument
219 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange),
229 AttributeList(IdentifierInfo *attrName, SourceRange attrRange, argument
237 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange),
252 AttributeList(IdentifierInfo *attrName, SourceRange attrRange, argument
258 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange),
272 AttributeList(IdentifierInfo *attrName, SourceRange attrRange, argument
276 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange),
291 AttributeList(IdentifierInfo *attrName, SourceRange attrRange, argument
294 : AttrName(attrName), ScopeNam
304 AttributeList(IdentifierInfo *attrName, SourceRange attrRange, IdentifierInfo *scopeName, SourceLocation scopeLoc, IdentifierInfo *getterId, IdentifierInfo *setterId, Syntax syntaxUsed) argument
714 addNew(IdentifierInfo *attrName, SourceRange attrRange, IdentifierInfo *scopeName, SourceLocation scopeLoc, ArgsUnion *args, unsigned numArgs, AttributeList::Syntax syntax, SourceLocation ellipsisLoc = SourceLocation()) argument
727 addNew(IdentifierInfo *attrName, SourceRange attrRange, IdentifierInfo *scopeName, SourceLocation scopeLoc, IdentifierLoc *Param, const AvailabilityChange &introduced, const AvailabilityChange &deprecated, const AvailabilityChange &obsoleted, SourceLocation unavailable, const Expr *MessageExpr, AttributeList::Syntax syntax) argument
744 addNew(IdentifierInfo *attrName, SourceRange attrRange, IdentifierInfo *scopeName, SourceLocation scopeLoc, IdentifierLoc *Param1, IdentifierLoc *Param2, IdentifierLoc *Param3, AttributeList::Syntax syntax) argument
758 addNewTypeTagForDatatype( IdentifierInfo *attrName, SourceRange attrRange, IdentifierInfo *scopeName, SourceLocation scopeLoc, IdentifierLoc *argumentKind, ParsedType matchingCType, bool layoutCompatible, bool mustBeNull, AttributeList::Syntax syntax) argument
775 addNewTypeAttr(IdentifierInfo *attrName, SourceRange attrRange, IdentifierInfo *scopeName, SourceLocation scopeLoc, ParsedType typeArg, AttributeList::Syntax syntaxUsed) argument
787 addNewPropertyAttr(IdentifierInfo *attrName, SourceRange attrRange, IdentifierInfo *scopeName, SourceLocation scopeLoc, IdentifierInfo *getterId, IdentifierInfo *setterId, AttributeList::Syntax syntaxUsed) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLCollection.h157 inline void HTMLCollection::invalidateCacheForAttribute(const QualifiedName* attrName) const
159 if (!attrName || shouldInvalidateTypeOnAttributeChange(invalidationType(), *attrName))
161 else if (*attrName == HTMLNames::idAttr || *attrName == HTMLNames::nameAttr)
H A DHTMLFormControlsCollection.cpp113 const WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> >* imageElementsArray, const QualifiedName& attrName, const String& name)
115 ASSERT(attrName == idAttr || attrName == nameAttr);
119 if (elementsArray[i]->isEnumeratable() && element->fastGetAttribute(attrName) == name)
128 if (element->fastGetAttribute(attrName) == name) {
112 firstNamedItem(const FormAssociatedElement::List& elementsArray, const WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> >* imageElementsArray, const QualifiedName& attrName, const String& name) argument
/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/owasp/sanitizer/src/main/org/owasp/html/
H A DPolicyFactory.java181 String attrName = e.getKey();
183 attrName,
185 e.getValue(), f.globalAttrPolicies.get(attrName)));
189 String attrName = e.getKey();
190 if (!this.globalAttrPolicies.containsKey(attrName)) {
191 ab.put(attrName, e.getValue());
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
H A DST.stg153 - (STAttrMap *) setObject:(id)aValue forKey:(NS*)String attrName
155 [super setObject:value forKey:attrName];
158 - (STAttrMap *) setObjectWithInt:(NSInteger)value forKey:(NSString *)attrName
160 [super setObject:[NSNumber numberWithInteger:value] forKey:attrName];
185 - (STAttrMap *) setObject:(id)value forKey:(NSString *)attrName;
186 - (STAttrMap *) setObjectWithInt:(NSInteger)value forKey:(NSString *)attrName;
221 - (STAttrMap *) setObject:(id)value forKey:(NSString *)attrName;
222 - (STAttrMap *) setObjectWithInt:(NSInteger)value forKey:(NSString *)attrName;
358 /** An action has %st.attrName=expr; or %{st}.attrName
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DClassReader.java455 String attrName;
510 attrName = readUTF8(v, c);
513 if ("SourceFile".equals(attrName)) {
515 } else if ("InnerClasses".equals(attrName)) {
517 } else if ("EnclosingMethod".equals(attrName)) {
524 } else if (SIGNATURES && "Signature".equals(attrName)) {
526 } else if (ANNOTATIONS && "RuntimeVisibleAnnotations".equals(attrName)) {
528 } else if ("Deprecated".equals(attrName)) {
530 } else if ("Synthetic".equals(attrName)) {
532 } else if ("SourceDebugExtension".equals(attrName)) {
[all...]

Completed in 2834 milliseconds

1234567