HomeSort by relevance Sort by last modified time
    Searched full:attrname (Results 76 - 100 of 326) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
ST.stg 67 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/
ST.stg 61 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/webkit/Source/WebCore/dom/
MutationEvent.idl 33 readonly attribute DOMString attrName;
42 in DOMString attrName,
  /external/webkit/Source/WebCore/svg/
SVGExternalResourcesRequired.cpp 41 bool SVGExternalResourcesRequired::isKnownAttribute(const QualifiedName& attrName)
43 return attrName == SVGNames::externalResourcesRequiredAttr;
SVGFEFloodElement.cpp 44 bool SVGFEFloodElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName)
52 if (attrName == SVGNames::flood_colorAttr)
54 if (attrName == SVGNames::flood_opacityAttr)
SVGFEComponentTransferElement.cpp 59 void SVGFEComponentTransferElement::synchronizeProperty(const QualifiedName& attrName)
61 SVGFilterPrimitiveStandardAttributes::synchronizeProperty(attrName);
63 if (attrName == anyQName() || attrName == SVGNames::inAttr)
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_namednodemapreturnattrnode.js 99 var attrName;
112 attrName = streetAttr.nodeName;
114 assertEqualsAutoCase("attribute", "nodeName","class",attrName);
115 attrName = streetAttr.name;
117 assertEqualsAutoCase("attribute", "name","class",attrName);
hc_nodeattributenodename.js 94 var attrName;
104 attrName = addrAttr.nodeName;
106 assertEqualsAutoCase("attribute", "nodeName","title",attrName);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_namednodemapreturnattrnode.js 99 var attrName;
112 attrName = streetAttr.nodeName;
114 assertEqualsAutoCase("attribute", "nodeName","class",attrName);
115 attrName = streetAttr.name;
117 assertEqualsAutoCase("attribute", "name","class",attrName);
hc_nodeattributenodename.js 94 var attrName;
104 attrName = addrAttr.nodeName;
106 assertEqualsAutoCase("attribute", "nodeName","title",attrName);
  /external/webkit/Source/WebCore/html/
HTMLFontElement.cpp 124 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);
HTMLPlugInElement.cpp 117 bool HTMLPlugInElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const
119 if (attrName == widthAttr ||
120 attrName == heightAttr ||
121 attrName == vspaceAttr ||
122 attrName == hspaceAttr) {
127 if (attrName == alignAttr) {
132 return HTMLFrameOwnerElement::mapToEntry(attrName, result);
HTMLBRElement.cpp 51 bool HTMLBRElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const
53 if (attrName == clearAttr) {
58 return HTMLElement::mapToEntry(attrName, result);
HTMLDivElement.cpp 51 bool HTMLDivElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const
53 if (attrName == alignAttr) {
57 return HTMLElement::mapToEntry(attrName, result);
HTMLOListElement.cpp 53 bool HTMLOListElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const
55 if (attrName == typeAttr) {
60 return HTMLElement::mapToEntry(attrName, result);
HTMLParagraphElement.cpp 47 bool HTMLParagraphElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const
49 if (attrName == alignAttr) {
53 return HTMLElement::mapToEntry(attrName, result);
HTMLMapElement.cpp 106 const QualifiedName& attrName = attribute->name();
107 if (isIdAttributeName(attrName) || attrName == nameAttr) {
109 if (isIdAttributeName(attrName)) {
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapgetnameditemns06.java 79 String attrName;
88 attrName = attribute.getNodeName();
89 assertEquals("namednodemapgetnameditemnsMap106", "street", attrName);
91 attrName = attribute.getNodeName();
92 assertEquals("namednodemapgetnameditemnsMap206", "street", attrName);
getAttributeNodeNS02.java 77 String attrName;
83 attrName = attribute.getNodeName();
84 assertEquals("attrName", "emp:domestic", attrName);
getNamedItemNS01.java 79 String attrName;
85 attrName = domesticAttr.getNodeName();
86 assertEquals("attrName", "dmstc:domestic", attrName);
  /external/clang/include/clang/Sema/
AttributeList.h 70 IdentifierInfo *AttrName;
163 AttributeList(IdentifierInfo *attrName, SourceRange attrRange,
168 : AttrName(attrName), ScopeName(scopeName), ParmName(parmName),
178 AttributeList(IdentifierInfo *attrName, SourceRange attrRange,
187 : AttrName(attrName), ScopeName(scopeName), ParmName(parmName),
201 AttributeList(IdentifierInfo *attrName, SourceRange attrRange,
207 : AttrName(attrName), ScopeName(scopeName), ParmName(argumentKindName)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
TreeWalker.java 340 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.startsWith("xmlns:")
    [all...]
  /external/webkit/Source/WebCore/wml/
WMLBRElement.cpp 48 bool WMLBRElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const
50 if (attrName == HTMLNames::clearAttr) {
55 return WMLElement::mapToEntry(attrName, result);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
X500NameStyle.java 25 ASN1ObjectIdentifier attrNameToOID(String attrName);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
attrname.java 41 public final class attrname extends DOMTestCase { class in inherits:DOMTestCase
48 public attrname(final DOMTestDocumentBuilderFactory factory) throws org.w3c.domts.DOMTestIncompatibleException { method in class:attrname
84 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/attrname";
91 DOMTestCase.doMain(attrname.class, args);

Completed in 356 milliseconds

1 2 34 5 6 7 8 91011>>