Home
last modified time | relevance | path

Searched refs:enum (Results 1 – 25 of 581) sorted by relevance

12345678910>>...24

/openbsd-src/gnu/llvm/lldb/utils/lui/
H A Dlldbutil.py153 def state_type_to_str(enum): argument
155 if enum == lldb.eStateInvalid:
157 elif enum == lldb.eStateUnloaded:
159 elif enum == lldb.eStateConnected:
161 elif enum == lldb.eStateAttaching:
163 elif enum == lldb.eStateLaunching:
165 elif enum == lldb.eStateStopped:
167 elif enum == lldb.eStateRunning:
169 elif enum == lldb.eStateStepping:
171 elif enum == lldb.eStateCrashed:
[all …]
/openbsd-src/gnu/usr.bin/perl/regen/
H A Dopcode.pl275 if (defined $arg_hash->{enum}) {
276 my $enum = $arg_hash->{enum};
278 unless defined $enum and ref($enum) =~ /ARRAY/;
280 unless @$enum % 3 == 0;
284 my @e = @$enum;
328 if (defined $arg_hash->{enum}) {
329 $copy->{enum} = [ @{$arg_hash->{enum}} ];
562 if (defined $bitfield->{enum}) {
564 my @enum = @{$bitfield->{enum}};
565 while (@enum) {
[all …]
H A Dmk_invlists.pl500 for my $enum (@enums) {
506 if ($enum eq 'Perl_Tailored_HSpace') {
512 ($short_enum) = prop_value_aliases($type, $enum);
534 if (grep { $_ eq $enum } @input_enums) {
535 $short_enum = $enum
538 $short_enum = lc $enum;
573 $short_enum_name{$enum} = $short_enum;
574 $need_explanation{$enum} = $short_enum unless $is_official_name;
588 for my $enum (sort { ($name =~ $property_needs_table_re)
594 $enums{$enum} = $enum_val++ unless exists $enums{$enum};
[all …]
H A Dop_private41 enum => [ qw(
102 enum labels).
111 enum => [ qw(
131 The optional enum list specifies a set of defines and labels for (possibly
133 are 0,1,2,3). If a particular value matches an enum, then it will be
147 value is zero, and if no label is present, and if no enum matches, then
419 enum => [ qw(
693 enum => [ qw(
810 enum => [ qw(
841 enum
[all...]
/openbsd-src/usr.sbin/amd/rpcx/
H A Dnfs_prot.ed5 /^enum nfsstat /i
11 +1s/^enum nfsstat /enum /
20 /^enum ftype /i
25 +1s/^enum ftype /enum /
/openbsd-src/gnu/gcc/gcc/
H A Dopth-gen.awk160 enum = "OPT_" opts[i]
162 enum = enum "eq"
163 gsub ("[^A-Za-z0-9]", "_", enum)
174 back_chain[j] = enum;
187 print " " enum "," s "/* -" opts[i] " */"
H A Doptc-gen.awk151 enum = "OPT_" opts[i]
153 enum = enum "eq"
154 gsub ("[^A-Za-z0-9]", "_", enum)
165 back_chain[j] = enum;
/openbsd-src/gnu/usr.bin/perl/ext/XS-APItest/t/
H A Doverload.t59 while (my ($type, $enum) = each %types) {
67 my $got = &$func($input, $enum);
73 is(eval {&$func($input, $enum)}, undef,
82 my $got = &$func($input, $enum);
85 $got = &$func($input, $enum);
/openbsd-src/gnu/usr.bin/clang/include/lldb/Plugins/
H A DMakefile38 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-enum-defs \
50 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-enum-defs \
62 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-enum-defs \
74 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-enum-defs \
86 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-enum-defs \
98 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-enum-defs \
110 ${.OBJDIR}/../../../lldb-tblgen/lldb-tblgen -gen-lldb-property-enum-defs \
/openbsd-src/gnu/usr.bin/binutils/bfd/doc/
H A Dproto.str42 - SENUM enum-type-name
43 - ENUM enum-name
44 - ENUMX addl-enum-name
46 - ENDSENUM max-enum-name
50 "enum " swap catstr
/openbsd-src/gnu/usr.bin/binutils-2.17/bfd/doc/
H A Dproto.str42 - SENUM enum-type-name
43 - ENUM enum-name
44 - ENUMX addl-enum-name
46 - ENDSENUM max-enum-name
50 "enum " swap catstr
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DPropertiesBase.td36 // Gives the property a default enum value.
48 // Gives the property enum values.
49 class EnumValues<string enum> {
50 string EnumValues = enum;
/openbsd-src/gnu/llvm/clang/bindings/python/tests/cindex/
H A Dtest_cursor.py396 enum = get_cursor(tu, 'TEST')
397 self.assertIsNotNone(enum)
399 self.assertEqual(enum.kind, CursorKind.ENUM_DECL)
400 enum_type = enum.enum_type
405 enum = get_cursor(tu, 'TEST')
406 self.assertIsNotNone(enum)
408 self.assertEqual(enum.kind, CursorKind.ENUM_DECL)
409 self.assertEqual(enum.enum_type.kind, TypeKind.LONGLONG)
420 enum = get_cursor(tu, 'TEST')
421 self.assertIsNotNone(enum)
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/TableGen/
H A DSearchableTable.td13 // 1. (Generic) Enums. By instantiating the GenericEnum class once, an enum with
30 // Define a record derived from this class to generate a generic enum.
32 // The name of the record is used as the type name of the C++ enum.
34 // Name of a TableGen class. The enum will have one entry for each record
39 // contains the name of enum entries.
45 // contains the numerical value of enum entries.
47 // If ValueField is not set, enum values will be assigned automatically,
77 // cannot be deduced automatically, such as enum fields. For example:
127 // of a larger enum-based space, e.g. extended data about a subset of
134 // Legacy table type with integrated enum.
/openbsd-src/gnu/llvm/llvm/docs/
H A Dyaml2obj.rst62 Machine: [ {type: str, enum:
92 enum: [ IMAGE_FILE_RELOCS_STRIPPED
119 enum: [ IMAGE_SCN_TYPE_NO_PAD
165 SimpleType: [ {type: str, enum: [ IMAGE_SYM_TYPE_NULL
184 ComplexType: [ {type: str, enum: [ IMAGE_SYM_DTYPE_NULL
191 StorageClass: [ {type: str, enum:
H A DHowToSetUpLLVMStyleRTTI.rst64 #. In the base class, introduce an enum which discriminates all of the
65 different concrete classes in the hierarchy, and stash the enum value
75 + enum ShapeKind {
89 private, but let the enum ``ShapeKind`` be public along with providing a
91 a ``switch`` over the enum.
98 You might wonder why the ``Kind`` enum doesn't have an entry for
119 enum ShapeKind {
161 enum ShapeKind {
234 and ``Shape`` itself is abstract (has no entry in the ``Kind`` enum),
251 enum because it is possible to have objects with this class as a dynamic
[all …]
/openbsd-src/regress/usr.bin/mandoc/mdoc/Bl/
H A Dbadargs.out_markdown32 * bullet enum
34 1. enum bullet
40 1. enum text
H A Dbadargs.out_ascii24 ++oo bullet enum
25 1. enum bullet
30 1. enum text
/openbsd-src/gnu/llvm/clang/docs/tools/
H A Ddump_format_style.py96 self.enum = None
105 if self.enum and self.enum.values:
106 s += indent('\n\nPossible values:\n\n%s\n' % self.enum, 2)
235 enum = None
262 enum = Enum(name, comment)
309 enums[enum.name] = enum
326 enum.values.append(EnumValue(val, comment, config))
336 option.enum = enums[option.type]
/openbsd-src/gnu/usr.bin/binutils/cpu/
H A Dsimplify.inc25 ; Define a normal enum without using name/value pairs.
26 ; This is currently the same as define-full-enum but it needn't remain
27 ; that way (it's define-full-enum that would change).
29 (define-pmacro (define-normal-enum name comment attrs prefix vals)
31 Define a normal enum, fixed number of arguments.
33 (define-full-enum name comment attrs prefix vals)
36 ; Define a normal insn enum.
38 (define-pmacro (define-normal-insn-enum name comment attrs prefix fld vals)
40 Define a normal instruction opcode enum.
42 (define-full-insn-enum name comment attrs prefix fld vals)
/openbsd-src/gnu/usr.bin/binutils-2.17/cpu/
H A Dsimplify.inc25 ; Define a normal enum without using name/value pairs.
26 ; This is currently the same as define-full-enum but it needn't remain
27 ; that way (it's define-full-enum that would change).
29 (define-pmacro (define-normal-enum name comment attrs prefix vals)
31 Define a normal enum, fixed number of arguments.
33 (define-full-enum name comment attrs prefix vals)
36 ; Define a normal insn enum.
38 (define-pmacro (define-normal-insn-enum name comment attrs prefix fld vals)
40 Define a normal instruction opcode enum.
42 (define-full-insn-enum name comment attrs prefix fld vals)
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A DREADME13 enum-clash - int vs enum
14 enum - enumerated types
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DOptionsBase.td43 // - `EnumArg`: Sets the argument type to an enum and marks it as required.
54 // Default value: {} (No enum associated with this option)
57 // - `EnumArg`: Sets the argument type and assigns it a enum holding the valid
58 // values. The enum needs to be a variable in the including code.
90 // - `EnumArg`: Sets the argument type and assigns it a enum holding the valid
91 // values. The enum needs to be a variable in the including code.
96 // Use `OptionalEnumArg` for having an option enum argument.
/openbsd-src/gnu/llvm/clang/tools/clang-fuzzer/
H A Dcxx_loop_proto.proto26 // Add an enum for each array in function signature
27 enum Arr {
36 enum Op {
/openbsd-src/gnu/usr.bin/binutils/include/gdb/
H A DChangeLog9 (enum sim_ppc_regnum): Add full list of SPRs.
85 * sim-sh.h: Add enum constants for sh[1-4], sh3e, sh3?-dsp,
90 * sim-arm.h (enum sim_arm_regs): Rename sim_arm_regnum.
117 (enum target_signal): Remove conditional compilation around

12345678910>>...24