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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/rop/
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
  /dalvik/dx/src/com/android/dx/cf/iface/
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
  /external/llvm/tools/llvm-readobj/
ARMAttributeParser.h 1 //===--- ARMAttributeParser.h - ARM Attribute Information Printer ---------===//
23 ARMBuildAttrs::AttrType Attribute;
  /external/proguard/src/proguard/classfile/attribute/
Attribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.AttributeVisitor;
27 * This abstract class represents an attribute that is attached to a class,
28 * a class member, or a code attribute. Specific types of attributes are
34 public abstract class Attribute implements VisitorAccepter
47 * Create an uninitialized Attribute.
49 protected Attribute()
55 * Create an initialized Attribute.
57 protected Attribute(int u2attributeNameIndex)
64 * Returns the String name of the attribute
    [all...]
  /frameworks/native/opengl/tests/configdump/
configdump.cpp 22 #define ATTRIBUTE(_attr) { _attr, #_attr }
24 struct Attribute {
25 EGLint attribute; member in struct:Attribute
29 Attribute attributes[] = {
30 ATTRIBUTE( EGL_BUFFER_SIZE ),
31 ATTRIBUTE( EGL_ALPHA_SIZE ),
32 ATTRIBUTE( EGL_BLUE_SIZE ),
33 ATTRIBUTE( EGL_GREEN_SIZE ),
34 ATTRIBUTE( EGL_RED_SIZE ),
35 ATTRIBUTE( EGL_DEPTH_SIZE )
    [all...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfAttribute.cpp 39 // class Attribute
56 Attribute::Attribute () {}
59 Attribute::~Attribute () {}
74 typedef Attribute* (*Constructor)();
105 Attribute::knownType (const char typeName[])
115 Attribute::registerAttributeType (const char typeName[],
116 Attribute *(*newAttribute)())
122 THROW (Iex::ArgExc, "Cannot register image file attribute "
    [all...]
ImfAttribute.h 42 // class Attribute
54 class Attribute
62 Attribute ();
63 virtual ~Attribute ();
67 // Get this attribute's type name
74 // Make a copy of this attribute
77 virtual Attribute * copy () const = 0;
81 // Type-specific attribute I/O and copying
91 virtual void copyValueFrom (const Attribute &other) = 0;
95 // Attribute factor
311 Attribute * attribute = new TypedAttribute<T>(); local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Attribute.java 34 public class Attribute {
41 /** The name of the attribute "foo" */
44 /** The optional attribute intialization expression */
47 public Attribute(String decl) {
51 public Attribute(String name, String decl) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
Attribute.java 14 * Attribute is a pair of OID (as type identifier) + set of values.
17 * Attribute ::= SEQUENCE {
30 * General rule of Attribute usage is that the {@link Attributes} containers
31 * must not have multiple Attribute:s with same attrType (OID) there.
33 public class Attribute
40 * Return an Attribute object from the given object.
45 * <li> {@link Attribute} object
46 * <li> {@link org.bouncycastle.asn1.ASN1Sequence#getInstance(java.lang.Object) ASN1Sequence} input formats with Attribute structure inside
52 public static Attribute getInstance(
55 if (o instanceof Attribute)
    [all...]
  /external/bouncycastle/bcprov/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 instanceof Attribute)
29 return (Attribute)o;
34 return new Attribute(ASN1Sequence.getInstance(o));
40 private Attribute(
52 public Attribute(
78 * Attribute ::= SEQUENCE {
  /external/google-breakpad/src/common/dwarf/
dwarf2reader_test_common.h 127 // Add an attribute to the current abbreviation code whose name is |name|
129 TestAbbrevTable &Attribute(DwarfAttribute name, DwarfForm form) {
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
Attribute.java 21 /** Extend this class to implement a material attribute. Register the attribute type by statically calling the
22 * {@link #register(String)} method, whose return value should be used to instantiate the attribute. A class can implement
25 public abstract class Attribute implements Comparable<Attribute> {
29 /** @return The ID of the specified attribute type, or zero if not available */
36 /** @return The alias of the specified attribute type, or null if not available. */
44 /** Call this method to register a custom attribute type, see the wiki for an example. If the alias already exists, then that ID
55 /** The type of this attribute */
60 protected Attribute (final long type) {
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
SyntaxHighlighting.h 20 enum HighlightColor { Address, String, Tag, Attribute, Enumerator, Macro };
  /external/skia/include/core/
SkDocument.h 134 * std::vector<SkDocument::Attribute> info;
147 struct Attribute {
149 Attribute(const SkString& k, const SkString& v) : fKey(k), fValue(v) {}
151 virtual void setMetadata(const SkDocument::Attribute[],
  /external/droiddriver/src/io/appium/droiddriver/finders/
ByXPath.java 146 setAttribute(element, Attribute.CLASS, className);
147 setAttribute(element, Attribute.RESOURCE_ID, uiElement.getResourceId());
148 setAttribute(element, Attribute.PACKAGE, uiElement.getPackageName());
149 setAttribute(element, Attribute.CONTENT_DESC, uiElement.getContentDescription());
150 setAttribute(element, Attribute.TEXT, uiElement.getText());
151 setAttribute(element, Attribute.CHECKABLE, uiElement.isCheckable());
152 setAttribute(element, Attribute.CHECKED, uiElement.isChecked());
153 setAttribute(element, Attribute.CLICKABLE, uiElement.isClickable());
154 setAttribute(element, Attribute.ENABLED, uiElement.isEnabled());
155 setAttribute(element, Attribute.FOCUSABLE, uiElement.isFocusable())
    [all...]
Attribute.java 19 public enum Attribute {
41 private Attribute(String name) {
  /external/deqp/executor/
xeXMLWriter.hpp 60 struct Attribute
64 Attribute (const char* name_, const char* value_) : name(name_), value(value_) {}
65 Attribute (const char* name_, const std::string& value_) : name(name_), value(value_) {}
66 Attribute (const std::string& name_, const std::string& value_) : name(name_), value(value_) {}
75 Writer& operator<< (const Attribute& attribute);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Attribute.java 33 * A non standard class, field, method or code attribute.
38 public class Attribute {
41 * The type of this attribute.
46 * The raw value of this attribute, used only for unknown attributes.
51 * The next attribute in this attribute list. May be <tt>null</tt>.
53 Attribute next;
56 * Constructs a new empty attribute.
58 * @param type the type of the attribute.
60 protected Attribute(final String type) {
    [all...]
  /frameworks/base/tools/aapt2/
ResourceValues.cpp 298 Attribute::Attribute(bool w, uint32_t t) :
305 bool Attribute::equals(const Value* value) const {
306 const Attribute* other = valueCast<Attribute>(value);
320 Attribute* Attribute::clone(StringPool* /*newPool*/) const {
321 return new Attribute(*this);
324 void Attribute::printMask(std::ostream* out) const {
422 void Attribute::print(std::ostream* out) const
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
AttributedCharacterIteratorTest.java 155 * @tests java.text.AttributedCharacterIterator#getRunLimit(java.text.AttributedCharacterIterator$Attribute)
157 public void test_getRunLimitLjava_text_AttributedCharacterIterator$Attribute() {
159 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE, "a", 2,
163 2, it.getRunLimit(AttributedCharacterIterator.Attribute.LANGUAGE));
166 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE, null,
170 4, it.getRunLimit(AttributedCharacterIterator.Attribute.LANGUAGE));
  /libcore/ojluni/src/main/java/java/text/
AttributedCharacterIterator.java 36 * related attribute information.
39 * An attribute is a key/value pair, identified by the key. No two
42 * <p>The values for an attribute are immutable, or must not be mutated
46 * <p>A <em>run with respect to an attribute</em> is a maximum text range for
49 * <li>the attribute is undefined or {@code null} for the entire range, or
50 * <li>the attribute value is defined and has the same non-{@code null} value for the
55 * which this condition is met for each member attribute.
60 * of attribute/value pairs) are treated as separate runs if the
65 * <p>The returned attribute information is limited to runs that contain
69 * Attribute keys are instances of {@link AttributedCharacterIterator.Attribute} and it
    [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...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DIEHash.cpp 31 /// \brief Grabs the string in whichever attribute is passed in and returns
109 // ... Then the name, taken from the DW_AT_name attribute.
125 DEBUG(dbgs() << "Attribute: "
184 void DIEHash::hashShallowTypeReference(dwarf::Attribute Attribute,
189 // the DWARF attribute code (DW_AT_type or DW_AT_friend),
190 addULEB128(Attribute);
210 void DIEHash::hashRepeatedTypeReference(dwarf::Attribute Attribute,
216 addULEB128(Attribute);
    [all...]
  /external/skia/src/gpu/
GrPrimitiveProcessor.h 156 * attribute limits. This number can almost certainly be raised if required.
160 struct Attribute {
161 Attribute()
165 Attribute(const char* name, GrVertexAttribType type,
178 const Attribute& getAttrib(int index) const {
216 * be provided via vertex attribute.
234 Attribute fAttribs[kMaxVertexAttribs];
  /frameworks/compile/mclinker/include/mcld/MC/
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.
70 /** \class Attribute
75 * onto AttributeBase, and modifiers remains with the class Attribute.
77 class Attribute : public AttributeBase {
131 bool isLegal(const Attribute& pAttr) const;
135 * \brief AttributeProxys is the illusion of private attribute of each
143 * its attribute without explicit searching of existing attribute
    [all...]

Completed in 502 milliseconds

1 2 3 4 5 6 7 8 91011>>