Home
last modified time | relevance | path

Searched refs:unionType (Results 1 – 23 of 23) sorted by relevance

/external/flatbuffers/tests/MyGame/Example/
DAny.py12 def AnyCreator(unionType, table): argument
16 if unionType == Any().Monster:
19 if unionType == Any().TestSimpleTableWithEnum:
22 if unionType == Any().MyGame_Example2_Monster:
DAnyAmbiguousAliases.py12 def AnyAmbiguousAliasesCreator(unionType, table): argument
16 if unionType == AnyAmbiguousAliases().M1:
19 if unionType == AnyAmbiguousAliases().M2:
22 if unionType == AnyAmbiguousAliases().M3:
DAnyUniqueAliases.py12 def AnyUniqueAliasesCreator(unionType, table): argument
16 if unionType == AnyUniqueAliases().M:
19 if unionType == AnyUniqueAliases().TS:
22 if unionType == AnyUniqueAliases().M2:
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/ast/validator/
DJava7ValidatorTest.java83 UnionType unionType = new UnionType(); in multiCatchWithoutElements() local
86 new Java7Validator().accept(unionType, new ProblemReporter(problems::add)); in multiCatchWithoutElements()
93 UnionType unionType = new UnionType(); in multiCatchWithOneElement() local
94 unionType.getElements().add(new ClassOrInterfaceType()); in multiCatchWithOneElement()
97 new Java7Validator().accept(unionType, new ProblemReporter(problems::add)); in multiCatchWithOneElement()
/external/auto/factory/src/main/java/com/google/auto/factory/processor/
DTypeVariables.java85 for (TypeMirror unionType : t.getAlternatives()) { in visitUnion()
86 typeVariables.addAll(unionType.accept(this, visited)); in visitUnion()
/external/dagger2/java/dagger/internal/codegen/langmodel/
DDaggerElements.java357 public String visitUnion(UnionType unionType, Void v) {
358 return visitUnknown(unionType, null);
/external/fastrpc/src/
Dadspmsgd_apps_skel.c330 const UnionType *unionType;\
Dadspmsgd_adsp1_stub.c330 const UnionType *unionType;\
Dadsp_default_listener_stub.c178 const UnionType *unionType;\
Dapps_remotectl_skel.c179 const UnionType *unionType;\
Dadspmsgd_adsp_stub.c330 const UnionType *unionType;\
Dadsp_current_process1_stub.c330 const UnionType *unionType;\
Dadsp_perf_stub.c329 const UnionType *unionType;\
Dremotectl_stub.c330 const UnionType *unionType;\
Dadsp_current_process_stub.c330 const UnionType *unionType;\
Dapps_mem_skel.c329 const UnionType *unionType;\
Dadsp_listener_stub.c178 const UnionType *unionType;\
Dapps_std_skel.c330 const UnionType *unionType;\
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/
DJavaParserFacade.java545 UnionType unionType = (UnionType) type; in convertToUsage() local
546 …return new ResolvedUnionType(unionType.getElements().stream().map(el -> convertToUsage(el, context… in convertToUsage()
/external/flatbuffers/docs/source/
DTutorial.md2958 int unionType = monster.EquippedType();
2960 if (unionType == Equipment.Weapon) {
2971 val unionType = monster.EquippedType
2973 if (unionType == Equipment.Weapon) {
2984 var unionType = monster.EquippedType;
2986 if (unionType == Equipment.Weapon) {
3001 unionType := monster.EquippedType()
3003 if unionType == sample.EquipmentWeapon {
3032 var unionType = monster.equippedType();
3034 if (unionType == MyGame.Sample.Equipment.Weapon) {
[all …]
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/
DLexicalPreservingPrinterTest.java504 UnionType unionType = (UnionType) catchClause.getParameter().getType(); in printUnionType() local
506 assertEquals("Exception | AssertionError", LexicalPreservingPrinter.print(unionType)); in printUnionType()
/external/llvm-project/clang/lib/AST/
DExpr.cpp1815 const FieldDecl *CastExpr::getTargetFieldForToUnionCast(QualType unionType, in getTargetFieldForToUnionCast() argument
1817 auto RD = unionType->castAs<RecordType>()->getDecl(); in getTargetFieldForToUnionCast()
/external/llvm-project/clang/include/clang/AST/
DExpr.h3507 static const FieldDecl *getTargetFieldForToUnionCast(QualType unionType,