HomeSort by: relevance | last modified time | path
    Searched defs:enum (Results 1 - 5 of 5) sorted by relevancy

  /src/external/gpl3/gdb.old/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/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/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/usr.bin/xlint/lint1/
cgram.y 413 /* No type for enum. */
516 identifier_sym: /* helper for struct/union/enum */
1380 enum gcc_attribute_specifier_list_opt identifier_sym {
1381 $$ = make_tag_type($3, ENUM, false, false);
1383 | enum gcc_attribute_specifier_list_opt identifier_sym {
1384 dcs->d_tag_type = make_tag_type($3, ENUM, true, false);
1388 | enum gcc_attribute_specifier_list_opt {
1389 dcs->d_tag_type = make_tag_type(NULL, ENUM, true, false);
1393 | enum error {
1399 enum: /* helper for C99 6.7.2.2 * label
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/isctest/
asyncserver.py 22 import enum namespace
229 class DnsProtocol(enum.Enum):
230 UDP = enum.auto()
231 TCP = enum.auto()

Completed in 16 milliseconds