/external/flatbuffers/tests/MyGame/Example/ |
D | Any.py | 12 def AnyCreator(unionType, table): argument 16 if unionType == Any().Monster: 19 if unionType == Any().TestSimpleTableWithEnum: 22 if unionType == Any().MyGame_Example2_Monster:
|
D | AnyAmbiguousAliases.py | 12 def AnyAmbiguousAliasesCreator(unionType, table): argument 16 if unionType == AnyAmbiguousAliases().M1: 19 if unionType == AnyAmbiguousAliases().M2: 22 if unionType == AnyAmbiguousAliases().M3:
|
D | AnyUniqueAliases.py | 12 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/ |
D | Java7ValidatorTest.java | 83 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/ |
D | TypeVariables.java | 85 for (TypeMirror unionType : t.getAlternatives()) { in visitUnion() 86 typeVariables.addAll(unionType.accept(this, visited)); in visitUnion()
|
/external/dagger2/java/dagger/internal/codegen/langmodel/ |
D | DaggerElements.java | 357 public String visitUnion(UnionType unionType, Void v) { 358 return visitUnknown(unionType, null);
|
/external/fastrpc/src/ |
D | adspmsgd_apps_skel.c | 330 const UnionType *unionType;\
|
D | adspmsgd_adsp1_stub.c | 330 const UnionType *unionType;\
|
D | adsp_default_listener_stub.c | 178 const UnionType *unionType;\
|
D | apps_remotectl_skel.c | 179 const UnionType *unionType;\
|
D | adspmsgd_adsp_stub.c | 330 const UnionType *unionType;\
|
D | adsp_current_process1_stub.c | 330 const UnionType *unionType;\
|
D | adsp_perf_stub.c | 329 const UnionType *unionType;\
|
D | remotectl_stub.c | 330 const UnionType *unionType;\
|
D | adsp_current_process_stub.c | 330 const UnionType *unionType;\
|
D | apps_mem_skel.c | 329 const UnionType *unionType;\
|
D | adsp_listener_stub.c | 178 const UnionType *unionType;\
|
D | apps_std_skel.c | 330 const UnionType *unionType;\
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/ |
D | JavaParserFacade.java | 545 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/ |
D | Tutorial.md | 2958 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/ |
D | LexicalPreservingPrinterTest.java | 504 UnionType unionType = (UnionType) catchClause.getParameter().getType(); in printUnionType() local 506 assertEquals("Exception | AssertionError", LexicalPreservingPrinter.print(unionType)); in printUnionType()
|
/external/llvm-project/clang/lib/AST/ |
D | Expr.cpp | 1815 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/ |
D | Expr.h | 3507 static const FieldDecl *getTargetFieldForToUnionCast(QualType unionType,
|