Home
last modified time | relevance | path

Searched full:attribute (Results 1 – 25 of 12212) sorted by relevance

12345678910>>...489

/external/swiftshader/third_party/llvm-subzero/build/Linux/include/llvm/IR/
DAttributes.gen58 static Attribute::AttrKind getAttrKindFromName(StringRef AttrName) {
59 return StringSwitch<Attribute::AttrKind>(AttrName)
60 .Case("align", Attribute::Alignment)
61 .Case("allocsize", Attribute::AllocSize)
62 .Case("alwaysinline", Attribute::AlwaysInline)
63 .Case("argmemonly", Attribute::ArgMemOnly)
64 .Case("builtin", Attribute::Builtin)
65 .Case("byval", Attribute::ByVal)
66 .Case("cold", Attribute::Cold)
67 .Case("convergent", Attribute::Convergent)
[all …]
/external/swiftshader/third_party/llvm-subzero/build/Android/include/llvm/IR/
DAttributes.gen58 static Attribute::AttrKind getAttrKindFromName(StringRef AttrName) {
59 return StringSwitch<Attribute::AttrKind>(AttrName)
60 .Case("align", Attribute::Alignment)
61 .Case("allocsize", Attribute::AllocSize)
62 .Case("alwaysinline", Attribute::AlwaysInline)
63 .Case("argmemonly", Attribute::ArgMemOnly)
64 .Case("builtin", Attribute::Builtin)
65 .Case("byval", Attribute::ByVal)
66 .Case("cold", Attribute::Cold)
67 .Case("convergent", Attribute::Convergent)
[all …]
/external/swiftshader/third_party/llvm-subzero/build/MacOS/include/llvm/IR/
DAttributes.gen58 static Attribute::AttrKind getAttrKindFromName(StringRef AttrName) {
59 return StringSwitch<Attribute::AttrKind>(AttrName)
60 .Case("align", Attribute::Alignment)
61 .Case("allocsize", Attribute::AllocSize)
62 .Case("alwaysinline", Attribute::AlwaysInline)
63 .Case("argmemonly", Attribute::ArgMemOnly)
64 .Case("builtin", Attribute::Builtin)
65 .Case("byval", Attribute::ByVal)
66 .Case("cold", Attribute::Cold)
67 .Case("convergent", Attribute::Convergent)
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DAttributes.inc58 static Attribute::AttrKind getAttrKindFromName(StringRef AttrName) {
59 return StringSwitch<Attribute::AttrKind>(AttrName)
60 .Case("align", Attribute::Alignment)
61 .Case("allocsize", Attribute::AllocSize)
62 .Case("alwaysinline", Attribute::AlwaysInline)
63 .Case("argmemonly", Attribute::ArgMemOnly)
64 .Case("builtin", Attribute::Builtin)
65 .Case("byval", Attribute::ByVal)
66 .Case("cold", Attribute::Cold)
67 .Case("convergent", Attribute::Convergent)
[all …]
/external/swiftshader/third_party/llvm-subzero/build/Windows/include/llvm/IR/
DAttributes.gen58 static Attribute::AttrKind getAttrKindFromName(StringRef AttrName) {
59 return StringSwitch<Attribute::AttrKind>(AttrName)
60 .Case("align", Attribute::Alignment)
61 .Case("allocsize", Attribute::AllocSize)
62 .Case("alwaysinline", Attribute::AlwaysInline)
63 .Case("argmemonly", Attribute::ArgMemOnly)
64 .Case("builtin", Attribute::Builtin)
65 .Case("byval", Attribute::ByVal)
66 .Case("cold", Attribute::Cold)
67 .Case("convergent", Attribute::Convergent)
[all …]
/external/swiftshader/third_party/llvm-subzero/build/Fuchsia/include/llvm/IR/
DAttributes.gen58 static Attribute::AttrKind getAttrKindFromName(StringRef AttrName) {
59 return StringSwitch<Attribute::AttrKind>(AttrName)
60 .Case("align", Attribute::Alignment)
61 .Case("allocsize", Attribute::AllocSize)
62 .Case("alwaysinline", Attribute::AlwaysInline)
63 .Case("argmemonly", Attribute::ArgMemOnly)
64 .Case("builtin", Attribute::Builtin)
65 .Case("byval", Attribute::ByVal)
66 .Case("cold", Attribute::Cold)
67 .Case("convergent", Attribute::Convergent)
[all …]
/external/swiftshader/third_party/llvm-10.0/configs/common/include/llvm/IR/
DAttributes.inc70 static Attribute::AttrKind getAttrKindFromName(StringRef AttrName) {
71 return StringSwitch<Attribute::AttrKind>(AttrName)
72 .Case("align", Attribute::Alignment)
73 .Case("allocsize", Attribute::AllocSize)
74 .Case("alwaysinline", Attribute::AlwaysInline)
75 .Case("argmemonly", Attribute::ArgMemOnly)
76 .Case("builtin", Attribute::Builtin)
77 .Case("byval", Attribute::ByVal)
78 .Case("cold", Attribute::Cold)
79 .Case("convergent", Attribute::Convergent)
[all …]
/external/swiftshader/third_party/llvm-10.0/configs/common/lib/IR/
DAttributesCompatFunc.inc70 static Attribute::AttrKind getAttrKindFromName(StringRef AttrName) {
71 return StringSwitch<Attribute::AttrKind>(AttrName)
72 .Case("align", Attribute::Alignment)
73 .Case("allocsize", Attribute::AllocSize)
74 .Case("alwaysinline", Attribute::AlwaysInline)
75 .Case("argmemonly", Attribute::ArgMemOnly)
76 .Case("builtin", Attribute::Builtin)
77 .Case("byval", Attribute::ByVal)
78 .Case("cold", Attribute::Cold)
79 .Case("convergent", Attribute::Convergent)
[all …]
/external/ow2-asm/asm/src/main/java/org/objectweb/asm/
DAttribute.java31 * A non standard class, field, method or Code attribute, as defined in the Java Virtual Machine
41 public class Attribute { class
43 /** The type of this attribute, also called its name in the JVMS. */
47 * The raw content of this attribute, only used for unknown attributes (see {@link #isUnknown()}).
48 * The 6 header bytes of the attribute (attribute_name_index and attribute_length) are <i>not</i>
54 * The next attribute in this attribute list (Attribute instances can be linked via this field to
57 Attribute nextAttribute;
60 * Constructs a new empty attribute.
62 * @param type the type of the attribute.
64 protected Attribute(final String type) { in Attribute() method in Attribute
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/IR/
DAttributes.h67 class Attribute {
72 /// Note: The `uwtable' attribute is about the ABI or the user mandating an
73 /// entry in the unwind table. The `nounwind' attribute is about an exception
116 Attribute(AttributeImpl *A) : pImpl(A) {} in Attribute() function
119 Attribute() = default;
122 // Attribute Construction
125 /// Return a uniquified Attribute object.
126 static Attribute get(LLVMContext &Context, AttrKind Kind, uint64_t Val = 0);
127 static Attribute get(LLVMContext &Context, StringRef Kind,
129 static Attribute get(LLVMContext &Context, AttrKind Kind, Type *Ty);
[all …]
/external/libxml2/result/noent/
Ddia14 <dia:attribute name="background">
6 </dia:attribute>
10 <dia:attribute name="obj_pos">
12 </dia:attribute>
13 <dia:attribute name="obj_bb">
15 </dia:attribute>
16 <dia:attribute name="conn_endpoints">
19 </dia:attribute>
20 <dia:attribute name="line_color">
22 </dia:attribute>
[all …]
Ddia24 <dia:attribute name="background">
6 </dia:attribute>
10 <dia:attribute name="obj_pos">
12 </dia:attribute>
13 <dia:attribute name="obj_bb">
15 </dia:attribute>
16 <dia:attribute name="conn_endpoints">
19 </dia:attribute>
20 <dia:attribute name="line_color">
22 </dia:attribute>
[all …]
/external/cronet/third_party/libxml/fuzz/seed_corpus/
D4ed56ff66d71f85b09f702026ed92a7184c4e08f4 <dia:attribute name="background">
6 </dia:attribute>
10 <dia:attribute name="obj_pos">
12 </dia:attribute>
13 <dia:attribute name="obj_bb">
15 </dia:attribute>
16 <dia:attribute name="conn_endpoints">
19 </dia:attribute>
20 <dia:attribute name="line_color">
22 </dia:attribute>
[all …]
/external/libxml2/result/
Ddia14 <dia:attribute name="background">
6 </dia:attribute>
10 <dia:attribute name="obj_pos">
12 </dia:attribute>
13 <dia:attribute name="obj_bb">
15 </dia:attribute>
16 <dia:attribute name="conn_endpoints">
19 </dia:attribute>
20 <dia:attribute name="line_color">
22 </dia:attribute>
[all …]
Ddia24 <dia:attribute name="background">
6 </dia:attribute>
10 <dia:attribute name="obj_pos">
12 </dia:attribute>
13 <dia:attribute name="obj_bb">
15 </dia:attribute>
16 <dia:attribute name="conn_endpoints">
19 </dia:attribute>
20 <dia:attribute name="line_color">
22 </dia:attribute>
[all …]
/external/libxml2/test/
Ddia14 <dia:attribute name="background">
6 </dia:attribute>
10 <dia:attribute name="obj_pos">
12 </dia:attribute>
13 <dia:attribute name="obj_bb">
15 </dia:attribute>
16 <dia:attribute name="conn_endpoints">
19 </dia:attribute>
20 <dia:attribute name="line_color">
22 </dia:attribute>
[all …]
Ddia24 <dia:attribute name="background">
6 </dia:attribute>
10 <dia:attribute name="obj_pos">
12 </dia:attribute>
13 <dia:attribute name="obj_bb">
15 </dia:attribute>
16 <dia:attribute name="conn_endpoints">
19 </dia:attribute>
20 <dia:attribute name="line_color">
22 </dia:attribute>
[all …]
/external/turbine/java/com/google/turbine/bytecode/
DAttributeWriter.java21 import com.google.turbine.bytecode.Attribute.Annotations;
22 import com.google.turbine.bytecode.Attribute.ConstantValue;
23 import com.google.turbine.bytecode.Attribute.ExceptionsAttribute;
24 import com.google.turbine.bytecode.Attribute.InnerClasses;
25 import com.google.turbine.bytecode.Attribute.MethodParameters;
26 import com.google.turbine.bytecode.Attribute.Signature;
27 import com.google.turbine.bytecode.Attribute.TurbineTransitiveJar;
28 import com.google.turbine.bytecode.Attribute.TypeAnnotations;
41 /** Writer {@link Attribute}s to bytecode. */
50 /** Writes a single attribute. */
[all …]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DElemUse.java36 * shared behavior the use-attribute-sets attribute.
37 * @see <a href="http://www.w3.org/TR/xslt#attribute-sets">attribute-sets in XSLT Specification</a>
45 * The value of the "use-attribute-sets" attribute.
51 * Set the "use-attribute-sets" attribute.
52 * Attribute sets are used by specifying a use-attribute-sets
53 * attribute on xsl:element, xsl:copy (see [7.5 Copying]) or
54 * xsl:attribute-set elements. The value of the use-attribute-sets
55 * attribute is a whitespace-separated list of names of attribute
59 * @param v The value to set for the "use-attribute-sets" attribute.
75 * Set the "use-attribute-sets" attribute.
[all …]
/external/cldr/tools/cldr-code/src/test/java/org/unicode/cldr/unittest/
DTestDtdData.java23 import org.unicode.cldr.util.DtdData.Attribute;
55 // has a value & value attribute in TestRegularized()
90 // // has a value & value attribute in TestRegularized()
97 // has a value & value attribute in TestRegularized()
105 // has a value attribute in TestRegularized()
111 // has a value & value attribute in TestRegularized()
223 * make sure that if the final element is empty, there is a value attribute required somewhere
245 HashSet<Attribute> valueAttributes = new LinkedHashSet<>(); in checkEmpty()
246 HashSet<Attribute> distAttributes = new LinkedHashSet<>(); in checkEmpty()
247 HashSet<Attribute> metadataAttributes = in checkEmpty()
[all …]
/external/ethtool/libmnl/src/
Dattr.c16 * \defgroup attr Netlink attribute helpers
18 * Netlink Type-Length-Value (TLV) attribute:
33 * mnl_attr_get_type - get type of netlink attribute
34 * \param attr pointer to netlink attribute
36 * \return the attribute type
44 * mnl_attr_get_len - get length of netlink attribute
45 * \param attr pointer to netlink attribute
47 * \return the attribute length
49 * The attribute length is the length of the attribute header plus the
50 * attribute payload.
[all …]
/external/cldr/common/dtd/
DldmlSupplemental.xsd66 <xs:attribute name="number" use="required"/>
67 <xs:attribute default="45" name="cldrVersion">
73 </xs:attribute>
74 <xs:attribute default="15.1.0" name="unicodeVersion">
80 </xs:attribute>
92 <xs:attribute name="date" use="required"/>
101 <xs:attribute name="version" use="required"/>
113 <xs:attribute name="draft">
124 </xs:attribute>
134 <xs:attribute name="draft">
[all …]
/external/mesa3d/src/gfxstream/codegen/vulkan/vulkan-docs-next/xml/
Dregistry.rnc43 attribute name { text } ,
44 attribute protect { text } ,
59 attribute name { text } ,
60 attribute author { text } ,
61 attribute contact { text }
76 # api - matches a <feature> api attribute, if present
150 attribute api { text } ? ,
151 attribute alias { text } ? ,
152 attribute requires { text } ? ,
153 attribute bitvalues { text } ? ,
[all …]
/external/cronet/third_party/libc++/src/test/libcxx/diagnostics/
Dmath_nodiscard_extensions.verify.cpp14 // Check that functions from `<cmath>` that Clang marks with the `[[gnu::const]]` attribute are dec…
23 …// Without that attribute being added implicitly, this test can't be checked consistently because … in test()
26 … // expected-warning-re {{ignoring return value of function declared with {{.*}} attribute}} in test()
27 … // expected-warning-re {{ignoring return value of function declared with {{.*}} attribute}} in test()
28 … // expected-warning-re {{ignoring return value of function declared with {{.*}} attribute}} in test()
29 … // expected-warning-re {{ignoring return value of function declared with {{.*}} attribute}} in test()
30 … // expected-warning-re {{ignoring return value of function declared with {{.*}} attribute}} in test()
31 … // expected-warning-re {{ignoring return value of function declared with {{.*}} attribute}} in test()
32 … // expected-warning-re {{ignoring return value of function declared with {{.*}} attribute}} in test()
33 … // expected-warning-re {{ignoring return value of function declared with {{.*}} attribute}} in test()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DAttributes.h51 class Attribute {
56 /// Note: The `uwtable' attribute is about the ABI or the user mandating an
57 /// entry in the unwind table. The `nounwind' attribute is about an exception
81 Attribute(AttributeImpl *A) : pImpl(A) {} in Attribute() function
84 Attribute() = default;
87 // Attribute Construction
90 /// Return a uniquified Attribute object.
91 static Attribute get(LLVMContext &Context, AttrKind Kind, uint64_t Val = 0);
92 static Attribute get(LLVMContext &Context, StringRef Kind,
94 static Attribute get(LLVMContext &Context, AttrKind Kind, Type *Ty);
[all …]

12345678910>>...489