/aosp_15_r20/external/clang/utils/ABITest/ |
H A D | TypeGen.py | 61 def __init__(self, index, enumerators): argument 63 self.enumerators = enumerators 69 for i, init in enumerate(self.enumerators): 275 for enumerators in combinations(self.values, numEnumerators): 277 return EnumType(n, enumerators)
|
/aosp_15_r20/external/python/pycparser/tests/ |
D | test_c_parser.py | 625 for e2_eval in e2_elist.enumerators: 628 self.assertEqual(e2_elist.enumerators[0].name, 'large') 629 self.assertEqual(e2_elist.enumerators[0].value.value, '20') 630 self.assertEqual(e2_elist.enumerators[2].name, 'medium') 631 self.assertEqual(e2_elist.enumerators[2].value, None) 648 for e3_eval in e3_elist.enumerators: 651 self.assertEqual(e3_elist.enumerators[0].name, 'red') 652 self.assertEqual(e3_elist.enumerators[0].value, None) 653 self.assertEqual(e3_elist.enumerators[1].name, 'blue') 654 self.assertEqual(e3_elist.enumerators[2].name, 'green')
|
/aosp_15_r20/system/tools/aidl/ |
D | aidl_language_y.yy | 84 std::vector<std::unique_ptr<AidlEnumerator>>* enumerators; 163 %type<enumerators> enumerators enum_decl_body 596 enumerators 601 | enumerators ',' enumerator { 608 : '{' enumerators '}' { $$ = $2; } 609 | '{' enumerators ',' '}' { $$ = $2; }
|
D | parser.cpp | 35 std::vector<std::unique_ptr<AidlEnumerator>> enumerators; in Visit() local 37 enumerators.push_back(std::make_unique<AidlEnumerator>(AIDL_LOCATION_HERE, field->GetName(), in Visit() 40 auto tag_enum = std::make_unique<AidlEnumDeclaration>(AIDL_LOCATION_HERE, "Tag", &enumerators, in Visit()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/lldb/Interpreter/ |
D | OptionValueEnumeration.h | 33 OptionValueEnumeration(const OptionEnumValues &enumerators, enum_type value); 72 void SetEnumerations(const OptionEnumValues &enumerators);
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/lldb/Interpreter/ |
D | OptionValueEnumeration.h | 33 OptionValueEnumeration(const OptionEnumValues &enumerators, enum_type value); 72 void SetEnumerations(const OptionEnumValues &enumerators);
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/lldb/Interpreter/ |
D | OptionValueEnumeration.h | 33 OptionValueEnumeration(const OptionEnumValues &enumerators, enum_type value); 72 void SetEnumerations(const OptionEnumValues &enumerators);
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/lldb/Interpreter/ |
D | OptionValueEnumeration.h | 33 OptionValueEnumeration(const OptionEnumValues &enumerators, enum_type value); 72 void SetEnumerations(const OptionEnumValues &enumerators);
|
/aosp_15_r20/external/stg/ |
H A D | btf_reader.cc | 359 const auto enumerators = BuildEnums(is_signed, enums, vlen); in BuildOneType() local 366 Set<Enumeration>(btf_index, name, underlying, enumerators); in BuildOneType() 377 const auto enumerators = BuildEnums64(is_signed, enums, vlen); in BuildOneType() local 380 Set<Enumeration>(btf_index, name, underlying, enumerators); in BuildOneType()
|
H A D | proto_reader.cc | 441 stg::Enumeration::Enumerators enumerators; in Transform() local 442 enumerators.reserve(x.size()); in Transform() 444 enumerators.emplace_back(enumerator.name(), enumerator.value()); in Transform() 446 return enumerators; in Transform()
|
H A D | dwarf_processor.cc | 731 Enumeration::Enumerators enumerators; in ProcessEnum() local 732 enumerators.reserve(children.size()); in ProcessEnum() 745 enumerators.emplace_back(enumerator_name, in ProcessEnum() 766 entry, full_name, underlying_type_id, std::move(enumerators)); in ProcessEnum()
|
H A D | unification.cc | 218 && definition1->enumerators == definition2->enumerators; in operator ()()
|
H A D | equality.h | 201 && definition1->enumerators == definition2->enumerators; in operator()
|
H A D | graph.h | 235 Enumerators enumerators; 239 const Enumerators& enumerators) 240 : name(name), definition({underlying_type_id, enumerators}) {}
|
/aosp_15_r20/external/python/pycparser/pycparser/ |
D | c_ast.py | 533 def __init__(self, enumerators, coord=None): argument 534 self.enumerators = enumerators 539 for i, child in enumerate(self.enumerators or []): 544 for child in (self.enumerators or []):
|
D | _c_ast.cfg | 89 # A list of enumerators 91 EnumeratorList: [enumerators**]
|
/aosp_15_r20/system/tools/hidl/ |
D | EnumType.cpp | 364 auto enumerators = typeChain(); in emitIteratorDeclaration() local 365 std::reverse(enumerators.begin(), enumerators.end()); in emitIteratorDeclaration() 366 for (const auto* type : enumerators) { in emitIteratorDeclaration()
|
/aosp_15_r20/out/soong/.intermediates/system/tools/aidl/libaidl-common/linux_glibc_x86_64_static/gen/yacc/system/tools/aidl/ |
D | aidl_language_y.cpp | 2485 ((*yyvalp).enumerators) = new std::vector<std::unique_ptr<AidlEnumerator>>(); in yyuserAction() 2486 …((*yyvalp).enumerators)->push_back(std::unique_ptr<AidlEnumerator>((YY_CAST (yyGLRStackItem const … in yyuserAction() 2494 …(YY_CAST (yyGLRStackItem const *, yyvsp)[YYFILL (-2)].yystate.yysemantics.yyval.enumerators)->push… in yyuserAction() 2495 …((*yyvalp).enumerators) = (YY_CAST (yyGLRStackItem const *, yyvsp)[YYFILL (-2)].yystate.yysemantic… in yyuserAction() 2502 …{ ((*yyvalp).enumerators) = (YY_CAST (yyGLRStackItem const *, yyvsp)[YYFILL (-1)].yystate.yysemant… in yyuserAction() 2508 …{ ((*yyvalp).enumerators) = (YY_CAST (yyGLRStackItem const *, yyvsp)[YYFILL (-2)].yystate.yysemant… in yyuserAction() 2516 … (yyGLRStackItem const *, yyvsp)[YYFILL (0)].yystate.yysemantics.yyval.enumerators), ps->Package()… in yyuserAction() 2519 …delete (YY_CAST (yyGLRStackItem const *, yyvsp)[YYFILL (0)].yystate.yysemantics.yyval.enumerators); in yyuserAction() 3172 { delete (((*yyvaluep).enumerators)); } in yydestruct() 3178 { delete (((*yyvaluep).enumerators)); } in yydestruct()
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/BinaryFormat/ |
H A D | Swift.def | 9 // Macros for running through Swift enumerators.
|
H A D | MsgPack.def | 10 /// Macros for running through MessagePack enumerators.
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/BinaryFormat/ |
D | Swift.def | 9 // Macros for running through Swift enumerators.
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/BinaryFormat/ |
D | Swift.def | 9 // Macros for running through Swift enumerators.
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/BinaryFormat/ |
D | Swift.def | 9 // Macros for running through Swift enumerators.
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/BinaryFormat/ |
D | Swift.def | 9 // Macros for running through Swift enumerators.
|
/aosp_15_r20/external/cronet/third_party/libc++/src/utils/ |
H A D | generate_extended_grapheme_cluster_table.py | 271 PROP_VALUE_ENUM_TEMPLATE.format(enumerators=",\n".join(enumerator_values))
|