Searched refs:addAttribute (Results 1 - 25 of 95) sorted by relevance

1234

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DRuleLabelScope.java38 addAttribute("text", null);
39 addAttribute("start", null);
40 addAttribute("stop", null);
41 addAttribute("tree", null);
42 addAttribute("st", null);
48 addAttribute("text", null);
49 addAttribute("start", null); // note: no stop; not meaningful
50 addAttribute("tree", null);
51 addAttribute("st", null);
57 addAttribute("tex
[all...]
H A DAttributeScope.java50 tokenScope.addAttribute("text", null);
51 tokenScope.addAttribute("type", null);
52 tokenScope.addAttribute("line", null);
53 tokenScope.addAttribute("index", null);
54 tokenScope.addAttribute("pos", null);
55 tokenScope.addAttribute("channel", null);
56 tokenScope.addAttribute("tree", null);
57 tokenScope.addAttribute("int", null);
137 public void addAttribute(String name, String decl) { method in class:AttributeScope
/external/skia/src/animator/
H A DSkXMLAnimatorWriter.cpp56 w.addAttribute("field", "x1");
57 w.addAttribute("id", "to100");
58 w.addAttribute("from", "0");
59 w.addAttribute("to", "100");
60 w.addAttribute("dur", "1");
63 w.addAttribute("kind", "onLoad");
65 w.addAttribute("id", "line");
66 w.addAttribute("x1", "-1");
67 w.addAttribute("y1", "20");
68 w.addAttribute("x
[all...]
/external/skia/src/svg/
H A DSkSVGPolygon.h17 virtual void addAttribute(SkSVGParser& , int attrIndex,
H A DSkSVGPolygon.cpp21 void SkSVGPolygon::addAttribute(SkSVGParser& parser, int attrIndex, function in class:SkSVGPolygon
23 INHERITED::addAttribute(parser, attrIndex, attrValue, attrLength);
H A DSkSVGPolyline.h18 virtual void addAttribute(SkSVGParser& , int attrIndex,
H A DSkSVGPolyline.cpp27 void SkSVGPolyline::addAttribute(SkSVGParser& , int attrIndex, function in class:SkSVGPolyline
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DAttributedStringTest.java121 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE, "a", 2,
128 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE, null,
136 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE,
146 as.addAttribute(null, new TreeSet(), 0, 1);
153 as.addAttribute(null, new TreeSet(), -1, 1);
161 * @tests java.text.AttributedString.addAttribute(AttributedCharacterIterator, Object)
167 as.addAttribute(null, new TreeSet());
173 as.addAttribute(null, null);
/external/proguard/src/proguard/classfile/editor/
H A DAttributeAdder.java111 attributesEditor.addAttribute(newUnknownAttribute);
123 attributesEditor.addAttribute(newSourceFileAttribute);
135 attributesEditor.addAttribute(newSourceDirAttribute);
167 attributesEditor.addAttribute(newEnclosingMethodAttribute);
178 attributesEditor.addAttribute(newDeprecatedAttribute);
189 attributesEditor.addAttribute(newSyntheticAttribute);
203 attributesEditor.addAttribute(newSignatureAttribute);
215 attributesEditor.addAttribute(newConstantValueAttribute);
235 attributesEditor.addAttribute(newExceptionsAttribute);
292 attributesEditor.addAttribute(newCodeAttribut
[all...]
H A DAttributesEditor.java84 public void addAttribute(Attribute attribute) method in class:AttributesEditor
97 addAttribute(targetAttribute.u2attributesCount,
114 addAttribute(targetMember.u2attributesCount,
131 addAttribute(targetClass.u2attributesCount,
200 private Attribute[] addAttribute(int attributesCount, method in class:AttributesEditor
/external/icu4c/i18n/
H A Dfphdlimp.h25 virtual void addAttribute(int32_t id, int32_t start, int32_t limit);
40 virtual void addAttribute(int32_t id, int32_t start, int32_t limit);
64 virtual void addAttribute(int32_t id, int32_t start, int32_t limit);
H A Dfphdlimp.cpp24 FieldPositionHandler::addAttribute(int32_t, int32_t, int32_t) { function in class:FieldPositionHandler
47 FieldPositionOnlyHandler::addAttribute(int32_t id, int32_t start, int32_t limit) { function in class:FieldPositionOnlyHandler
88 FieldPositionIteratorHandler::addAttribute(int32_t id, int32_t start, int32_t limit) { function in class:FieldPositionIteratorHandler
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DExtendedContentHandler.java43 * addAttribute(namespaceURI, localName, qName, type, value)
59 public void addAttribute( method in interface:ExtendedContentHandler
81 public void addAttribute(String qName, String value); method in interface:ExtendedContentHandler
264 public void addAttribute( method in interface:ExtendedContentHandler
H A DAttributesImplSerializer.java100 * @see org.xml.sax.helpers.AttributesImpl#addAttribute(String, String, String, String, String)
103 public final void addAttribute( method in class:AttributesImplSerializer
111 super.addAttribute(uri, local, qname, type, val);
/external/skia/src/xml/
H A DSkXMLWriter.cpp28 void SkXMLWriter::addAttribute(const char name[], const char value[]) function in class:SkXMLWriter
37 this->addAttribute(name, tmp.c_str());
44 this->addAttribute(name, tmp.c_str());
51 this->addAttribute(name, tmp.c_str());
172 w->addAttribute(name, value);
279 fParser.addAttribute(name, str.c_str());
309 w.addAttribute("hello", "world");
318 w.addAttribute("name", "value");
323 w.addAttribute("name", "value");
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DPerl5Target.java40 AttributeScope.tokenScope.addAttribute("self", null);
41 RuleLabelScope.predefinedLexerRulePropertiesScope.addAttribute("self", null);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DAttributeTable.java31 addAttribute(a.getAttrType(), a);
42 addAttribute(a.getAttrType(), a);
52 private void addAttribute( method in class:AttributeTable
235 newTable.addAttribute(attrType, new Attribute(attrType, new DERSet(attrValue)));
/external/webkit/Source/WebCore/svg/properties/
H A DSVGAnimatedPropertySynchronizer.h43 namedAttrMap->addAttribute(ownerElement->createAttribute(attrName, value));
/external/webkit/Source/WebCore/html/
H A DHTMLViewSourceDocument.cpp86 attrs->addAttribute(Attribute::createMapped(classAttr, "webkit-line-gutter-backdrop"));
192 attrs->addAttribute(Attribute::createMapped(classAttr, className));
209 attrs->addAttribute(Attribute::createMapped(classAttr, "webkit-line-number"));
217 attrs->addAttribute(Attribute::createMapped(classAttr, "webkit-line-content"));
290 attributeMap->addAttribute(Attribute::createMapped(hrefAttr, href));
310 attrs->addAttribute(Attribute::createMapped(classAttr, classValue));
311 attrs->addAttribute(Attribute::createMapped(targetAttr, "_blank"));
312 attrs->addAttribute(Attribute::createMapped(hrefAttr, url));
/external/webkit/Tools/DumpRenderTree/mac/
H A DTextInputController.m73 || aSelector == @selector(addAttribute:value:)
74 || aSelector == @selector(addAttribute:value:from:length:)
91 if (aSelector == @selector(addAttribute:value:))
92 return @"addAttribute";
93 if (aSelector == @selector(addAttribute:value:from:length:))
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)];
135 [self addAttribute
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/serialize/
H A DSerializerUtils.java54 public static void addAttribute(SerializationHandler handler, int attr) method in class:SerializerUtils
73 handler.addAttribute(
105 addAttribute(handler, node);
/external/webkit/Source/WebCore/inspector/front-end/
H A DCookieParser.js55 this._lastCookie.addAttribute(kv.key.slice(1), kv.value);
70 this._lastCookie.addAttribute(kv.key, kv.value);
201 addAttribute: function(key, value)
/external/javassist/src/main/javassist/compiler/
H A DAccessorMaker.java55 minfo.addAttribute(new SyntheticAttribute(cp));
58 minfo.addAttribute(ea.copy(cp, null));
114 minfo.addAttribute(new SyntheticAttribute(cp));
117 minfo.addAttribute(ea.copy(cp, null));
172 minfo.addAttribute(new SyntheticAttribute(cp));
223 minfo.addAttribute(new SyntheticAttribute(cp));
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemAttribute.java89 // ResultTreeHandler.addAttribute. (is)
195 rhandler.addAttribute(nodeNamespace, localName, nodeName, "CDATA", val, true);
197 rhandler.addAttribute("", localName, nodeName, "CDATA", val, true);
/external/llvm/include/llvm/
H A DFunction.h181 addAttribute(~0U, N);
203 /// addAttribute - adds the attribute to the list of attributes.
204 void addAttribute(unsigned i, Attributes attr);
279 if (DoesNotAlias) addAttribute(n, Attribute::NoAlias);
289 if (DoesNotCapture) addAttribute(n, Attribute::NoCapture);

Completed in 9203 milliseconds

1234