Home
last modified time | relevance | path

Searched refs:enumerator (Results 1 – 19 of 19) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp4.cpp20 enum tagname { enumerator }; enumerator
27 using NonClass::enumerator; // expected-error {{not a class}}
39 enum tagname { enumerator }; enumerator
46 using A::enumerator;
67 enum tagname _ = enumerator; in test4()
82 enum tagname { enumerator }; enumerator
89 using A::enumerator;
110 enum tagname _ = enumerator; in test4()
127 enum tagname { enumerator }; // expected-note 2 {{target of using declaration}} enumerator
134 using A<T>::enumerator;
[all …]
/minix3/external/bsd/llvm/dist/clang/test/CXX/class.access/class.access.dcl/
H A Dp1.cpp23 enum tagname { enumerator }; enumerator
30 …NonClass::enumerator; // expected-error {{not a class}} expected-warning {{access declarations are…
42 enum tagname { enumerator }; enumerator
49 A::enumerator; // expected-warning {{access declarations are deprecated}}
70 enum tagname _ = enumerator; in test4()
85 enum tagname { enumerator }; enumerator
92 A::enumerator; // expected-warning {{access declarations are deprecated}}
113 enum tagname _ = enumerator; in test4()
130 enum tagname { enumerator }; // expected-note {{target of using declaration}} enumerator
137 A<T>::enumerator; // expected-warning {{access declarations are deprecated}}
[all …]
/minix3/external/bsd/llvm/dist/clang/test/SemaCXX/
H A Dmember-name-lookup.cpp7 enum E { enumerator }; enumerator
45 D::E e = D::enumerator; // okay in test_lookup()
61 E e = enumerator; // okay in test_lookup()
101 D2::E e = D2::enumerator; // okay in test_virtual_lookup()
120 E e = enumerator; // okay in test_virtual_lookup()
/minix3/minix/lib/liblwip/dist/src/apps/snmp/
H A Dsnmp_msg.c1859 snmp_vb_enumerator_init(struct snmp_varbind_enumerator* enumerator, struct pbuf* p, u16_t offset, u… in snmp_vb_enumerator_init() argument
1861 snmp_pbuf_stream_init(&(enumerator->pbuf_stream), p, offset, length); in snmp_vb_enumerator_init()
1862 enumerator->varbind_count = 0; in snmp_vb_enumerator_init()
1869 snmp_vb_enumerator_get_next(struct snmp_varbind_enumerator* enumerator, struct snmp_varbind* varbin… in snmp_vb_enumerator_get_next() argument
1875 if (enumerator->pbuf_stream.length == 0) in snmp_vb_enumerator_get_next()
1879 enumerator->varbind_count++; in snmp_vb_enumerator_get_next()
1882 VB_PARSE_EXEC(snmp_asn1_dec_tlv(&(enumerator->pbuf_stream), &tlv)); in snmp_vb_enumerator_get_next()
1883 …VB_PARSE_ASSERT((tlv.type == SNMP_ASN1_TYPE_SEQUENCE) && (tlv.value_len <= enumerator->pbuf_stream… in snmp_vb_enumerator_get_next()
1887 VB_PARSE_EXEC(snmp_asn1_dec_tlv(&(enumerator->pbuf_stream), &tlv)); in snmp_vb_enumerator_get_next()
1888 …T_ID) && (SNMP_ASN1_TLV_LENGTH(tlv) < varbind_len) && (tlv.value_len < enumerator->pbuf_stream.len… in snmp_vb_enumerator_get_next()
[all …]
H A Dsnmp_msg.h89 void snmp_vb_enumerator_init(struct snmp_varbind_enumerator* enumerator, struct pbuf* p, u16_t offs…
90 snmp_vb_enumerator_err_t snmp_vb_enumerator_get_next(struct snmp_varbind_enumerator* enumerator, st…
/minix3/external/bsd/tcpdump/dist/
H A Dappletalk.h117 uint8_t enumerator; member
H A Dprint-atalk.c426 if (tp->enumerator) in nbp_print()
427 ND_PRINT((ndo, " [enum=%d]", tp->enumerator)); in nbp_print()
491 if (tp->enumerator != 1) in nbp_tuple_print()
492 ND_PRINT((ndo, "(%d)", tp->enumerator)); in nbp_tuple_print()
/minix3/external/bsd/llvm/dist/clang/include/clang/Basic/
H A DOperatorKinds.def24 /// corresponding enumerator in OverloadedOperatorKind in
33 /// an enumerator into the TokenKind enumeration.
H A DDiagnosticASTKinds.td198 def note_odr_enumerator : Note<"enumerator %0 with value %1 here">;
199 def note_odr_missing_enumerator : Note<"no corresponding enumerator here">;
H A DDiagnosticParseKinds.td81 "commas at the end of enumerator lists are a C99-specific "
84 "commas at the end of enumerator lists are a C++11 extension">,
87 "commas at the end of enumerator lists are incompatible with C++98">,
382 "expected '= constant-expression' or end of enumerator definition">;
569 "attributes on %select{a namespace|an enumerator}0 declaration are "
H A DDiagnosticSemaKinds.td71 "%select{case value|enumerator value|non-type template argument|array size}0 "
74 "%select{case value|enumerator value|non-type template argument|array size}0 "
1727 "enumerator value is not representable in the underlying type %0">;
1729 "enumerator value is not representable in the underlying type %0">,
1732 "enumerator value %0 is not representable in the underlying type %1">;
3775 "size|static assertion|fixed underlying type|enumerator value|"
3782 "size|static assertion|fixed underlying type|enumerator value|"
3789 "size|static assertion|fixed underlying type|enumerator value|"
3796 "size|static assertion|fixed underlying type|enumerator value|"
4051 def err_redefinition_of_enumerator : Error<"redefinition of enumerator %0">;
[all …]
H A DAttr.td166 // This argument is more complex, it includes the enumerator type name,
/minix3/external/bsd/llvm/dist/clang/test/PCH/
H A Dcxx-templates.h254 enumerator
257 T t = enumerator;
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DBuiltinTypes.def12 // BuiltinType::Id is the enumerator defining the type.
/minix3/external/bsd/llvm/dist/llvm/cmake/modules/
H A DHandleLLVMOptions.cmake260 -w14062 # Promote 'enumerator in switch of enum is not handled' to level 1 warning.
/minix3/external/bsd/llvm/dist/llvm/docs/
H A DBitCodeFormat.rst586 values. The value enumerator resets after each function. When a value is
H A DSourceLevelDebugging.rst509 :ref:`enumerator descriptors <format_enumerator>`, each representing the
/minix3/external/bsd/llvm/dist/clang/docs/
H A DInternalsManual.rst1205 name the enumerator ``Red`` without qualifying the name, e.g.,
1234 lexical context of the declaration (e.g., an enumerator) will be the
H A DLanguageExtensions.rst468 after the enumerator name and before any initializer, like so: