HomeSort by: relevance | last modified time | path
    Searched refs:attribute (Results 1 - 25 of 341) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl2/gettext/dist/gettext-tools/man/
msgattrib.x 2 msgattrib \- attribute matching and manipulation on message catalog
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/gcc/
attribute.d 1 // GNU D Compiler attribute support declarations.
24 module gcc.attribute;
attributes.d 1 // GNU D Compiler attribute support declarations.
26 private struct Attribute(A...)
53 , of the other UDAs available unless it is a target-specific attribute.
55 * Function attributes introduced by the @attribute UDA are used in the
56 * declaration of a function, followed by an attribute name string and
63 * @attribute("regparm", 1) int func(int size);
67 auto attribute(A...)(A arguments)
70 return Attribute!A(arguments);
81 * The `@alloc_size` attribute may be applied to a function that returns a
106 return attribute("alloc_size", sizeArgIdx)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
JSONNodeDumper.cpp 32 JOS.attribute("id", createPointerRepresentation(A));
33 JOS.attribute("kind", AttrName);
40 // various attribute syntaxes, but we don't currently track that information
42 //JOS.attribute("spelling", A->getSpelling());
51 JOS.attribute("id", createPointerRepresentation(S));
52 JOS.attribute("kind", S->getStmtClassName());
57 JOS.attribute("type", createQualType(E->getType()));
64 JOS.attribute("valueCategory", Category);
70 JOS.attribute("id", createPointerRepresentation(T));
75 JOS.attribute("kind", (llvm::Twine(T->getTypeClassName()) + "Type").str())
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
attribute.c 27 #include "dwarf2/attribute.h"
31 /* See attribute.h. */
34 attribute::as_address () const
63 /* See attribute.h. */
66 attribute::form_is_string () const
79 /* See attribute.h. */
82 attribute::as_string () const
90 /* See attribute.h. */
93 attribute::form_is_block () const
103 /* See attribute.h. *
    [all...]
die.h 24 #include "dwarf2/attribute.h"
41 /* Return the named attribute or NULL if not there, but do not
43 struct attribute *attr (dwarf_attribute name)
52 stored either at the attribute DW_AT_GNU_addr_base, or
65 complaint (_("address base attribute (offset %s) as wrong form"),
72 which, if exists, is stored in the DW_AT_GNU_ranges_base attribute. This
82 complaint (_("ranges base attribute (offset %s) has wrong form"),
90 in the DW_AT_rnglists_base attribute. */
99 complaint (_("rnglists base attribute (offset %s) has wrong form"),
139 struct attribute attrs[1]
    [all...]
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
attribute.c 27 #include "dwarf2/attribute.h"
31 /* See attribute.h. */
34 attribute::as_address () const
63 /* See attribute.h. */
66 attribute::form_is_string () const
80 /* See attribute.h. */
83 attribute::as_string () const
91 /* See attribute.h. */
94 attribute::form_is_block () const
104 /* See attribute.h. *
    [all...]
die.h 24 #include "dwarf2/attribute.h"
42 /* Return the named attribute or NULL if not there, but do not
44 struct attribute *attr (dwarf_attribute name)
53 stored either at the attribute DW_AT_GNU_addr_base, or
66 complaint (_("address base attribute (offset %s) as wrong form"),
73 which, if exists, is stored in the DW_AT_GNU_ranges_base attribute. This
83 complaint (_("ranges base attribute (offset %s) has wrong form"),
91 in the DW_AT_rnglists_base attribute. */
100 complaint (_("rnglists base attribute (offset %s) has wrong form"),
147 struct attribute attrs[1]
    [all...]
  /src/games/monop/
execute.c 69 static int restore_toplevel_attr(const char *attribute, char *txt);
70 static int restore_player_attr(const char *attribute, char *txt);
71 static int restore_deck_attr(const char *attribute, char *txt);
72 static int restore_square_attr(const char *attribute, char *txt);
461 char *attribute; local
487 /* Any other line must begin with a word, which is the attribute. */
491 attribute = s;
492 s = strchr(attribute, ' ');
494 printf("file is corrupt: attribute %s lacks value.\n",
495 attribute);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
TimeProfiler.cpp 146 J.attribute("pid", Pid);
147 J.attribute("tid", int64_t(Tid));
148 J.attribute("ph", "X");
149 J.attribute("ts", StartUs);
150 J.attribute("dur", DurUs);
151 J.attribute("name", E.Name);
153 J.attributeObject("args", [&] { J.attribute("detail", E.Detail); });
202 J.attribute("pid", Pid);
203 J.attribute("tid", int64_t(TotalTid));
204 J.attribute("ph", "X")
    [all...]
  /src/external/gpl2/lvm2/dist/lib/device/
dev-md.c 133 const char *attribute)
152 (int)MAJOR(dev), (int)MINOR(dev), attribute);
154 log_error("dm_snprintf md %s failed", attribute);
165 sysfs_dir, (int)MINOR(dev), attribute);
167 log_error("dm_snprintf old md %s failed", attribute);
218 const char *attribute = "chunk_size"; local
221 if (_md_sysfs_attribute_scanf(sysfs_dir, dev, attribute,
226 dev_name(dev), attribute, chunk_size_bytes);
236 const char *attribute = "level"; local
239 if (_md_sysfs_attribute_scanf(sysfs_dir, dev, attribute,
254 const char *attribute = "raid_disks"; local
    [all...]
device.c 320 * Parent's 'dev' sysfs attribute = /sys/block/md0/dev
333 /* finally, parse 'dev' attribute and create corresponding dev_t */
368 static unsigned long _dev_topology_attribute(const char *attribute,
379 if (!attribute || !*attribute)
387 attribute) < 0) {
388 log_error("dm_snprintf %s failed", attribute);
393 * check if the desired sysfs attribute exists
405 /* get attribute from partition's primary device */
408 attribute) < 0)
    [all...]
  /src/external/mpl/bind/dist/lib/dns/include/dns/
rdataslab.h 160 #define DNS_SLABHEADER_GETATTR(header, attribute) \
161 (atomic_load_acquire(&(header)->attributes) & (attribute))
163 #define DNS_SLABHEADER_SETATTR(header, attribute) \
164 atomic_fetch_or_release(&(header)->attributes, attribute)
165 #define DNS_SLABHEADER_CLRATTR(header, attribute) \
166 atomic_fetch_and_release(&(header)->attributes, ~(attribute))
  /src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/
kfd_topology.h 111 struct attribute attr;
133 struct attribute attr;
152 struct attribute attr;
179 struct attribute attr_gpuid;
180 struct attribute attr_name;
181 struct attribute attr_props;
195 struct attribute attr_genid;
196 struct attribute attr_props;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.compile/
compile-ifunc.exp 26 set flags additional_flags=-Wno-attribute-alias
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.compile/
compile-ifunc.exp 28 set flags additional_flags=-Wno-attribute-alias
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
RISCVAttributeParser.h 1 //===-- RISCVAttributeParser.h - RISCV Attribute Parser ---------*- C++ -*-===//
18 RISCVAttrs::AttrType attribute; member in struct:llvm::RISCVAttributeParser::DisplayHandler
  /src/sys/ufs/ufs/
ufs_extattr.c 43 * binary blob of zero or more bytes. The UFS1 extended attribute service
115 * Per-FS attribute lock protecting attribute operations.
151 * attribute.
155 * zero-length attrname (used to retrieve application attribute list)
169 * Autocreate an attribute storage
208 * Release extended attribute mount lock, otherwise
276 * Now enable attribute.
291 printf("%s: attribute `%s' created but not found!\n",
306 * Locate an attribute given a name and mountpoint
756 struct ufs_extattr_list_entry *attribute; local
1069 struct ufs_extattr_list_entry *attribute; local
1352 struct ufs_extattr_list_entry *attribute; local
1471 struct ufs_extattr_list_entry *attribute; local
    [all...]
  /src/sys/ufs/lfs/
ulfs_extattr.c 44 * binary blob of zero or more bytes. The ULFS1 extended attribute service
111 * Per-FS attribute lock protecting attribute operations.
147 * attribute.
151 * zero-length attrname (used to retrieve application attribute list)
165 * Autocreate an attribute storage
208 * Release extended attribute mount lock, otherwise
276 * Now enable attribute.
291 printf("%s: attribute %s created but not found!\n",
306 * Locate an attribute given a name and mountpoint
751 struct ulfs_extattr_list_entry *attribute; local
1077 struct ulfs_extattr_list_entry *attribute; local
1360 struct ulfs_extattr_list_entry *attribute; local
1479 struct ulfs_extattr_list_entry *attribute; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
xml-support.c 225 /* Find the attribute named NAME in the set of parsed attributes
250 const struct gdb_xml_attribute *attribute; local
302 for (attribute = element->attributes;
303 attribute != NULL && attribute->name != NULL;
304 attribute++)
311 if (!strcmp (attribute->name, p[0]))
319 gdb_xml_debug (this, _("Attribute \"%s\" missing a value"),
320 attribute->name);
324 if (*p == NULL && !(attribute->flags & GDB_XML_AF_OPTIONAL)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
xml-support.c 225 /* Find the attribute named NAME in the set of parsed attributes
250 const struct gdb_xml_attribute *attribute; local
302 for (attribute = element->attributes;
303 attribute != NULL && attribute->name != NULL;
304 attribute++)
311 if (!strcmp (attribute->name, p[0]))
319 gdb_xml_debug (this, _("Attribute \"%s\" missing a value"),
320 attribute->name);
324 if (*p == NULL && !(attribute->flags & GDB_XML_AF_OPTIONAL)
    [all...]
  /src/share/man/man3/
Makefile 9 assert.3 attribute.3 bitmap.3 bitops.3 bits.3 bitstring.3 \
24 MLINKS+=attribute.3 __dead.3 \
25 attribute.3 __pure.3 \
26 attribute.3 __constfunc.3 \
27 attribute.3 __noinline.3 \
28 attribute.3 __unused.3 \
29 attribute.3 __used.3 \
30 attribute.3 __diagused.3 \
31 attribute.3 __debugused.3 \
32 attribute.3 __packed.3
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/
attribute.d 16 module core.attribute;
41 * Use this attribute to specify that a global symbol should be emitted with
56 * This attribute is only meaningful to the GNU and LLVM D compilers. The
65 // GDC and LDC declare this attribute in their own modules.
69 * Use this attribute to attach an Objective-C selector to a method.
71 * This is a special compiler recognized attribute, it has several
76 * The attribute can only be attached to methods or constructors which
110 * Use this attribute to make an Objective-C interface method optional.
117 * This is a special compiler recognized attribute, it has several
120 * * The attribute can only be attached to methods which have Objective-
    [all...]
  /src/external/bsd/nvi/dist/gtk/
gtkviscreen.h 70 void gtk_vi_screen_attribute(GtkViScreen *vi, gint attribute, gint on);
  /src/external/bsd/openldap/dist/libraries/libldap/
sortctrl.c 86 attribute name, reverse flag, and matching rule OID.
89 [whitespace][-]attribute[:[OID]]
119 /* We're now positioned at the start of the attribute. */
122 /* Get the length of the attribute until the next whitespace or ":". */
126 if (attrLen == 0) /* If no attribute name was present, quit. */
142 /* Allocate memory for the attribute and copy to it. */
275 consists of an attribute name, ascending/descending flag,
390 consists of an attribute name, ascending/descending flag,
456 attribute (OUT) If an error occurred the server may return a string
457 indicating the first attribute in the sortkey lis
    [all...]

Completed in 35 milliseconds

1 2 3 4 5 6 7 8 91011>>