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

1234567891011>>

/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/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,
31 // Attribute Construction Methods
34 Attribute Attribute::get(LLVMContext &Context, Attribute::AttrKind Kind,
54 // Return the Attribute that we found or created.
55 return Attribute(PA);
58 Attribute Attribute::get(LLVMContext &Context, StringRef Kind, StringRef Val) {
74 // Return the Attribute tha
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DFieldVisitor.java56 void visitAttribute(Attribute attr);
H A DAttribute.java38 public class Attribute { class
53 Attribute next;
60 protected Attribute(final String type) { method in class:Attribute
95 * {@link Attribute} object, of type {@link #type type}, corresponding to
116 * @return a <i>new</i> {@link Attribute} object corresponding to the given
119 protected Attribute read(
127 Attribute attr = new Attribute(type);
173 Attribute attr = this;
208 Attribute att
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DAttribute.java15 * Attribute is a pair of OID (as type identifier) + set of values.
18 * Attribute ::= SEQUENCE {
31 * General rule of Attribute usage is that the {@link Attributes} containers
32 * must not have multiple Attribute:s with same attrType (OID) there.
34 public class Attribute class in inherits:ASN1Object
41 * Return an Attribute object from the given object.
46 * <li> {@link Attribute} object
47 * <li> {@link org.bouncycastle.asn1.ASN1Sequence#getInstance(java.lang.Object) ASN1Sequence} input formats with Attribute structure inside
53 public static Attribute getInstance(
56 if (o instanceof Attribute)
69 private Attribute( method in class:Attribute
79 public Attribute( method in class:Attribute
87 public Attribute( method in class:Attribute
[all...]
H A DAttributeTable.java32 Attribute a = Attribute.getInstance(v.get(i));
43 Attribute a = Attribute.getInstance(s.getObjectAt(i));
50 Attribute attr)
63 Attribute a)
75 if (value instanceof Attribute)
96 public Attribute get(DERObjectIdentifier oid)
107 public Attribute get(
114 return (Attribute)((Vecto
[all...]
H A DAttributes.java11 * 5 "SET OF Attribute" entities with 5 different names.
14 * SignedAttributes ::= SET SIZE (1..MAX) OF Attribute
15 * UnsignedAttributes ::= SET SIZE (1..MAX) OF Attribute
16 * UnprotectedAttributes ::= SET SIZE (1..MAX) OF Attribute
17 * AuthAttributes ::= SET SIZE (1..MAX) OF Attribute
18 * UnauthAttributes ::= SET SIZE (1..MAX) OF Attribute
21 * SET SIZE(1..MAX) OF Attribute
40 * Return an Attribute set object from the given object.
66 public Attribute[] getAttributes()
68 Attribute[] r
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElementDataCache.cpp34 inline unsigned attributeHash(const Vector<Attribute>& attributes)
36 return StringHasher::hashMemory(attributes.data(), attributes.size() * sizeof(Attribute));
39 inline bool hasSameAttributes(const Vector<Attribute>& attributes, ShareableElementData& elementData)
43 return !memcmp(attributes.data(), elementData.m_attributeArray, attributes.size() * sizeof(Attribute));
46 PassRefPtr<ShareableElementData> ElementDataCache::cachedShareableElementDataWithAttributes(const Vector<Attribute>& attributes)
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 DElementDataCache.h39 class Attribute;
48 PassRefPtr<ShareableElementData> cachedShareableElementDataWithAttributes(const Vector<Attribute>&);
/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/llvm/test/tools/llvm-readobj/ARM/
H A Dattributes.s54 @ CHECK: Attribute {
59 @ CHECK: Attribute {
64 @ CHECK: Attribute {
70 @ CHECK: Attribute {
76 @ CHECK: Attribute {
82 @ CHECK: Attribute {
88 @ CHECK: Attribute {
94 @ CHECK: Attribute {
100 @ CHECK: Attribute {
106 @ CHECK: Attribute {
[all...]
/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/droiddriver/src/com/google/android/droiddriver/uiautomation/
H A DUiAutomationElement.java29 import com.google.android.droiddriver.finders.Attribute;
54 private final Map<Attribute, Object> attributes;
73 Map<Attribute, Object> attribs = new EnumMap<Attribute, Object>(Attribute.class);
74 put(attribs, Attribute.PACKAGE, charSequenceToString(node.getPackageName()));
75 put(attribs, Attribute.CLASS, charSequenceToString(node.getClassName()));
76 put(attribs, Attribute.TEXT, charSequenceToString(node.getText()));
77 put(attribs, Attribute.CONTENT_DESC, charSequenceToString(node.getContentDescription()));
78 put(attribs, Attribute
[all...]
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DTranslatorHLSL.h20 const std::vector<gl::Attribute> &getOutputVariables() { return mActiveOutputVariables; }
21 const std::vector<gl::Attribute> &getAttributes() { return mActiveAttributes; }
29 std::vector<gl::Attribute> mActiveOutputVariables;
30 std::vector<gl::Attribute> mActiveAttributes;
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
H A DClassReaderGenerator.java18 import org.mockito.asm.Attribute;
25 private final Attribute[] attrs;
32 public ClassReaderGenerator(ClassReader r, Attribute[] attrs, int flags) {
34 this.attrs = (attrs != null) ? attrs : new Attribute[0];
H A DMethodFilter.java18 import org.mockito.asm.Attribute;
/external/droiddriver/src/com/google/android/droiddriver/finders/
H A DAttribute.java19 public enum Attribute { enum
41 private Attribute(String name) { method in class:Attribute
H A DXPaths.java69 public static String is(Attribute attribute) {
77 public static String not(Attribute attribute) {
82 public static String attr(Attribute attribute, String value) {
87 public static String containsAttr(Attribute attribute, String containedValue) {
92 /** Shorthand for {@link #attr}{@code (Attribute.TEXT, value)} */
94 return attr(Attribute.TEXT, value);
97 /** Shorthand for {@link #attr}{@code (Attribute.RESOURCE_ID, value)} */
99 return attr(Attribute.RESOURCE_ID, value);
/external/deqp/executor/
H A DxeTestLogWriter.cpp254 << Writer::Attribute("Name", number.name)
255 << Writer::Attribute("Description", number.description)
256 << Writer::Attribute("Unit", number.unit)
257 << Writer::Attribute("Tag", number.tag)
267 << Writer::Attribute("Name", image.name)
268 << Writer::Attribute("Description", image.description)
269 << Writer::Attribute("Width", de::toString(image.width))
270 << Writer::Attribute("Height", de::toString(image.height))
271 << Writer::Attribute("Format", getImageFormatName(image.format))
272 << Writer::Attribute("CompressionMod
[all...]
/external/droiddriver/src/com/google/android/droiddriver/base/
H A DBaseUiElement.java26 import com.google.android.droiddriver.finders.Attribute;
61 public <T> T get(Attribute attribute) {
67 return get(Attribute.TEXT);
72 return get(Attribute.CONTENT_DESC);
77 return get(Attribute.CLASS);
82 return get(Attribute.RESOURCE_ID);
87 return get(Attribute.PACKAGE);
92 return (Boolean) get(Attribute.CHECKABLE);
97 return (Boolean) get(Attribute.CHECKED);
102 return (Boolean) get(Attribute
[all...]

Completed in 441 milliseconds

1234567891011>>