HomeSort by relevance Sort by last modified time
    Searched refs:Attribute (Results 1 - 25 of 2380) 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
  /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
  /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)
37 Attribute Align4 = Attribute::get(C, Attribute::Alignment, 4)
    [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/Transforms/IPO/
ForceFunctionAttrs.cpp 22 ForceAttributes("force-attribute", cl::Hidden,
23 cl::desc("Add an attribute to a function. This should be a "
24 "pair of 'function-name:attribute-name', for "
25 "example -force-attribute=foo:noinline. This "
28 static Attribute::AttrKind parseAttrKind(StringRef Kind) {
29 return StringSwitch<Attribute::AttrKind>(Kind)
30 .Case("alwaysinline", Attribute::AlwaysInline)
31 .Case("builtin", Attribute::Builtin)
32 .Case("cold", Attribute::Cold)
33 .Case("convergent", Attribute::Convergent
    [all...]
  /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...]
  /frameworks/compile/mclinker/include/mcld/MC/
AttributeSet.h 17 class Attribute;
20 * \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...]
  /external/skia/src/gpu/effects/
GrShadowGeoProc.h 28 const Attribute* inPosition() const { return fInPosition; }
29 const Attribute* inColor() const { return fInColor; }
30 const Attribute* inShadowParams() const { return fInShadowParams; }
41 const Attribute* fInPosition;
42 const Attribute* fInColor;
43 const Attribute* fInShadowParams;
  /external/skqp/src/gpu/effects/
GrShadowGeoProc.h 28 const Attribute* inPosition() const { return fInPosition; }
29 const Attribute* inColor() const { return fInColor; }
30 const Attribute* inShadowParams() const { return fInShadowParams; }
41 const Attribute* fInPosition;
42 const Attribute* fInColor;
43 const Attribute* fInShadowParams;
  /frameworks/compile/mclinker/lib/MC/
Attribute.cpp 9 #include "mcld/MC/Attribute.h"
19 bool AttrConstraint::isLegal(const Attribute& pAttr) const {
52 const Attribute& pBase,
96 const Attribute*& pBase,
97 Attribute*& pCopy) {
98 Attribute* result = pParent.exists(*pCopy);
109 Attribute* copy = new Attribute(*m_pBase);
115 Attribute* copy = new Attribute(*m_pBase)
    [all...]
  /external/flatbuffers/tests/FlatBuffers.Test/
FlatBuffersTestMethodAttribute.cs 22 public class FlatBuffersTestMethodAttribute : Attribute
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFAttribute.h 18 uint16_t Attribute;
22 : Attribute(attr), Form(form) {}
24 uint16_t getAttribute() const { return Attribute; }
  /frameworks/compile/mclinker/include/mcld/
AttributeOption.h 11 #include "mcld/MC/Attribute.h"
20 const Attribute& predefined() const { return m_Predefined; }
21 Attribute& predefined() { return m_Predefined; }
27 Attribute m_Predefined;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 20 /// Encapsulates a DWARF attribute value and all of the data required to
21 /// describe the attribute value.
26 /// The debug info/types offset for this attribute.
28 /// The debug info/types section byte size of the data for this attribute.
30 /// The attribute enumeration of this attribute.
31 dwarf::Attribute Attr;
32 /// The form and value for this attribute.
35 DWARFAttribute(uint32_t O, dwarf::Attribute A = dwarf::Attribute(0)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 20 /// Encapsulates a DWARF attribute value and all of the data required to
21 /// describe the attribute value.
26 /// The debug info/types offset for this attribute.
28 /// The debug info/types section byte size of the data for this attribute.
30 /// The attribute enumeration of this attribute.
31 dwarf::Attribute Attr;
32 /// The form and value for this attribute.
35 DWARFAttribute(uint32_t O, dwarf::Attribute A = dwarf::Attribute(0)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 20 /// Encapsulates a DWARF attribute value and all of the data required to
21 /// describe the attribute value.
26 /// The debug info/types offset for this attribute.
28 /// The debug info/types section byte size of the data for this attribute.
30 /// The attribute enumeration of this attribute.
31 dwarf::Attribute Attr;
32 /// The form and value for this attribute.
35 DWARFAttribute(uint32_t O, dwarf::Attribute A = dwarf::Attribute(0)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 20 /// Encapsulates a DWARF attribute value and all of the data required to
21 /// describe the attribute value.
26 /// The debug info/types offset for this attribute.
28 /// The debug info/types section byte size of the data for this attribute.
30 /// The attribute enumeration of this attribute.
31 dwarf::Attribute Attr;
32 /// The form and value for this attribute.
35 DWARFAttribute(uint32_t O, dwarf::Attribute A = dwarf::Attribute(0)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 20 /// Encapsulates a DWARF attribute value and all of the data required to
21 /// describe the attribute value.
26 /// The debug info/types offset for this attribute.
28 /// The debug info/types section byte size of the data for this attribute.
30 /// The attribute enumeration of this attribute.
31 dwarf::Attribute Attr;
32 /// The form and value for this attribute.
35 DWARFAttribute(uint32_t O, dwarf::Attribute A = dwarf::Attribute(0)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 20 /// Encapsulates a DWARF attribute value and all of the data required to
21 /// describe the attribute value.
26 /// The debug info/types offset for this attribute.
28 /// The debug info/types section byte size of the data for this attribute.
30 /// The attribute enumeration of this attribute.
31 dwarf::Attribute Attr;
32 /// The form and value for this attribute.
35 DWARFAttribute(uint32_t O, dwarf::Attribute A = dwarf::Attribute(0)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 20 /// Encapsulates a DWARF attribute value and all of the data required to
21 /// describe the attribute value.
26 /// The debug info/types offset for this attribute.
28 /// The debug info/types section byte size of the data for this attribute.
30 /// The attribute enumeration of this attribute.
31 dwarf::Attribute Attr;
32 /// The form and value for this attribute.
35 DWARFAttribute(uint32_t O, dwarf::Attribute A = dwarf::Attribute(0)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 20 /// Encapsulates a DWARF attribute value and all of the data required to
21 /// describe the attribute value.
26 /// The debug info/types offset for this attribute.
28 /// The debug info/types section byte size of the data for this attribute.
30 /// The attribute enumeration of this attribute.
31 dwarf::Attribute Attr;
32 /// The form and value for this attribute.
35 DWARFAttribute(uint32_t O, dwarf::Attribute A = dwarf::Attribute(0)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 20 /// Encapsulates a DWARF attribute value and all of the data required to
21 /// describe the attribute value.
26 /// The debug info/types offset for this attribute.
28 /// The debug info/types section byte size of the data for this attribute.
30 /// The attribute enumeration of this attribute.
31 dwarf::Attribute Attr;
32 /// The form and value for this attribute.
35 DWARFAttribute(uint32_t O, dwarf::Attribute A = dwarf::Attribute(0)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 20 /// Encapsulates a DWARF attribute value and all of the data required to
21 /// describe the attribute value.
26 /// The debug info/types offset for this attribute.
28 /// The debug info/types section byte size of the data for this attribute.
30 /// The attribute enumeration of this attribute.
31 dwarf::Attribute Attr;
32 /// The form and value for this attribute.
35 DWARFAttribute(uint32_t O, dwarf::Attribute A = dwarf::Attribute(0)
    [all...]

Completed in 746 milliseconds

1 2 3 4 5 6 7 8 91011>>