HomeSort by relevance Sort by last modified time
    Searched refs:attrName (Results 126 - 150 of 290) sorted by null

1 2 3 4 56 7 8 91011>>

  /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/serializer/
TreeWalker.java 330 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.equals("xmlns") || attrName.startsWith("xmlns:")
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Schema.java 71 @param attrName Name (Qname) of the attribute
76 public void attribute(String elemName, String attrName,
80 throw new Error("Attribute " + attrName +
84 e.setAttribute(attrName, type, value);
  /external/webkit/Source/WebCore/html/
HTMLLIElement.cpp 53 bool HTMLLIElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const
55 if (attrName == typeAttr) {
60 return HTMLElement::mapToEntry(attrName, result);
HTMLEmbedElement.h 37 virtual bool mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const;
HTMLMapElement.cpp 106 const QualifiedName& attrName = attribute->name();
107 if (isIdAttributeName(attrName) || attrName == nameAttr) {
109 if (isIdAttributeName(attrName)) {
HTMLPlugInElement.h 59 virtual bool mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const;
HTMLScriptElement.cpp 71 const QualifiedName& attrName = attr->name();
73 if (attrName == srcAttr)
75 else if (attrName == onloadAttr)
77 else if (attrName == onbeforeloadAttr)
79 else if (attrName == onbeforeprocessAttr)
HTMLTableCellElement.cpp 73 bool HTMLTableCellElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const
75 if (attrName == nowrapAttr) {
80 if (attrName == widthAttr ||
81 attrName == heightAttr) {
86 return HTMLTablePartElement::mapToEntry(attrName, result);
HTMLVideoElement.cpp 96 const QualifiedName& attrName = attr->name();
98 if (attrName == posterAttr) {
114 } else if (attrName == widthAttr)
116 else if (attrName == heightAttr)
  /external/webkit/Source/WebCore/wml/
WMLElement.cpp 52 bool WMLElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const
54 if (attrName == HTMLNames::alignAttr) {
59 return StyledElement::mapToEntry(attrName, result);
WMLPElement.cpp 51 bool WMLPElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const
53 if (attrName == HTMLNames::alignAttr) {
58 return WMLElement::mapToEntry(attrName, result);
WMLElement.h 37 virtual bool mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const;
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementgetattributenodens01.java 78 String attrName;
90 attrName = attribute.getName();
95 assertEquals("elementgetattributenodens01_attrName", "l2:att", attrName);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementGetAttributeNodeNS.java 59 String attrName;
74 attrName = attribute.getName();
79 assertEquals("elementgetattributenodens01_attrName", "l2:att", attrName);
GetNamedItemNS.java 60 String attrName;
67 attrName = domesticAttr.getNodeName();
68 assertEquals("attrName", "dmstc:domestic", attrName);
ElementSetAttributeNS.java 59 String attrName;
67 attrName = attribute.getNodeName();
69 assertEquals("elementsetattributens01_attrName", "attr", attrName);
77 String attrName;
86 attrName = attribute.getNodeName();
89 attrName);
98 String attrName;
110 attrName = attribute.getNodeName();
113 attrName);
  /external/webkit/Source/WebCore/svg/
SVGFEBlendElement.h 39 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& attrName);
SVGFEDisplacementMapElement.h 41 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& attrName);
SVGFitToViewBox.cpp 108 bool SVGFitToViewBox::isKnownAttribute(const QualifiedName& attrName)
110 return attrName == SVGNames::viewBoxAttr || attrName == SVGNames::preserveAspectRatioAttr;
SVGFETurbulenceElement.h 47 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& attrName);
SVGFontElement.cpp 53 void SVGFontElement::synchronizeProperty(const QualifiedName& attrName)
55 SVGStyledElement::synchronizeProperty(attrName);
57 if (attrName == anyQName() || SVGExternalResourcesRequired::isKnownAttribute(attrName))
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
XmlParseUtils.java 75 final String attrName, final String tag, final XmlPullParser parser)
81 "No " + attrName + " attribute found in <" + tag + "/>", parser);
  /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/Tools/DumpRenderTree/mac/
TextInputController.m 118 - (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 value:[NSColor colorWithDeviceRed:red green:green blue:blue alpha:alpha] range:NSMakeRange((unsign (…)
    [all...]

Completed in 644 milliseconds

1 2 3 4 56 7 8 91011>>