| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | JSONNodeDumper.cpp | 33 JOS.attribute("id", createPointerRepresentation(A)); in Visit() 34 JOS.attribute("kind", AttrName); in Visit() 52 JOS.attribute("id", createPointerRepresentation(S)); in Visit() 53 JOS.attribute("kind", S->getStmtClassName()); in Visit() 58 JOS.attribute("type", createQualType(E->getType())); in Visit() 67 JOS.attribute("valueCategory", Category); in Visit() 73 JOS.attribute("id", createPointerRepresentation(T)); in Visit() 78 JOS.attribute("kind", (llvm::Twine(T->getTypeClassName()) + "Type").str()); in Visit() 79 JOS.attribute("type", createQualType(QualType(T, 0), /*Desugar*/ false)); in Visit() 92 JOS.attribute("id", createPointerRepresentation(T.getAsOpaquePtr())); in Visit() [all …]
|
| /openbsd-src/etc/examples/ |
| H A D | ypldap.conf | 22 attribute name maps to "uid" 23 fixed attribute passwd "*" 24 attribute uid maps to "uidNumber" 25 attribute gid maps to "gidNumber" 26 attribute gecos maps to "cn" 27 attribute home maps to "homeDirectory" 28 attribute shell maps to "loginShell" 29 fixed attribute change "0" 30 fixed attribute expire "0" 31 fixed attribute class "" [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | TimeProfiler.cpp | 169 J.attribute("pid", Pid); in write() 170 J.attribute("tid", int64_t(Tid)); in write() 171 J.attribute("ph", "X"); in write() 172 J.attribute("ts", StartUs); in write() 173 J.attribute("dur", DurUs); in write() 174 J.attribute("name", E.Name); in write() 176 J.attributeObject("args", [&] { J.attribute("detail", E.Detail); }); in write() 225 J.attribute("pid", Pid); in write() 226 J.attribute("tid", int64_t(TotalTid)); in write() 227 J.attribute("ph", "X"); in write() [all …]
|
| /openbsd-src/regress/usr.sbin/bgpd/integrationtests/ |
| H A D | exabgp.attr.in | 46 route 10.12.1.0/24 next-hop self attribute [ 0x07 0xc0 0x02 ]; 48 route 10.12.2.0/24 next-hop self attribute [ 0x08 0xc0 0x02 ]; 50 route 10.12.3.0/24 next-hop self attribute [ 0x10 0xc0 0x02 ]; 52 route 10.12.4.0/24 next-hop self attribute [ 0x11 0xc0 0x02 ]; 54 route 10.12.5.0/24 next-hop self attribute [ 0x12 0xc0 0x02 ]; 56 route 10.12.6.0/24 next-hop self attribute [ 0x20 0xc0 0x02 ]; 58 route 10.12.7.0/24 next-hop self attribute [ 0x23 0xc0 0x02 ]; 60 route 10.12.8.0/24 next-hop self attribute [ 0x0a 0x80 0x02 ]; 80 route 10.13.1.0/24 next-hop self attribute [ 0x07 0xc0 0x02 ]; 82 route 10.13.2.0/24 next-hop self attribute [ [all...] |
| H A D | exabgp.as0.test2.in | 68 …route 10.13.2.0/24 next-hop self attribute [ 0x02 0x40 0x0203fbf75ba0fbf9 ] attribute [ 0x11 0xc0 … 69 …route 10.13.3.0/24 next-hop self as-path [ 64503 64505 ] aggregator 23456:127.0.0.1 attribute [ 0x…
|
| /openbsd-src/sys/dev/pci/drm/amd/amdkfd/ |
| H A D | kfd_topology.h | 89 struct attribute attr; 107 struct attribute attr; 127 struct attribute attr; 154 struct attribute attr_gpuid; 155 struct attribute attr_name; 156 struct attribute attr_props; 173 struct attribute attr_genid; 174 struct attribute attr_props;
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Term-ANSIColor/lib/Term/ |
| H A D | ANSIColor.pm | 408 my $attribute = q{}; 412 $attribute .= $ATTRIBUTES{$code} . q{;}; 419 $attribute .= "$prefix;2;$r;$g;$b;"; 427 chop($attribute); 430 return ($attribute ne q{}) ? "\e[${attribute}m" : undef; 578 for my $attribute (@color) { 579 if (!exists($ATTRIBUTES{$attribute})) { 580 croak(qq{Invalid attribute name "$attribute"});
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | AttrDocs.td | 54 The ``section`` attribute allows you to specify a specific section a 63 This attribute, when attached to a function or variable definition, indicates 72 Whether this attribute has any effect on the linker depends on the target and 76 targets (Windows and Apple platforms), the `used` attribute prevents symbols 79 This linker GC can be avoided by also adding the ``retain`` attribute. Note 80 that ``retain`` requires special support from the linker; see that attribute's 88 This attribute, when attached to a function or variable definition, prevents 94 this attribute has no effect. This attribute is typically combined with the 95 ``used`` attribute to force the definition to be emitted and preserved into the 98 This attribute is only necessary on ELF targets; other targets prevent section [all …]
|
| H A D | Attr.td | 1 //==--- Attr.td - attribute definitions -----------------------------------===// 33 // to not document the attribute, e.g. if the attribute has no spellings. 38 // documentation. Otherwise, the documentation will specify the attribute has 48 // If the heading is empty, one may be picked automatically. If the attribute 49 // only has one spelling, no heading is required as the attribute's sole 55 // When set, specifies that the attribute is deprecated and can optionally 56 // specify a replacement attribute. 60 // Specifies that the attribute is explicitly omitted from the documentation, 66 // Specifies that the attribute is undocumented, but that it _should_ have 75 // An attribute's subject is whatever it appertains to. In this file, it is [all …]
|
| /openbsd-src/gnu/usr.bin/perl/t/uni/ |
| H A D | attrs.t | 38 like $@, qr/^Invalid SCALAR attribute: ["']?plǖgh["']? at/; 48 like $@, qr/^Unterminated attribute parameter in attribute list at/; 50 like $@, qr/^Unterminated attribute parameter in attribute list at/; 54 like $@, qr/^SCALAR package attribute may clash with future reserved word: ["']?plǖgh["']? at/;
|
| /openbsd-src/gnu/llvm/clang/docs/ |
| H A D | ClangPlugins.rst | 81 // Handle the attribute 86 …static ParsedAttrInfoRegistry::Add<ExampleAttrInfo> Z("example_attr","example attribute descriptio… 88 The members of ``ParsedAttrInfo`` that a plugin attribute must define are: 92 attribute, each of which consists of an attribute syntax and how the 93 attribute name is spelled for that syntax. If the syntax allows a scope then 95 * ``handleDeclAttribute``, which is the function that applies the attribute to 96 a declaration. It is responsible for checking that the attribute's arguments 97 are valid, and typically applies the attribute by adding an ``Attr`` to the 99 attribute was successfully applied, or ``AttributeNotApplied`` if it wasn't. 102 attribute, are: [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Trace/intel-pt/ |
| H A D | TraceIntelPT.cpp | 379 json_str.attribute("traceTechnology", "intel-pt"); in DumpTraceInfoAsJson() 381 json_str.attribute("tid", tid); in DumpTraceInfoAsJson() 384 json_str.attribute("traceItemsCount", insn_len); in DumpTraceInfoAsJson() 389 json_str.attribute("totalInBytes", std::to_string(mem_used)); in DumpTraceInfoAsJson() 393 json_str.attribute("avgPerItemInBytes", avg); in DumpTraceInfoAsJson() 400 json_str.attribute(name, duration.count() / 1000.0); in DumpTraceInfoAsJson() 408 json_str.attribute("totalCount", events_stats.total_count); in DumpTraceInfoAsJson() 411 json_str.attribute( in DumpTraceInfoAsJson() 421 json_str.attribute("totalCount", error_stats.GetTotalCount()); in DumpTraceInfoAsJson() 424 json_str.attribute(kind, count); in DumpTraceInfoAsJson() [all …]
|
| /openbsd-src/gnu/usr.bin/perl/t/op/ |
| H A D | attrs.t | 53 like $@, qr/^Invalid SCALAR attribute: ["']?plugh["']? at/; 63 like $@, qr/^Invalid SCALAR attribute: ["']?_5x5["']? at/; 182 eval "use attributes __PACKAGE__, \$value, '$attribute'"; 296 like $@, qr/Use of := for an empty attribute list is not allowed/, 401 like $w, qr/^Useless use of attribute "const" at /, 483 qr/^Unterminated attribute parameter in attribute list at - line 1\.$/, 498 Invalid SCALAR attribute: Dummy at - line 1. 504 Invalid ARRAY attribute: Dummy at - line 1. 510 Invalid HASH attribute: Dummy at - line 1.
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | HowToUseAttributes.rst | 18 virtually no support for attribute-value pairs other than alignment. 20 In the new scheme, an ``Attribute`` object represents a single attribute that's 22 object. An attribute can be a single "enum" value (the enum being the 24 attribute, or an attribute-value pair. Some examples: 30 Note: for an attribute value pair, we expect a target-dependent attribute to 45 object that may have an attribute associated with it: the function as a whole,
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | ScopedPrinter.h | 558 JOS.attribute(Label, Value); in printNumber() 562 JOS.attribute(Label, Value); in printNumber() 566 JOS.attribute(Label, Value); in printNumber() 570 JOS.attribute(Label, Value); in printNumber() 574 JOS.attribute(Label, Value); in printNumber() 578 JOS.attribute(Label, Value); in printNumber() 582 JOS.attribute(Label, Value); in printNumber() 586 JOS.attribute(Label, Value); in printNumber() 596 JOS.attribute(Label, Value); in printBoolean() 650 JOS.attribute(Label, Value); in printString() [all …]
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/Util/ |
| H A D | ExternalMeta.t | 30 is($one->foo, 1, "did not change attribute"); 35 is($one->foo, 1, "did not change attribute"); 36 is($one->meta('foo', 678), 123, "did not alter already set meta-attribute"); 37 is($one->get_meta('foo'), 123, "still did not alter already set meta-attribute"); 40 is($one->bar, 2, "did not change attribute");
|
| /openbsd-src/sys/dev/pci/drm/i915/gt/ |
| H A D | intel_gt_sysfs_pm.c | 30 sysfs_gt_attribute_w_func(struct kobject *kobj, struct attribute *attr, in sysfs_gt_attribute_w_func() 55 sysfs_gt_attribute_r_func(struct kobject *kobj, struct attribute *attr, in sysfs_gt_attribute_r_func() 102 struct attribute *attr, char *buff) \ 122 struct attribute *attr, \ 244 static struct attribute *rc6_attrs[] = { 250 static struct attribute *rc6p_attrs[] = { 256 static struct attribute *media_rc6_attrs[] = { 261 static struct attribute *rc6_dev_attrs[] = { 267 static struct attribute *rc6p_dev_attrs[] = { 273 static struct attribute *media_rc6_dev_attrs[] = { [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | TraceDumper.cpp | 340 m_j.attribute("firstInstructionId", in DumpFunctionCallTree() 342 m_j.attribute("lastInstructionId", in DumpFunctionCallTree() 356 m_j.attribute("event", TraceCursor::EventKindToString(*item.event)); in DumpEvent() 359 m_j.attribute("cpuId", item.cpu_id); in DumpEvent() 362 m_j.attribute("hwClock", item.hw_clock); in DumpEvent() 368 m_j.attribute("syncPointMetadata", item.sync_point_metadata); in DumpEvent() 374 m_j.attribute("loadAddress", formatv("{0:x}", item.load_address)); in DumpInstruction() 376 m_j.attribute("module", ToOptionalString(GetModuleName(item))); in DumpInstruction() 377 m_j.attribute( in DumpInstruction() 383 m_j.attribute("mnemonic", in DumpInstruction() [all …]
|
| /openbsd-src/usr.sbin/ldapd/ |
| H A D | auth.c | 101 if (aci->attribute != NULL) { in aci_matches() 104 if (strcasecmp(aci->attribute, attr) != 0) in aci_matches() 151 aci->attribute ? " attribute " : "", in authorized() 152 aci->attribute ? aci->attribute : "", in authorized() 167 aci->attribute ? " attribute " : "", in authorized() 168 aci->attribute ? aci->attribute : "", in authorized()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Pod-Simple/lib/Pod/Simple/ |
| H A D | Subclassing.pod | 134 The value of the I<start_line> attribute will be the line number of the first 143 In that case, the value of the I<start_line> attribute will not be meaningful; 156 The value of the I<start_line> attribute will be the line number of the start 161 The value of the I<start_line> attribute will be the 171 attribute will be the line number of the first Pod directive 232 the attribute values, so for those of you writing a Pod formatter that 248 The C<type="url"> attribute is always specified for this type of 268 The C<type="man"> attribute is always specified for this type of 282 in a I<section> attribute. For example, this Pod source: 295 only as the value of the I<to> attribute, an [all...] |
| /openbsd-src/gnu/llvm/llvm/include/llvm/Target/ |
| H A D | TargetCallingConv.td | 39 /// CCIfByVal - If the current argument has ByVal parameter attribute, apply 44 /// CCIfPreallocated - If the current argument has Preallocated parameter attribute, 49 /// CCIfSwiftSelf - If the current argument has swiftself parameter attribute, 54 /// CCIfSwiftAsync - If the current argument has swiftasync parameter attribute, 59 /// CCIfSwiftError - If the current argument has swifterror parameter attribute, 65 /// attribute, apply Action A. 70 /// parameter attribute, apply Action A. 78 /// CCIfInReg - If this argument is marked with the 'inreg' attribute, apply 82 /// CCIfNest - If this argument is marked with the 'nest' attribute, apply 86 /// CCIfSplit - If this argument is marked with the 'split' attribute, apply [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | TrainingLogger.cpp | 54 JOS.object([&]() { JOS.attribute("context", Name); }); in switchContext() 63 JOS.attribute("observation", static_cast<int64_t>(NewObservationID)); in startObservation() 74 JOS.attribute("outcome", static_cast<int64_t>( in logRewardImpl()
|
| /openbsd-src/gnu/llvm/llvm/docs/CommandGuide/ |
| H A D | tblgen.rst | 112 Generate Clang attribute clases. 116 Generate all parser-related attribute string switches. 120 Generate all parser-related attribute subject match rule string switches. 124 Generate Clang attribute implementations. 128 Generate a Clang attribute list. 132 Generate a Clang attribute subject match rule list. 136 Generate Clang PCH attribute reader. 140 Generate Clang PCH attribute writer. 142 .. option:: -gen-clang-attr-has-attribute-impl 144 Generate a Clang attribute spelling list. [all …]
|
| /openbsd-src/gnu/llvm/libcxx/docs/DesignDocs/ |
| H A D | VisibilityMacros.rst | 24 Mark a symbol as being exported by the libc++ library. This attribute must 28 Mark a symbol as being exported by the libc++ library. This attribute may 70 This attribute cannot be used on class templates. 77 attribute. With GCC the `visibility(...)` attribute is used and member 85 Mark the typeinfo of an enum as having default visibility. This attribute 93 attribute to an enum class results in a warning. The macro has an empty 99 This attribute must be specified on all extern class template declarations. 101 This macro is used to override the `_LIBCPP_TEMPLATE_VIS` attribute 119 of a class template as being exported by the libc++ library. This attribute
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | builtin-attrs.def | 128 /* Nothrow functions with the sentinel(1) attribute. */ 159 /* Construct a tree for a format attribute. */ 183 /* Construct a tree for a format_arg attribute. */ 191 /* Construct a tree for a bounded attribute. */ 200 /* Create bounded attribute chained to nothrow, e.g. of the 208 /* Create bounded attribute chained to nothrow nonnull, e.g. of the 230 /* Chain a bounded attribute to a format printf attribute */
|