Searched refs:enums (Results 1 - 18 of 18) sorted by relevance

/openbsd-current/gnu/usr.bin/perl/lib/overload/
H A Dnumbers.pm94 our @enums = qw#
174 { my $i = 0; our %enums = map { $_ => $i++ } @enums }
/openbsd-current/gnu/usr.bin/perl/regen/
H A Doverload.pl24 my (@enums, @names);
29 push @enums, $enum;
53 our \@enums = qw#
54 @enums
59 { my \$i = 0; our %enums = map { \$_ => \$i++ } \@enums }
65 for (0..$#enums) {
70 my $l = 3 - int((length($enums[$_]) + 9) / 8);
72 printf $h " %s_amg,%s/* 0x%02x %-8s */\n", $enums[$_],
113 printf $c " \"%s\",%s/* %-10s */\n", $n, ("\t" x $l), $enums[
[all...]
H A Dmk_invlists.pl97 # enums that should be made public
245 # re_comp.c, but general enums and defines (which take no space) are
411 my %enums;
441 # The internal enums come last, and in the order specified.
457 my @enums = @input_enums;
460 my $unused_enum_value = @enums;
467 next if grep { $_ eq $this_extra } @enums;
469 push @enums, $this_extra;
476 push @enums, $this_extra;
481 $unused_enum_value = @enums; # Al
[all...]
/openbsd-current/gnu/usr.bin/clang/include/llvm/IR/
H A DMakefile48 ${.OBJDIR}/../../../llvm-tblgen/llvm-tblgen -gen-intrinsic-enums \
54 ${.OBJDIR}/../../../llvm-tblgen/llvm-tblgen -gen-intrinsic-enums -intrinsic-prefix=aarch64 \
60 ${.OBJDIR}/../../../llvm-tblgen/llvm-tblgen -gen-intrinsic-enums -intrinsic-prefix=amdgcn \
66 ${.OBJDIR}/../../../llvm-tblgen/llvm-tblgen -gen-intrinsic-enums -intrinsic-prefix=arm \
72 ${.OBJDIR}/../../../llvm-tblgen/llvm-tblgen -gen-intrinsic-enums -intrinsic-prefix=bpf \
78 ${.OBJDIR}/../../../llvm-tblgen/llvm-tblgen -gen-intrinsic-enums -intrinsic-prefix=dx \
84 ${.OBJDIR}/../../../llvm-tblgen/llvm-tblgen -gen-intrinsic-enums -intrinsic-prefix=hexagon \
90 ${.OBJDIR}/../../../llvm-tblgen/llvm-tblgen -gen-intrinsic-enums -intrinsic-prefix=loongarch \
96 ${.OBJDIR}/../../../llvm-tblgen/llvm-tblgen -gen-intrinsic-enums -intrinsic-prefix=mips \
102 ${.OBJDIR}/../../../llvm-tblgen/llvm-tblgen -gen-intrinsic-enums
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/cli/
H A Dcli-setshow.c211 for (i = 0; c->enums[i]; i++)
215 strcat (msg, c->enums[i]);
229 for (i = 0; c->enums[i]; i++)
230 if (strncmp (arg, c->enums[i], len) == 0)
232 if (c->enums[i][len] == '\0')
234 match = c->enums[i];
240 match = c->enums[i];
H A Dcli-decode.h178 const char **enums; member in struct:cmd_list_element
H A Dcli-decode.c182 c->enums = NULL;
401 c->enums = enumlist;
431 c->enums = enumlist;
456 c->enums = auto_boolean_enums;
479 c->enums = boolean_enums;
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dcompleter.c493 else if (c->enums)
495 list = complete_on_enum (c->enums, p, word);
570 else if (c->enums)
572 list = complete_on_enum (c->enums, p, word);
/openbsd-current/gnu/llvm/clang/docs/tools/
H A Ddump_format_style.py232 enums = {}
295 if field_type in enums:
299 enums[field_type].values))
309 enums[enum.name] = enum
335 if option.type in enums:
336 option.enum = enums[option.type]
/openbsd-current/gnu/usr.bin/binutils/binutils/
H A Dsysinfo.y260 enums ')'
386 enums: label
H A Dieee.c3734 /* This is a list of enums. */
3850 struct ieee_defined_enum *enums;
5315 for (e = info->enums; e != NULL; e = e->next)
5418 e->next = info->enums;
5419 info->enums = e;
6518 for (e = info->enums; e != NULL; e = e->next)
6530 e->next = info->enums;
6531 info->enums = e;
3848 struct ieee_defined_enum *enums; member in struct:ieee_handle
/openbsd-current/gnu/usr.bin/binutils-2.17/binutils/
H A Dsysinfo.y256 enums ')'
382 enums: label
H A Dieee.c3735 /* This is a list of enums. */
3851 struct ieee_defined_enum *enums;
5318 for (e = info->enums; e != NULL; e = e->next)
5421 e->next = info->enums;
5422 info->enums = e;
6521 for (e = info->enums; e != NULL; e = e->next)
6533 e->next = info->enums;
6534 info->enums = e;
3849 struct ieee_defined_enum *enums; member in struct:ieee_handle
/openbsd-current/gnu/llvm/llvm/bindings/python/llvm/
H A Dcore.py597 enums = [
608 for enum_class, enum_spec in enums:
612 return enums
/openbsd-current/gnu/llvm/clang/utils/TableGen/
H A DClangAttrEmitter.cpp873 // Unique the enums, but maintain the original declaration ordering.
875 uniqueEnumsInOrder(const std::vector<StringRef> &enums) { argument
878 for (const auto &i : enums) {
887 std::vector<StringRef> values, enums, uniques; member in class:__anon1180::EnumArgument
893 enums(Arg.getValueAsListOfStrings("Enums")),
894 uniques(uniqueEnumsInOrder(enums)) {
984 for (size_t I = 0; I < enums.size(); ++I) {
986 OS << getAttrName() << "Attr::" << enums[I] << ")\n";
1002 for (size_t I = 0; I < enums.size(); ++I) {
1003 if (Uniques.insert(enums[
1015 std::vector<StringRef> values, enums, uniques; member in class:__anon1180::VariadicEnumArgument
[all...]
/openbsd-current/gnu/usr.bin/perl/utils/
H A Dh2xs.PL152 =item B<-e>, B<--omit-enums>=[I<regular expression>]
318 # Constants are created for all #defines and enums h2xs can find
323 # Constants are created for all #defines but only for enums
539 -e, --omit-enums Omit constants from enums in the constant() function.
540 If a pattern is given, only the matching enums are
625 'omit-enums|e:s' => \$opt_e,
914 # skip enums matching $opt_e
/openbsd-current/gnu/usr.bin/perl/cpan/Win32/
H A DWin32.pm1020 http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/reference/enums/csidl.asp
/openbsd-current/gnu/llvm/llvm/lib/AsmParser/
H A DLLParser.cpp5088 /// emissionKind: FullDebug, enums: !1, retainedTypes: !2,
5104 OPTIONAL(enums, MDField, ); \
5121 runtimeVersion.Val, splitDebugFilename.Val, emissionKind.Val, enums.Val,

Completed in 328 milliseconds