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

1 2 3

  /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/chromium_org/third_party/angle/src/compiler/translator/
ShaderVars.cpp 72 Attribute::Attribute()
76 Attribute::~Attribute()
79 Attribute::Attribute(const Attribute &other)
84 Attribute &Attribute::operator=(const Attribute &other
    [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 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...]
AttributeTable.java 32 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)
102 * Return the first attribute matching the OBJECT IDENTIFIER oid.
104 * @param oid type of attribute required
    [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/chromium_org/third_party/WebKit/Source/core/dom/
Attribute.h 35 class Attribute {
37 Attribute(const QualifiedName& name, const AtomicString& value)
44 // as the Attribute stays in place. For example, calling a function that mutates
45 // an Element's internal attribute storage may invalidate them.
60 // name of an attribute once parseAttribute has been called as DOM
61 // elements may have placed the Attribute in a hash by name.
67 Attribute();
75 inline bool Attribute::matches(const QualifiedName& qualifiedName) const
  /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/droiddriver/src/com/google/android/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...]
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/parse/
ast.py 96 class Attribute(NodeBase):
97 """Represents an attribute."""
101 super(Attribute, self).__init__(**kwargs)
106 return super(Attribute, self).__eq__(other) and \
114 _list_item_type = Attribute
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
generate_injected_script_externs.py 57 # 4: attribute name
114 class Attribute:
175 attributes.append(Attribute(type, name))
188 for attribute in ifc.attributes:
189 output.write(' /** @type {%s} */\n' % attribute.type.as_js_type())
190 output.write(' this.%s;\n' % attribute.name)
  /external/chromium_org/third_party/angle/include/GLSLANG/
ShaderVars.h 73 struct COMPILER_EXPORT Attribute : public ShaderVariable
75 Attribute();
76 ~Attribute();
77 Attribute(const Attribute &other);
78 Attribute &operator=(const Attribute &other);
  /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
116 // ... Then the name, taken from the DW_AT_name attribute.
136 DEBUG(dbgs() << "Attribute: "
195 void DIEHash::hashShallowTypeReference(dwarf::Attribute Attribute,
200 // the DWARF attribute code (DW_AT_type or DW_AT_friend),
201 addULEB128(Attribute);
221 void DIEHash::hashRepeatedTypeReference(dwarf::Attribute Attribute,
227 addULEB128(Attribute);
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp 577 const char* TiXmlElement::Attribute( const char* name ) const
587 const std::string* TiXmlElement::Attribute( const std::string& name ) const
597 const char* TiXmlElement::Attribute( const char* name, int* i ) const
613 const std::string* TiXmlElement::Attribute( const std::string& name, int* i ) const
629 const char* TiXmlElement::Attribute( const char* name, double* d ) const
645 const std::string* TiXmlElement::Attribute( const std::string& name, double* d ) const
860 const TiXmlAttribute* attribute = 0; local
861 for( attribute = attributeSet.First();
862 attribute;
863 attribute = attribute->Next()
    [all...]
  /external/deqp/modules/glshared/
glsAttributeLocationTests.hpp 23 * \brief Attribute location tests
81 class Attribute
96 Attribute (const AttribType& type,
119 Bind (const std::string& attribute, deUint32 location);
131 // Simple bind attribute test
140 int arraySize = AttributeLocationTestUtil::Attribute::NOT_ARRAY);
159 int arraySize = AttributeLocationTestUtil::Attribute::NOT_ARRAY);
178 int arraySize = AttributeLocationTestUtil::Attribute::NOT_ARRAY);
197 int arraySize = AttributeLocationTestUtil::Attribute::NOT_ARRAY);
215 int arraySize = AttributeLocationTestUtil::Attribute::NOT_ARRAY)
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/
IItemAttribute.java 53 if ($assert.ENABLED) $assert.ASSERT (attributeID >= ATTRIBUTE_NAME_ID && attributeID <= ATTRIBUTE_LINE_COVERAGE_ID, "invalid attribute ID: " + attributeID);
66 private static abstract class Attribute implements IItemAttribute
73 protected Attribute (final String name)
86 private static final class NameAttribute extends Attribute
130 private static final class FractionAttribute extends Attribute
  /external/llvm/bindings/python/llvm/
core.py 74 class Attribute(LLVMEnumeration):
75 """Represents an individual Attribute enumeration."""
80 super(Attribute, self).__init__(name, value)
596 (Attribute, enumerations.Attributes),
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 67 std::vector<AttributeSet> Attribute;
114 assert(I != AttributeMap.end() && "Attribute not in ValueEnumerator!");
121 assert(I != AttributeGroupMap.end() && "Attribute not in ValueEnumerator!");
142 return Attribute;
  /bionic/libc/kernel/uapi/linux/
cciss_defs.h 112 BYTE Attribute:3;

Completed in 898 milliseconds

1 2 3