HomeSort by relevance Sort by last modified time
    Searched refs:Attribute (Results 51 - 75 of 686) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/editor/
AttributeSorter.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.visitor.AttributeVisitor;
68 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
82 Attribute attribute1 = (Attribute)object1;
83 Attribute attribute2 = (Attribute)object2;
  /external/webkit/Source/WebCore/html/
HTMLScriptElement.h 47 virtual void parseMappedAttribute(Attribute*);
51 virtual void attributeChanged(Attribute*, bool preserveDecls = false);
53 virtual bool isURLAttribute(Attribute*) const;
HTMLButtonElement.h 46 virtual void parseMappedAttribute(Attribute*);
57 virtual bool isURLAttribute(Attribute*) const;
HTMLTableCellElement.h 57 virtual void parseMappedAttribute(Attribute*);
63 virtual bool isURLAttribute(Attribute*) const;
HTMLAppletElement.h 37 virtual void parseMappedAttribute(Attribute*);
HTMLBRElement.h 40 virtual void parseMappedAttribute(Attribute*);
HTMLDivElement.h 40 virtual void parseMappedAttribute(Attribute*);
HTMLFrameElement.h 47 virtual void parseMappedAttribute(Attribute*);
HTMLHRElement.h 39 virtual void parseMappedAttribute(Attribute*);
  /frameworks/compile/mclinker/include/mcld/MC/
MCLDInput.h 26 class Attribute;
62 const Attribute* attribute() const function in class:mcld::Input
78 Attribute *m_pAttr;
  /libcore/luni/src/test/java/libcore/java/text/
AttributedCharacterIteratorAttributeTest.java 28 * AttributedCharacterIterator.Attribute is used like the base enum type and
34 assertSameReserialized(AttributedCharacterIterator.Attribute.LANGUAGE);
41 AttributedCharacterIterator.Attribute a = new CustomAttribute();
53 private static class CustomAttribute extends AttributedCharacterIterator.Attribute {
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLTable.java 38 if (width != null) attrs.set (Attribute.WIDTH, width);
39 if (border != null) attrs.set (Attribute.BORDER, border);
40 if (cellpadding != null) attrs.set (Attribute.CELLPADDING, cellpadding);
41 if (cellspacing != null) attrs.set (Attribute.CELLSPACING, cellspacing);
50 m_caption.getAttributes ().set (Attribute.ALIGN, align);
92 getAttributes ().set (Attribute.COLSPAN, span);
  /libcore/luni/src/main/java/java/text/
AttributedString.java 20 import java.text.AttributedCharacterIterator.Attribute;
39 Map<AttributedCharacterIterator.Attribute, List<Range>> attributeMap;
61 private HashSet<Attribute> attributesAllowed;
71 AttributedCharacterIterator.Attribute[] attributes, int begin,
81 HashSet<Attribute> set = new HashSet<Attribute>(
103 clone.attributesAllowed = (HashSet<Attribute>) attributesAllowed
181 * @return a set of attribute keys that may be empty.
183 public Set<AttributedIterator.Attribute> getAllAttributeKeys() {
189 Set<AttributedIterator.Attribute> result = new HashSet<Attribute>
288 AttributedCharacterIterator.Attribute attribute = it.next(); local
336 AttributedCharacterIterator.Attribute attribute = it.next(); local
408 AttributedCharacterIterator.Attribute attribute = it.next(); local
445 AttributedCharacterIterator.Attribute attribute = it.next(); local
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
AttributedStringTest.java 63 public Object getAttribute(AttributedCharacterIterator.Attribute p) {
72 public int getRunLimit(AttributedCharacterIterator.Attribute p) {
81 public int getRunStart(AttributedCharacterIterator.Attribute p) {
121 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE, "a", 2,
125 .getRunLimit(AttributedCharacterIterator.Attribute.LANGUAGE));
128 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE, null,
132 .getRunLimit(AttributedCharacterIterator.Attribute.LANGUAGE));
136 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE,
  /external/proguard/src/proguard/classfile/attribute/annotation/
AnnotationDefaultAttribute.java 21 package proguard.classfile.attribute.annotation;
24 import proguard.classfile.attribute.Attribute;
25 import proguard.classfile.attribute.annotation.visitor.ElementValueVisitor;
26 import proguard.classfile.attribute.visitor.AttributeVisitor;
29 * This Attribute represents an annotation default attribute.
33 public class AnnotationDefaultAttribute extends Attribute
67 // Implementations for Attribute.
  /external/proguard/src/proguard/obfuscate/
AttributeUsageMarker.java 24 import proguard.classfile.attribute.Attribute;
25 import proguard.classfile.attribute.visitor.AttributeVisitor;
39 // A visitor info flag to indicate the attribute is being used.
45 public void visitAnyAttribute(Clazz clazz, Attribute attribute)
47 markAsUsed(attribute);
55 * In this context, the VisitorAccepter will be an Attribute object.
65 * In this context, the VisitorAccepter will be an Attribute object.
  /external/webkit/Source/WebCore/html/parser/
TextDocumentParser.cpp 63 RefPtr<Attribute> styleAttribute = Attribute::createMapped("style", "word-wrap: break-word; white-space: pre-wrap;");
  /external/webkit/Source/WebCore/svg/
SVGFitToViewBox.h 30 class Attribute;
43 bool parseMappedAttribute(Document*, Attribute*);
SVGTests.h 30 class Attribute;
43 bool parseMappedAttribute(Attribute*);
  /external/webkit/Source/WebCore/wml/
WMLImageElement.h 38 virtual void parseMappedAttribute(Attribute*);
44 virtual bool isURLAttribute(Attribute*) const;
  /frameworks/compile/mclinker/lib/MC/
MCLDInput.cpp 18 m_pAttr(const_cast<Attribute*>(pProxy.attr())),
28 m_pAttr(const_cast<Attribute*>(pProxy.attr())),
35 // do nothing. Attribute is deleted by AttributeFactory
  /external/proguard/src/proguard/classfile/attribute/
ConstantValueAttribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.AttributeVisitor;
27 * This Attribute represents a constant value attribute.
31 public class ConstantValueAttribute extends Attribute
56 // Implementations for Attribute.
SourceDirAttribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.AttributeVisitor;
27 * This Attribute represents a source directory attribute.
31 public class SourceDirAttribute extends Attribute
56 // Implementations for Attribute.
SourceFileAttribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.AttributeVisitor;
27 * This Attribute represents a source file attribute.
31 public class SourceFileAttribute extends Attribute
56 // Implementations for Attribute.
  /external/webkit/Source/WebCore/dom/
Attr.h 29 #include "Attribute.h"
36 // resulting nodevalue in the Attribute upon
42 static PassRefPtr<Attr> create(Element*, Document*, PassRefPtr<Attribute>);
53 Attribute* attr() const { return m_attribute.get(); }
64 Attr(Element*, Document*, PassRefPtr<Attribute>);
91 RefPtr<Attribute> m_attribute;

Completed in 628 milliseconds

1 23 4 5 6 7 8 91011>>