Searched refs:Attribute (Results 1 - 25 of 416) sorted by relevance

1234567891011>>

/external/jmonkeyengine/engine/src/core/com/jme3/shader/
H A DAttribute.java41 public class Attribute extends ShaderVariable { class in inherits:ShaderVariable
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DAttribute.java7 * $Id: Attribute.java,v 1.1.1.1 2004/05/09 16:57:41 vlad_r Exp $
18 abstract class Attribute implements IContent class in inherits:IContent
22 public static final Attribute ID = new AttributeImpl ("ID");
23 public static final Attribute NAME = new AttributeImpl ("NAME");
24 public static final Attribute TITLE = new AttributeImpl ("TITLE");
25 public static final Attribute TYPE = new AttributeImpl ("TYPE");
26 public static final Attribute CLASS = new AttributeImpl ("CLASS");
27 public static final Attribute HTTP_EQUIV = new AttributeImpl ("HTTP-EQUIV");
28 public static final Attribute CONTENT = new AttributeImpl ("CONTENT");
29 public static final Attribute HRE
51 Attribute () {} method in class:Attribute
[all...]
H A DAttributeSet.java37 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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DGrammarRuleAttribute.cs34 using Attribute = System.Attribute;
39 public sealed class GrammarRuleAttribute : Attribute {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DGrammarRuleAttribute.cs35 using Attribute = System.Attribute;
40 public sealed class GrammarRuleAttribute : Attribute
/external/llvm/lib/DebugInfo/
H A DDWARFAttribute.h18 uint16_t Attribute; member in class:llvm::DWARFAttribute
22 : Attribute(attr), Form(form) {}
24 uint16_t getAttribute() const { return Attribute; }
H A DDWARFAbbreviationDeclaration.h25 SmallVector<DWARFAttribute, 8> Attribute; member in class:llvm::DWARFAbbreviationDeclaration
34 uint32_t getNumAttributes() const { return Attribute.size(); }
36 return Attribute.size() > idx ? Attribute[idx].getAttribute() : 0;
39 return Attribute.size() > idx ? Attribute[idx].getForm() : 0;
48 return Attribute;
H A DDWARFAbbreviationDeclaration.cpp26 Attribute.clear();
36 Attribute.push_back(DWARFAttribute(attr, form));
58 for (unsigned i = 0, e = Attribute.size(); i != e; ++i) {
60 const char *attrString = AttributeString(Attribute[i].getAttribute());
64 OS << format("DW_AT_Unknown_%x", Attribute[i].getAttribute());
66 const char *formString = FormEncodingString(Attribute[i].getForm());
70 OS << format("DW_FORM_Unknown_%x", Attribute[i].getForm());
78 for (uint32_t i = 0, e = Attribute.size(); i != e; ++i) {
79 if (Attribute[i].getAttribute() == attr)
/external/llvm/unittests/IR/
H A DAttributesTest.cpp20 Attribute AttrA = Attribute::get(C, Attribute::AlwaysInline);
21 Attribute AttrB = Attribute::get(C, Attribute::AlwaysInline);
25 AttributeSet::get(C, 1, Attribute::ZExt),
26 AttributeSet::get(C, 2, Attribute::SExt)
38 AttributeSet::get(C, 2, Attribute::ZExt),
39 AttributeSet::get(C, 1, Attribute
[all...]
/external/llvm/lib/IR/
H A DAttributes.cpp11 // \brief This file implements the Attribute, AttributeImpl, AttrBuilder,
30 // Attribute Construction Methods
33 Attribute Attribute::get(LLVMContext &Context, Attribute::AttrKind Kind,
53 // Return the Attribute that we found or created.
54 return Attribute(PA);
57 Attribute Attribute::get(LLVMContext &Context, StringRef Kind, StringRef Val) {
73 // Return the Attribute tha
[all...]
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DAttributedCharacterIteratorAttributeTest.java21 import java.text.AttributedCharacterIterator.Attribute;
34 * @tests java.text.AttributedCharacterIterator$Attribute()
39 assertEquals("Attribute has wrong name", "attribute", attribute.getExposedName());
42 assertEquals("Attribute has wrong name", null, attribute.getExposedName());
46 * @tests java.text.AttributedCharacterIterator.Attribute#equals(Object)
50 assertTrue(Attribute.LANGUAGE.equals(Attribute.LANGUAGE));
52 assertFalse(Attribute.LANGUAGE.equals(Attribute.READING));
67 * @tests java.text.AttributedCharacterIterator$Attribute#readResolv
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DAttribute.java13 public class Attribute class in inherits:ASN1Object
20 * return an Attribute object from the given object.
25 public static Attribute getInstance(
28 if (o instanceof Attribute)
30 return (Attribute)o;
35 return new Attribute(ASN1Sequence.getInstance(o));
41 private Attribute( method in class:Attribute
51 public Attribute( method in class:Attribute
59 public Attribute( method in class:Attribute
85 * Attribute
[all...]
H A DAttributeTable.java29 Attribute a = Attribute.getInstance(v.get(i));
40 Attribute a = Attribute.getInstance(s.getObjectAt(i));
47 Attribute attr)
60 Attribute a)
72 if (value instanceof Attribute)
93 public Attribute get(DERObjectIdentifier oid)
104 public Attribute get(
111 return (Attribute)((Vecto
[all...]
H A DAttributes.java38 public Attribute[] getAttributes()
40 Attribute[] rv = new Attribute[attributes.size()];
44 rv[i] = Attribute.getInstance(attributes.getObjectAt(i));
53 * SET SIZE(1..MAX) OF Attribute -- according to RFC 5652
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DCompactHTMLToken.h40 struct Attribute { struct in class:WebCore::CompactHTMLToken
41 Attribute(const String& name, const String& value) function in struct:WebCore::CompactHTMLToken::Attribute
59 const Vector<Attribute>& attributes() const { return m_attributes; }
60 const Attribute* getAttributeItem(const QualifiedName&) const;
76 Vector<Attribute> m_attributes;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DAttribute.java12 public class Attribute class in inherits:ASN1Object
19 * return an Attribute object from the given object.
24 public static Attribute getInstance(
27 if (o instanceof Attribute)
29 return (Attribute)o;
34 return new Attribute(ASN1Sequence.getInstance(o));
40 private Attribute( method in class:Attribute
52 public Attribute( method in class:Attribute
78 * Attribute ::= SEQUENCE {
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DAttribute.h35 class Attribute { class in namespace:WebCore
37 Attribute(const QualifiedName& name, const AtomicString& value) function in class:WebCore::Attribute
44 // as the Attribute stays in place. For example, calling a function that mutates
61 // elements may have placed the Attribute in a hash by name.
67 Attribute();
75 inline bool Attribute::matches(const QualifiedName& qualifiedName) const
H A DDocumentSharedObjectPool.h36 class Attribute;
45 PassRefPtr<ShareableElementData> cachedShareableElementDataWithAttributes(const Vector<Attribute>&);
H A DElementData.h34 #include "core/dom/Attribute.h"
66 const Attribute* attributeItem(unsigned index) const;
67 const Attribute* getAttributeItem(const QualifiedName&) const;
102 const Attribute* attributeBase() const;
103 const Attribute* getAttributeItem(const AtomicString& name, bool shouldIgnoreAttributeCase) const;
116 static PassRefPtr<ShareableElementData> createWithAttributes(const Vector<Attribute>&);
118 explicit ShareableElementData(const Vector<Attribute>&);
122 Attribute m_attributeArray[0];
138 Attribute* attributeItem(unsigned index);
139 Attribute* getAttributeIte
[all...]
H A DDocumentSharedObjectPool.cpp36 ShareableElementDataCacheKey(const Attribute* attributes, unsigned attributeCount)
45 return memcmp(m_attributes, other.m_attributes, sizeof(Attribute) * m_attributeCount);
50 return StringHasher::hashMemory(m_attributes, m_attributeCount * sizeof(Attribute));
54 const Attribute* m_attributes;
69 PassRefPtr<ShareableElementData> DocumentSharedObjectPool::cachedShareableElementDataWithAttributes(const Vector<Attribute>& attributes)
/external/proguard/src/proguard/classfile/editor/
H A DAttributesEditor.java84 public void addAttribute(Attribute attribute)
178 Attribute[] attributes,
179 Attribute attribute)
200 private Attribute[] addAttribute(int attributesCount,
201 Attribute[] attributes,
202 Attribute attribute)
208 Attribute[] newAttributes = new Attribute[attributesCount + 1];
227 Attribute[] attributes,
256 Attribute[] attribute
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DDefaultSignedAttributeTableGenerator.java10 import org.bouncycastle.asn1.cms.Attribute;
72 Attribute attr = new Attribute(CMSAttributes.contentType,
81 Attribute attr = new Attribute(CMSAttributes.signingTime,
90 Attribute attr = new Attribute(CMSAttributes.messageDigest,
/external/llvm/include/llvm/IR/
H A DAttributes.h44 class Attribute { class in namespace:llvm
114 Attribute(AttributeImpl *A) : pImpl(A) {} function in class:llvm::Attribute
116 Attribute() : pImpl(0) {} function in class:llvm::Attribute
119 // Attribute Construction
122 /// \brief Return a uniquified Attribute object.
123 static Attribute get(LLVMContext &Context, AttrKind Kind, uint64_t Val = 0);
124 static Attribute get(LLVMContext &Context, StringRef Kind,
127 /// \brief Return a uniquified Attribute object that has the specific
129 static Attribute getWithAlignment(LLVMContext &Context, uint64_t Align);
130 static Attribute getWithStackAlignmen
[all...]
H A DFunction.h176 void addFnAttr(Attribute::AttrKind N) {
182 void removeFnAttr(Attribute::AttrKind N) {
200 bool hasFnAttribute(Attribute::AttrKind Kind) const {
208 Attribute getFnAttribute(Attribute::AttrKind Kind) const {
211 Attribute getFnAttribute(StringRef Kind) const {
223 void addAttribute(unsigned i, Attribute::AttrKind attr);
239 Attribute::ReadNone);
242 addFnAttr(Attribute::ReadNone);
249 Attribute
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509Attribute.java10 import org.bouncycastle.asn1.x509.Attribute;
13 * Class for carrying the values in an X.509 Attribute.
18 Attribute attr;
26 this.attr = Attribute.getInstance(at);
30 * Create an X.509 Attribute with the type given by the passed in oid and
40 this.attr = new Attribute(new ASN1ObjectIdentifier(oid), new DERSet(value));
44 * Create an X.59 Attribute with the type given by the passed in oid and the
54 this.attr = new Attribute(new ASN1ObjectIdentifier(oid), new DERSet(value));

Completed in 459 milliseconds

1234567891011>>