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

1 2 3 4 5 6

  /src/external/gpl3/gdb/dist/gdb/doc/
filter-params.pl 9 s/ENUM_BITFIELD[ \t]*\((.*?)\)/__extension__ enum $1/sg;
  /src/external/gpl3/gdb.old/dist/gdb/doc/
filter-params.pl 9 s/ENUM_BITFIELD[ \t]*\((.*?)\)/__extension__ enum $1/sg;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
namespace-enum.exp 16 standard_testfile .cc namespace-enum-main.cc
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
namespace-enum.exp 16 standard_testfile .cc namespace-enum-main.cc
  /src/external/gpl3/gdb/
Makefile.inc 14 -Wno-switch-enum -Wno-parentheses -Wno-comment \
  /src/external/gpl3/gdb.old/
Makefile.inc 14 -Wno-switch-enum -Wno-parentheses -Wno-comment \
  /src/external/bsd/unbound/dist/contrib/
libunbound.so.conf 2 typedef ub_type = enum(TYPE_A=1,TYPE_NS=2,TYPE_SOA=6,TYPE_MX=15,TYPE_TXT=16,TYPE_AAAA=28,TYPE_DS=43,TYPE_DNSKEY=48,TYPE_TLSA=52,TYPE_ANY=255);
3 typedef ub_class = enum(CLASS_IN=1,CLASS_CH=3,CLASS_NONE=254,CLASS_ANY=255);
4 typedef ub_rcode = enum(RCODE_NOERROR,RCODE_FORMERR,RCODE_SERVFAIL,RCODE_NXDOMAIN,RCODE_NOTIMPL,RCODE_REFUSED,RCODE_YXDOMAIN,RCODE_YXRRSET,RCODE_NXRRSET,RCODE_NOTAUTH,RCODE_NOTZONE);
5 typedef ub_havedata = enum(no_data, have_data);
6 typedef ub_nxdomain = enum(name_exists, nxdomain);
7 typedef ub_secure = enum(not_secure, secure);
8 typedef ub_bogus = enum(not_bogus, bogus);
  /src/external/mpl/bind/dist/bin/tests/system/isctest/
compat.py 63 import enum
65 class DSDigest(enum.IntEnum): # type: ignore
  /src/external/gpl3/gdb/dist/gdb/guile/lib/gdb/
