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

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/html/
HTMLBaseElement.h 38 virtual bool isURLAttribute(Attribute*) const;
39 virtual void parseMappedAttribute(Attribute*);
HTMLIFrameElement.h 39 virtual void parseMappedAttribute(Attribute*);
47 virtual bool isURLAttribute(Attribute*) const;
HTMLParamElement.h 42 virtual void parseMappedAttribute(Attribute*);
44 virtual bool isURLAttribute(Attribute*) const;
HTMLEmbedElement.h 38 virtual void parseMappedAttribute(Attribute*);
43 virtual void attributeChanged(Attribute*, bool preserveDecls = false);
45 virtual bool isURLAttribute(Attribute*) const;
HTMLBlockquoteElement.h 38 virtual bool isURLAttribute(Attribute*) const;
HTMLFontElement.h 41 virtual void parseMappedAttribute(Attribute*);
HTMLModElement.h 38 virtual bool isURLAttribute(Attribute*) const;
HTMLParagraphElement.h 38 virtual void parseMappedAttribute(Attribute*);
HTMLPreElement.h 38 virtual void parseMappedAttribute(Attribute*);
HTMLQuoteElement.h 40 virtual bool isURLAttribute(Attribute*) const;
HTMLTableCaptionElement.h 41 virtual void parseMappedAttribute(Attribute*);
HTMLTablePartElement.h 41 virtual void parseMappedAttribute(Attribute*);
  /external/webkit/Source/WebCore/svg/
SVGLangSpace.h 29 class Attribute;
40 bool parseMappedAttribute(Attribute*);
SVGZoomAndPan.h 30 class Attribute;
47 bool parseMappedAttribute(Attribute*);
  /external/webkit/Source/WebCore/wml/
WMLAElement.h 44 virtual void parseMappedAttribute(Attribute*);
48 virtual bool isURLAttribute(Attribute*) const;
  /external/llvm/lib/VMCore/
Attributes.cpp 10 // This file implements the AttributesList class and Attribute utilities.
26 // Attribute Function Definitions
29 std::string Attribute::getAsString(Attributes Attrs) {
31 if (Attrs & Attribute::ZExt)
33 if (Attrs & Attribute::SExt)
35 if (Attrs & Attribute::NoReturn)
37 if (Attrs & Attribute::NoUnwind)
39 if (Attrs & Attribute::UWTable)
41 if (Attrs & Attribute::ReturnsTwice)
43 if (Attrs & Attribute::InReg
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
Attribute.java 12 public class Attribute
19 * return an Attribute object from the given object.
24 public static Attribute getInstance(
27 if (o == null || o instanceof Attribute)
29 return (Attribute)o;
34 return new Attribute((ASN1Sequence)o);
40 public Attribute(
52 public Attribute(
78 * Attribute ::= SEQUENCE {
  /frameworks/compile/mclinker/lib/MC/
AttributeFactory.cpp 18 m_AttrSet.push_back(new mcld::Attribute());
25 m_AttrSet.push_back(new mcld::Attribute());
46 Attribute &AttributeFactory::predefined()
51 const Attribute &AttributeFactory::predefined() const
72 Attribute* AttributeFactory::exists(const Attribute& pAttr) const
86 void AttributeFactory::record(mcld::Attribute &pAttr)
  /external/webkit/Source/WebKit/chromium/public/
WebAttribute.h 37 namespace WebCore { class Attribute; }
45 // Provides readonly access to some properties of a DOM attribute.
65 WebAttribute(const WTF::PassRefPtr<WebCore::Attribute>&);
69 WebPrivatePtr<WebCore::Attribute> m_private;
  /dalvik/dexgen/src/com/android/dexgen/rop/
BaseAttribute.java 21 * Base implementation of {@link Attribute}, which directly stores
22 * the attribute name but leaves the rest up to subclasses.
24 public abstract class BaseAttribute implements Attribute {
25 /** {@code non-null;} attribute name */
31 * @param name {@code non-null;} attribute name
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
AttributeSet.java 37 public abstract AttributeSet set (Attribute attr, String value);
38 public abstract AttributeSet set (Attribute attr, int value);
59 final Attribute attr = (Attribute) entry.getKey ();
88 public AttributeSet set (final Attribute attr, final String value) // null removes?
95 public AttributeSet set (final Attribute attr, final int value)
109 private final Map /* Attribute->String|Integer */ m_attrMap; // never null
  /external/llvm/include/llvm/
Function.h 163 /// getAttributes - Return the attribute list for this Function.
167 /// setAttributes - Set the attribute list for this Function.
171 /// hasFnAttr - Return true if this function has the given attribute.
198 /// @brief Determine whether the function has the given attribute.
203 /// addAttribute - adds the attribute to the list of attributes.
206 /// removeAttribute - removes the attribute from the list of attributes.
216 return hasFnAttr(Attribute::ReadNone);
219 if (DoesNotAccessMemory) addFnAttr(Attribute::ReadNone);
220 else removeFnAttr(Attribute::ReadNone);
225 return doesNotAccessMemory() || hasFnAttr(Attribute::ReadOnly)
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
OldAttributedStringTest.java 97 attrString2 = new AttributedString(iter, 2, 7, new AttributedCharacterIterator.Attribute[] {});
106 * int, int, AttributedCharacterIterator.Attribute[]) Test of method
108 * int, int, AttributedCharacterIterator.Attribute[]). Case 1: Try to
114 public void test_ConstructorLAttributedCharacterIteratorII$Ljava_text_AttributedCharacterIterator$Attribute() {
143 AttributedCharacterIterator.Attribute[] attributes = new AttributedCharacterIterator.Attribute[1];
154 * int, int, Map<? extends AttributedCharacterIterator.Attribute,?>)
158 * AttributedCharacterIterator.Attribute,?>). Case 1: Try to
170 new WeakHashMap<AttributedCharacterIterator.Attribute, String>());
185 Map<AttributedCharacterIterator.Attribute, String> whm = new WeakHashMap<AttributedCharacterIterator.Attribute, String>()
    [all...]
  /external/proguard/src/proguard/classfile/editor/
AttributesEditor.java 24 import proguard.classfile.attribute.*;
67 * target code attribute.
82 * Adds the given attribute to the target.
84 public void addAttribute(Attribute attribute)
89 // Try to replace an existing attribute.
93 attribute))
95 // Otherwise append the attribute.
99 attribute);
106 // Try to replace an existing attribute
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
X509Attribute.java 9 import org.bouncycastle.asn1.x509.Attribute;
12 * Class for carrying the values in an X.509 Attribute.
17 Attribute attr;
20 * @param at an object representing an attribute.
25 this.attr = Attribute.getInstance(at);
29 * Create an X.509 Attribute with the type given by the passed in oid and
32 * @param oid type of the attribute
39 this.attr = new Attribute(new DERObjectIdentifier(oid), new DERSet(value));
43 * Create an X.59 Attribute with the type given by the passed in oid and the
46 * @param oid type of the attribute
    [all...]

Completed in 1539 milliseconds

12 3 4 5 6 7 8 91011>>