Searched defs:Attribute (Results 1 - 25 of 122) sorted by relevance

12345

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DAttribute.java34 public class Attribute { class
47 public Attribute(String decl) { method in class:Attribute
51 public Attribute(String name, String decl) { method in class:Attribute
/external/llvm/tools/llvm-readobj/
H A DARMAttributeParser.h1 //===--- ARMAttributeParser.h - ARM Attribute Information Printer ---------===//
23 ARMBuildAttrs::AttrType Attribute; member in struct:llvm::ARMAttributeParser::DisplayHandler
/external/swiftshader/third_party/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; }
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DAttribute.java14 * 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 class in inherits:ASN1Object
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)
68 private Attribute( method in class:Attribute
75 public Attribute( method in class: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/proguard/src/proguard/classfile/attribute/
H A DAttribute.java34 public abstract class Attribute implements VisitorAccepter class in inherits:VisitorAccepter
47 * Create an uninitialized Attribute.
49 protected Attribute() method in class:Attribute
55 * Create an initialized Attribute.
57 protected Attribute(int u2attributeNameIndex) method in class:Attribute
/external/llvm/lib/DebugInfo/DWARF/
H A DSyntaxHighlighting.h20 enum HighlightColor { Address, String, Tag, Attribute, Enumerator, Macro }; enumerator in enum:llvm::dwarf::syntax::HighlightColor
/external/deqp/executor/
H A DxeXMLWriter.hpp60 struct Attribute struct in class:xe::xml::Writer
64 Attribute (const char* name_, const char* value_) : name(name_), value(value_) {} function in struct:xe::xml::Writer::Attribute
65 Attribute (const char* name_, const std::string& value_) : name(name_), value(value_) {} function in struct:xe::xml::Writer::Attribute
66 Attribute (const std::string& name_, const std::string& value_) : name(name_), value(value_) {} function in struct:xe::xml::Writer::Attribute
75 Writer& operator<< (const Attribute& attribute);
/external/droiddriver/src/io/appium/droiddriver/finders/
H A DAttribute.java19 public enum Attribute { enum
41 Attribute(String name) { method in class:Attribute
/external/llvm/lib/Object/
H A DRecordStreamer.cpp32 MCSymbolAttr Attribute) {
37 S = (Attribute == MCSA_Weak) ? GlobalWeak : DefinedGlobal;
43 S = (Attribute == MCSA_Weak) ? GlobalWeak : Global;
92 MCSymbolAttr Attribute) {
93 if (Attribute == MCSA_Global || Attribute == MCSA_Weak)
94 markGlobal(*Symbol, Attribute);
31 markGlobal(const MCSymbol &Symbol, MCSymbolAttr Attribute) argument
91 EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) argument
/external/syslinux/efi32/include/efi/protocol/
H A Dvgaclass.h66 // Clear Screen & Default Attribute
68 UINT32 Attribute; member in struct:__anon19643
/external/syslinux/efi64/include/efi/protocol/
H A Dvgaclass.h66 // Clear Screen & Default Attribute
68 UINT32 Attribute; member in struct:__anon19820
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/protocol/
H A Dvgaclass.h66 // Clear Screen & Default Attribute
68 UINT32 Attribute; member in struct:__anon20041
/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...]
/external/google-breakpad/src/common/dwarf/
H A Ddwarf2reader_test_common.h129 TestAbbrevTable &Attribute(DwarfAttribute name, DwarfForm form) { function in class:TestAbbrevTable
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/parse/
H A Dast.py96 class Attribute(NodeBase): class in inherits:NodeBase
101 super(Attribute, self).__init__(**kwargs)
106 return super(Attribute, self).__eq__(other) and \
114 _list_item_type = Attribute
/external/skia/src/gpu/
H A DGrPrimitiveProcessor.h104 struct Attribute { struct in class:GrPrimitiveProcessor
105 Attribute() function in struct:GrPrimitiveProcessor::Attribute
109 Attribute(const char* name, GrVertexAttribType type, GrSLPrecision precision) function in struct:GrPrimitiveProcessor::Attribute
121 const Attribute& getAttrib(int index) const { return fAttribs[index]; }
170 SkSTArray<kPreallocAttribCnt, Attribute> fAttribs;
/external/swiftshader/third_party/LLVM/lib/Support/
H A DDwarf.cpp114 const char *llvm::dwarf::AttributeString(unsigned Attribute) { argument
115 switch (Attribute) {
/external/deqp/modules/glshared/
H A DglsAttributeLocationTests.hpp23 * \brief Attribute location tests
81 class Attribute class in namespace:deqp::gls::AttributeLocationTestUtil
96 Attribute (const AttribType& type,
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);
233 int arraySize = AttributeLocationTestUtil::Attribute::NOT_ARRAY);
305 int arraySize = AttributeLocationTestUtil::Attribute
[all...]
/external/emma/core/java12/com/vladium/emma/report/
H A DIItemAttribute.java66 private static abstract class Attribute implements IItemAttribute class in class:IItemAttribute.Factory
73 protected Attribute (final String name) method in class:IItemAttribute.Factory.Attribute
86 private static final class NameAttribute extends Attribute
130 private static final class FractionAttribute extends Attribute
/external/llvm/bindings/python/llvm/
H A Dcore.py74 class Attribute(LLVMEnumeration): class in inherits:LLVMEnumeration
75 """Represents an individual Attribute enumeration."""
80 super(Attribute, self).__init__(name, value)
593 (Attribute, enumerations.Attributes),
/external/llvm/include/llvm/IR/
H A DAttributes.h48 class Attribute { class in namespace:llvm
77 Attribute(AttributeImpl *A) : pImpl(A) {} function in class:llvm::Attribute
80 Attribute() : pImpl(nullptr) {} function in class:llvm::Attribute
83 // Attribute Construction
86 /// \brief Return a uniquified Attribute object.
87 static Attribute get(LLVMContext &Context, AttrKind Kind, uint64_t Val = 0);
88 static Attribute get(LLVMContext &Context, StringRef Kind,
91 /// \brief Return a uniquified Attribute object that has the specific
93 static Attribute getWithAlignment(LLVMContext &Context, uint64_t Align);
94 static Attribute getWithStackAlignmen
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIEHash.cpp125 DEBUG(dbgs() << "Attribute: "
184 void DIEHash::hashShallowTypeReference(dwarf::Attribute Attribute, argument
190 addULEB128(Attribute);
210 void DIEHash::hashRepeatedTypeReference(dwarf::Attribute Attribute, argument
216 addULEB128(Attribute);
223 void DIEHash::hashDIEEntry(dwarf::Attribute Attribute, dwarf::Tag Tag, argument
238 Attribute
283 dwarf::Attribute Attribute = Value.getAttribute(); local
[all...]
/external/llvm/lib/MC/
H A DWinCOFFStreamer.cpp93 MCSymbolAttr Attribute) {
97 switch (Attribute) {
92 EmitSymbolAttribute(MCSymbol *S, MCSymbolAttr Attribute) argument
/external/llvm/lib/Support/
H A DDwarf.cpp46 const char *llvm::dwarf::AttributeString(unsigned Attribute) { argument
47 switch (Attribute) {
214 // DWARF5 Fission Extension Attribute

Completed in 2871 milliseconds

12345