types.scm 77 (define-public (make-enum-hashtable enum-type)
78 "Return a hash table from a program's enum type.
83 enum-type: The enum to compute the hash table for.
86 The hash table of the enum.
89 wrong-type-arg: The type is not an enum."
91 (assert-type (= (type-code enum-type) TYPE_CODE_ENUM)
92 enum-type SCM_ARG1 'make-enum-hashtable "enum"
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/guile/lib/gdb/
types.scm 58 (define-public (make-enum-hashtable enum-type)
59 "Return a hash table from a program's enum type.
64 enum-type: The enum to compute the hash table for.
67 The hash table of the enum.
70 wrong-type-arg: The type is not an enum."
72 (assert-type (= (type-code enum-type) TYPE_CODE_ENUM)
73 enum-type SCM_ARG1 'make-enum-hashtable "enum"
    [all...]
  /src/external/apache2/mDNSResponder/dist/Clients/dnssdutil/
dns-rcode-func-autogen 81 printf "typedef enum\n"
87 local enum=$( RCodeMnemonicToEnum "${name}" )
88 printf "\t%-20s= %d" "${enum}" "${value}"
142 local enum=$( RCodeMnemonicToEnum "${name}" )
143 printf "\t\t%-28s%s\n" "case ${enum}:" "return( \"${name}\" );"
179 local enum=$( RCodeMnemonicToEnum "${name}" )
180 printf "\t\t%-16s%-20s}" "{ \"${name}\"," "${enum}"
dns-rr-func-autogen 77 printf "typedef enum\n"
81 local enum=$( RecordTypeMnemonicToEnum "${name}" )
82 printf "\t%-28s= %d," "${enum}" "${value}"
138 local enum=$( RecordTypeMnemonicToEnum "${name}" )
140 printf "\t\t%-32s%s" "case ${enum}:" "return( \"${name}\" );"
142 printf "\t\t%-32s%-24s // OVERRIDE" "case ${enum}:" "return( \"${name}\" );"
178 local enum=$( RecordTypeMnemonicToEnum "${name}" )
179 printf "\t\t%-16s%-28s }," "{ \"${name}\"," "${enum}"
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/
mega-enum.exp 16 # Test a huge enum. A colossal enum. If you will, a mega enum.
21 standard_testfile main.c mega-enum.S
67 gdb_test "print (enum mega_enum) 65537" " = DEI_65537"
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/
mega-enum.exp 16 # Test a huge enum. A colossal enum. If you will, a mega enum.
21 standard_testfile main.c mega-enum.S
67 gdb_test "print (enum mega_enum) 65537" " = DEI_65537"
  /src/external/apache2/llvm/dist/clang/docs/tools/
dump_format_style.py 39 self.enum = None
45 if self.enum and self.enum.values:
46 s += indent('\n\nPossible values:\n\n%s\n' % self.enum, 2)
71 class Enum(object):
132 enum = None
150 elif line.startswith('enum'):
152 name = re.sub(r'enum\s+(\w+)\s*(:((\s*\w+)+)\s*)?\{', '\\1', line)
153 enum = Enum(name, comment variable in class:read_options.State
    [all...]
  /src/external/bsd/zstd/dist/contrib/recovery/
Makefile 19 -Wstrict-aliasing=1 -Wswitch-enum \
  /src/external/gpl3/gcc/dist/gcc/
options-urls-cc-gen.awk 65 enum = opt_enum(opts[i])
  /src/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/
test_cursor.py 296 source = 'class X {}; enum RegularEnum {}; enum class ScopedEnum {};'
337 tu = get_tu('enum TEST { FOO=1, BAR=2 };')
338 enum = get_cursor(tu, 'TEST')
339 self.assertIsNotNone(enum)
341 self.assertEqual(enum.kind, CursorKind.ENUM_DECL)
342 enum_type = enum.enum_type
346 tu = get_tu('enum TEST : long long { FOO=1, BAR=2 };', lang="cpp")
347 enum = get_cursor(tu, 'TEST')
348 self.assertIsNotNone(enum)
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/lit/lit/
cl_arguments.py 2 import enum
11 class TestOrder(enum.Enum):
12 DEFAULT = enum.auto()
13 RANDOM = enum.auto()
  /src/external/bsd/zstd/dist/contrib/diagnose_corruption/
Makefile 19 -Wstrict-aliasing=1 -Wswitch-enum -Wdeclaration-after-statement \
  /src/external/bsd/zstd/dist/contrib/externalSequenceProducer/
Makefile 20 -Wstrict-aliasing=1 -Wswitch-enum \
  /src/external/bsd/zstd/dist/contrib/gen_html/
Makefile 11 CXXFLAGS += -Wall -Wextra -Wcast-qual -Wcast-align -Wshadow -Wstrict-aliasing=1 -Wswitch-enum -Wno-comment
  /src/external/bsd/zstd/dist/lib/dll/example/
Makefile 17 CFLAGS += -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow -Wswitch-enum \
  /src/external/gpl3/binutils/dist/cpu/
simplify.inc 27 ; Define a normal enum without using name/value pairs.
28 ; This is currently the same as define-full-enum but it needn't remain
29 ; that way (it's define-full-enum that would change).
31 (define-pmacro (define-normal-enum name comment attrs prefix vals)
32 "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)
39 "Define a normal instruction opcode enum."
40 (define-full-insn-enum name comment attrs prefix fld vals
    [all...]
  /src/external/gpl3/binutils.old/dist/cpu/
simplify.inc 27 ; Define a normal enum without using name/value pairs.
28 ; This is currently the same as define-full-enum but it needn't remain
29 ; that way (it's define-full-enum that would change).
31 (define-pmacro (define-normal-enum name comment attrs prefix vals)
32 "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)
39 "Define a normal instruction opcode enum."
40 (define-full-insn-enum name comment attrs prefix fld vals
    [all...]

Completed in 112 milliseconds

1 2 3 4 5 6