HomeSort by relevance Sort by last modified time
    Searched refs:Attribute (Results 1 - 25 of 725) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/rop/
AttributeList.java 41 * Get the {@code n}th attribute.
43 * @param n {@code n >= 0, n < size();} which attribute
44 * @return {@code non-null;} the attribute in question
46 public Attribute get(int n);
58 * Get the first attribute in the list with the given name, if any.
60 * @param name {@code non-null;} attribute name
61 * @return {@code null-ok;} first attribute in the list with the given name,
64 public Attribute findFirst(String name);
67 * Get the next attribute in the list after the given one, with the same
70 * @param attrib {@code non-null;} attribute to start looking afte
    [all...]
Attribute.java 22 public interface Attribute {
24 * Get the name of the attribute.
31 * Get the total length of the attribute in bytes, including the
StdAttributeList.java 23 * an array of {@link Attribute} objects and can be made immutable.
37 public Attribute get(int n) {
38 return (Attribute) get0(n);
54 public Attribute findFirst(String name) {
58 Attribute att = get(i);
68 public Attribute findNext(Attribute attrib) {
74 Attribute att = get(at);
86 Attribute att = get(at);
96 * Sets the attribute at the given index
    [all...]
  /dalvik/dx/src/com/android/dx/cf/iface/
AttributeList.java 41 * Get the {@code n}th attribute.
43 * @param n {@code n >= 0, n < size();} which attribute
44 * @return {@code non-null;} the attribute in question
46 public Attribute get(int n);
58 * Get the first attribute in the list with the given name, if any.
60 * @param name {@code non-null;} attribute name
61 * @return {@code null-ok;} first attribute in the list with the given name,
64 public Attribute findFirst(String name);
67 * Get the next attribute in the list after the given one, with the same
70 * @param attrib {@code non-null;} attribute to start looking afte
    [all...]
Attribute.java 22 public interface Attribute {
24 * Get the name of the attribute.
31 * Get the total length of the attribute in bytes, including the
StdAttributeList.java 23 * an array of {@link Attribute} objects and can be made immutable.
37 public Attribute get(int n) {
38 return (Attribute) get0(n);
54 public Attribute findFirst(String name) {
58 Attribute att = get(i);
68 public Attribute findNext(Attribute attrib) {
74 Attribute att = get(at);
86 Attribute att = get(at);
96 * Sets the attribute at the given index
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Attribute.java 7 * $Id: Attribute.java,v 1.1.1.1 2004/05/09 16:57:41 vlad_r Exp $
18 abstract class Attribute implements 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 HREF = new AttributeImpl ("HREF")
    [all...]
  /libcore/luni/src/main/java/java/text/
AttributedCharacterIterator.java 40 public static class Attribute implements Serializable {
45 * This attribute marks segments from an input method. Most input
51 public static final Attribute INPUT_METHOD_SEGMENT = new Attribute("input_method_segment");
54 * The attribute describing the language of a character. The value
57 public static final Attribute LANGUAGE = new Attribute("language");
61 * Japanese), this attribute allows to define which reading should be
65 public static final Attribute READING = new Attribute("reading")
    [all...]
  /frameworks/compile/mclinker/include/mcld/
AttributeOption.h 11 #include <mcld/MC/Attribute.h>
21 const Attribute& predefined() const { return m_Predefined; }
22 Attribute& predefined() { return m_Predefined; }
28 Attribute m_Predefined;
  /frameworks/compile/mclinker/include/mcld/MC/
AttributeSet.h 16 class Attribute;
19 * \brief AttributeSet is a set of Attribute.
27 typedef std::vector<Attribute*> AttrSet;
34 AttributeSet(unsigned int pNum, const Attribute& pPredefined);
44 // exists- return the recorded attribute whose content is identical to the
45 // input attribute.
46 Attribute *exists(const Attribute& pAttr) const;
48 // record - record the attribute no mater if it has been recorded.
49 void record(Attribute& pAttr)
    [all...]
Attribute.h 1 //===- Attribute.h --------------------------------------------------------===//
26 * file (@see mcld::Input in MCLinker) has a pointer of an attribute. Since
28 * which have identical attributes share common attribute. AttributeBase is
29 * the shared storage for attribute.
79 /** \class Attribute
84 * onto AttributeBase, and modifiers remains with the class Attribute.
86 class Attribute : public AttributeBase
160 bool isLegal(const Attribute& pAttr) const;
164 * \brief AttributeProxys is the illusion of private attribute of each
172 * its attribute without explicit searching of existing attribute
    [all...]
  /frameworks/compile/mclinker/lib/MC/
Attribute.cpp 9 #include <mcld/MC/Attribute.h>
18 bool AttrConstraint::isLegal(const Attribute& pAttr) const
52 const Attribute& pBase,
102 const Attribute *&pBase,
103 Attribute *&pCopy)
105 Attribute *result = pParent.exists(*pCopy);
118 Attribute *copy = new Attribute(*m_pBase);
125 Attribute *copy = new Attribute(*m_pBase)
    [all...]
AttributeSet.cpp 9 #include <mcld/MC/Attribute.h>
18 AttributeSet::AttributeSet(unsigned int pNum, const Attribute& pPredefined)
34 Attribute* AttributeSet::exists(const Attribute& pAttr) const
37 return const_cast<Attribute*>(&m_Predefined);
50 void AttributeSet::record(mcld::Attribute &pAttr)
  /external/llvm/unittests/IR/
AttributesTest.cpp 20 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::SExt
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
OldAttributedCharacterIteratorTest.java 34 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE, "a", 2,
37 HashSet<AttributedCharacterIterator.Attribute> attr =
38 new HashSet<AttributedCharacterIterator.Attribute>();
39 attr.add(AttributedCharacterIterator.Attribute.LANGUAGE);
44 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE, null,
50 attr.add(AttributedCharacterIterator.Attribute.READING);
58 Set<AttributedCharacterIterator.Attribute> emptyAttributes =
64 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE,
68 Set<AttributedCharacterIterator.Attribute> attributes =
70 for(AttributedCharacterIterator.Attribute attr:attributes)
77 Object attribute = local
    [all...]
  /external/llvm/lib/IR/
Attributes.cpp 11 // \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 that we found or created
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
GrammarRuleAttribute.cs 34 using Attribute = System.Attribute;
39 public sealed class GrammarRuleAttribute : Attribute {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
GrammarRuleAttribute.cs 35 using Attribute = System.Attribute;
40 public sealed class GrammarRuleAttribute : Attribute
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
FieldVisitor.java 52 * Visits a non standard attribute of the field.
54 * @param attr an attribute.
56 void visitAttribute(Attribute attr);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
AttributedCharacterIteratorAttributeTest.java 21 import java.text.AttributedCharacterIterator.Attribute;
34 * @tests java.text.AttributedCharacterIterator$Attribute()
37 MyAttribute attribute = new MyAttribute("attribute"); local
39 assertEquals("Attribute has wrong name", "attribute", attribute.getExposedName());
41 attribute = new MyAttribute(null);
42 assertEquals("Attribute has wrong name", null, attribute.getExposedName())
54 MyAttribute attribute = new MyAttribute("test"); local
79 MyAttribute attribute; local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
BaseAttribute.java 19 import com.android.dx.cf.iface.Attribute;
22 * Base implementation of {@link Attribute}, which directly stores
23 * the attribute name but leaves the rest up to subclasses.
25 public abstract class BaseAttribute implements Attribute {
26 /** {@code non-null;} attribute name */
32 * @param name {@code non-null;} attribute name
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
Attribute.java 15 * 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
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)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ElementDataCache.h 40 class Attribute;
48 PassRefPtrWillBeRawPtr<ShareableElementData> cachedShareableElementDataWithAttributes(const Vector<Attribute>&);
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
CompactHTMLToken.h 40 struct Attribute {
41 Attribute(const String& name, const String& value)
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/
attributes.s 54 @ 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...]

Completed in 784 milliseconds

1 2 3 4 5 6 7 8 91011>>