/minix3/external/bsd/llvm/dist/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
H A D | p4.cpp | 20 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 D | p1.cpp | 23 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 D | member-name-lookup.cpp | 7 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 D | snmp_msg.c | 1859 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 D | snmp_msg.h | 89 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 D | appletalk.h | 117 uint8_t enumerator; member
|
H A D | print-atalk.c | 426 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 D | OperatorKinds.def | 24 /// corresponding enumerator in OverloadedOperatorKind in 33 /// an enumerator into the TokenKind enumeration.
|
H A D | DiagnosticASTKinds.td | 198 def note_odr_enumerator : Note<"enumerator %0 with value %1 here">; 199 def note_odr_missing_enumerator : Note<"no corresponding enumerator here">;
|
H A D | DiagnosticParseKinds.td | 81 "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 D | DiagnosticSemaKinds.td | 71 "%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 D | Attr.td | 166 // This argument is more complex, it includes the enumerator type name,
|
/minix3/external/bsd/llvm/dist/clang/test/PCH/ |
H A D | cxx-templates.h | 254 enumerator 257 T t = enumerator;
|
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/ |
H A D | BuiltinTypes.def | 12 // BuiltinType::Id is the enumerator defining the type.
|
/minix3/external/bsd/llvm/dist/llvm/cmake/modules/ |
H A D | HandleLLVMOptions.cmake | 260 -w14062 # Promote 'enumerator in switch of enum is not handled' to level 1 warning.
|
/minix3/external/bsd/llvm/dist/llvm/docs/ |
H A D | BitCodeFormat.rst | 586 values. The value enumerator resets after each function. When a value is
|
H A D | SourceLevelDebugging.rst | 509 :ref:`enumerator descriptors <format_enumerator>`, each representing the
|
/minix3/external/bsd/llvm/dist/clang/docs/ |
H A D | InternalsManual.rst | 1205 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 D | LanguageExtensions.rst | 468 after the enumerator name and before any initializer, like so:
|