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

1 2 3 45 6 7 8 91011>>

  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetAttributeNodeNS.java 93 String attrName;
100 attrName = attribute.getNodeName();
101 assertEquals("attrName", "emp:domestic", attrName);
GetNamedItemNS.java 60 String attrName;
67 attrName = domesticAttr.getNodeName();
68 assertEquals("attrName", "dmstc:domestic", attrName);
ElementSetAttributeNodeNS.java 82 String attrName;
100 attrName = attrNode.getNodeName();
102 assertEquals("elementsetattributenodens01_attrName", "p2:att", attrName);
117 String attrName;
129 attrName = newAttr.getNodeName();
131 assertEquals("elementsetattributenodens02_attrName", "street", attrName);
  /external/webkit/Source/WebCore/html/
HTMLFormCollection.h 56 Element* getNamedItem(const QualifiedName& attrName, const AtomicString& name) const;
59 Element* getNamedFormItem(const QualifiedName& attrName, const String& name, int duplicateNumber) const;
HTMLIFrameElement.cpp 50 bool HTMLIFrameElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const
52 if (attrName == widthAttr || attrName == heightAttr) {
57 if (attrName == alignAttr) {
62 if (attrName == frameborderAttr) {
67 return HTMLFrameElementBase::mapToEntry(attrName, result);
HTMLTableElement.cpp 244 bool HTMLTableElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const
246 if (attrName == backgroundAttr) {
251 if (attrName == widthAttr ||
252 attrName == heightAttr ||
253 attrName == bgcolorAttr ||
254 attrName == cellspacingAttr ||
255 attrName == vspaceAttr ||
256 attrName == hspaceAttr ||
257 attrName == valignAttr) {
262 if (attrName == bordercolorAttr || attrName == frameAttr || attrName == rulesAttr)
    [all...]
HTMLBodyElement.cpp 75 bool HTMLBodyElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const
77 if (attrName == backgroundAttr) {
82 if (attrName == bgcolorAttr ||
83 attrName == textAttr ||
84 attrName == marginwidthAttr ||
85 attrName == leftmarginAttr ||
86 attrName == marginheightAttr ||
87 attrName == topmarginAttr ||
88 attrName == bgpropertiesAttr) {
93 return HTMLElement::mapToEntry(attrName, result)
    [all...]
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);
  /external/webkit/Source/WebCore/svg/
SVGURIReference.cpp 40 bool SVGURIReference::isKnownAttribute(const QualifiedName& attrName)
42 return attrName.matches(XLinkNames::hrefAttr);
SVGZoomAndPan.cpp 49 bool SVGZoomAndPan::isKnownAttribute(const QualifiedName& attrName)
51 return attrName == SVGNames::zoomAndPanAttr;
  /external/webkit/Source/WebKit/chromium/src/
WebDOMMutationEvent.cpp 55 WebString WebDOMMutationEvent::attrName() const
57 return WebString(constUnwrap<MutationEvent>()->attrName());
WebMutationEvent.cpp 55 WebString WebMutationEvent::attrName() const
57 return WebString(constUnwrap<MutationEvent>()->attrName());
  /external/javassist/src/main/javassist/bytecode/
ParameterAnnotationsAttribute.java 61 * @param attrname attribute name (<code>visibleTag</code> or
67 public ParameterAnnotationsAttribute(ConstPool cp, String attrname,
69 super(cp, attrname, info);
79 * @param attrname attribute name (<code>visibleTag</code> or
83 public ParameterAnnotationsAttribute(ConstPool cp, String attrname) {
84 this(cp, attrname, new byte[] { 0 });
AttributeInfo.java 38 protected AttributeInfo(ConstPool cp, int attrname, byte[] attrinfo) {
40 name = attrname;
44 protected AttributeInfo(ConstPool cp, String attrname) {
45 this(cp, attrname, (byte[])null);
52 * @param attrname attribute name
56 public AttributeInfo(ConstPool cp, String attrname, byte[] attrinfo) {
57 this(cp, cp.addUtf8Info(attrname), attrinfo);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
namednodemapreturnattrnode.java 73 String attrName;
80 attrName = streetAttr.getNodeName();
81 assertEquals("nodeName", "street", attrName);
82 attrName = ((Attr) /*Node */streetAttr).getName();
83 assertEquals("attrName", "street", attrName);
hc_namednodemapreturnattrnode.java 70 String attrName;
77 attrName = streetAttr.getNodeName();
78 assertEqualsAutoCase("attribute", "nodeName", "class", attrName);
79 attrName = ((Attr) /*Node */streetAttr).getName();
80 assertEqualsAutoCase("attribute", "name", "class", attrName);
  /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...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ST.stg 153 - (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=expr; *
    [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/
PYXWriter.java 33 private String attrName; // saved attribute name
38 theWriter.println(attrName);
39 attrName = null;
46 attrName = new String(buff, offset, length);
52 attrName = null;
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_attrcreatedocumentfragment.js 99 var attrName;
118 attrName = attribute.nodeName;
122 equalsAutoCase("attribute", "lang", attrName)
hc_documentcreateattribute.js 96 var attrName;
108 attrName = newAttrNode.nodeName;
110 assertEqualsAutoCase("attribute", "name","title",attrName);
hc_namednodemapgetnameditem.js 98 var attrName;
110 attrName = domesticAttr.nodeName;
112 assertEqualsAutoCase("attribute", "nodeName","title",attrName);
hc_namednodemapsetnameditem.js 105 var attrName;
120 attrName = districtNode.nodeName;
122 assertEqualsAutoCase("attribute", "nodeName","lang",attrName);

Completed in 494 milliseconds

1 2 3 45 6 7 8 91011>>