/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/stmt/ |
D | TypeDeclarationStmt.java | 33 private TypeDeclaration typeDecl; field in TypeDeclarationStmt 38 public TypeDeclarationStmt(final TypeDeclaration typeDecl) { in TypeDeclarationStmt() argument 39 setTypeDeclaration(typeDecl); in TypeDeclarationStmt() 43 final TypeDeclaration typeDecl) { in TypeDeclarationStmt() argument 45 setTypeDeclaration(typeDecl); in TypeDeclarationStmt() 57 return typeDecl; in getTypeDeclaration() 60 public void setTypeDeclaration(final TypeDeclaration typeDecl) { in setTypeDeclaration() argument 61 this.typeDecl = typeDecl; in setTypeDeclaration() 62 setAsParentNodeOf(this.typeDecl); in setTypeDeclaration()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/stmt/ |
D | TypeDeclarationStmt.java | 34 private TypeDeclaration typeDecl; field in TypeDeclarationStmt 39 public TypeDeclarationStmt(final TypeDeclaration typeDecl) { in TypeDeclarationStmt() argument 40 setTypeDeclaration(typeDecl); in TypeDeclarationStmt() 43 public TypeDeclarationStmt(Range range, final TypeDeclaration typeDecl) { in TypeDeclarationStmt() argument 45 setTypeDeclaration(typeDecl); in TypeDeclarationStmt() 57 return typeDecl; in getTypeDeclaration() 60 public TypeDeclarationStmt setTypeDeclaration(final TypeDeclaration typeDecl) { in setTypeDeclaration() argument 61 this.typeDecl = typeDecl; in setTypeDeclaration() 62 setAsParentNodeOf(this.typeDecl); in setTypeDeclaration()
|
/external/llvm-project/mlir/unittests/Dialect/SPIRV/ |
D | DeserializationTest.cpp | 184 SmallVector<uint32_t, 5> typeDecl; in TEST_F() local 185 std::swap(typeDecl, binary); in TEST_F() 189 std::swap(typeDecl, binary); in TEST_F() 199 binary.append(typeDecl.begin(), typeDecl.end()); in TEST_F() 205 SmallVector<uint32_t, 5> typeDecl; in TEST_F() local 206 std::swap(typeDecl, binary); in TEST_F() 211 std::swap(typeDecl, binary); in TEST_F() 216 binary.append(typeDecl.begin(), typeDecl.end()); in TEST_F() 223 SmallVector<uint32_t, 5> typeDecl; in TEST_F() local 224 std::swap(typeDecl, binary); in TEST_F() [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/expected_output/ |
D | com_github_javaparser_ast_stmt_TypeDeclarationStmt.txt | 7 Line 39) setTypeDeclaration(typeDecl) ==> void 12 Line 45) setTypeDeclaration(typeDecl) ==> void 15 Line 57) typeDecl ==> com.github.javaparser.ast.body.TypeDeclaration 16 Line 61) this.typeDecl = typeDecl ==> com.github.javaparser.ast.body.TypeDeclaration 17 Line 62) setAsParentNodeOf(this.typeDecl) ==> void
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/expected_output/ |
D | com_github_javaparser_ast_stmt_TypeDeclarationStmt.txt | 1 …Line 40) setTypeDeclaration(typeDecl) ==> com.github.javaparser.ast.stmt.TypeDeclarationStmt.setTy… 2 …Line 45) setTypeDeclaration(typeDecl) ==> com.github.javaparser.ast.stmt.TypeDeclarationStmt.setTy… 5 …Line 62) setAsParentNodeOf(this.typeDecl) ==> com.github.javaparser.ast.Node.setAsParentNodeOf(com…
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/javaparsermodel/ |
D | JavaParserFacade.java | 164 TypeDeclaration typeDecl = null; in solve() local 168 typeDecl = classDecl.asReferenceType().getTypeDeclaration(); in solve() 173 typeDecl = sr.getCorrespondingDeclaration(); in solve() 176 if (typeDecl == null) { in solve() 179 …res = ConstructorResolutionLogic.findMostApplicable(((ClassDeclaration) typeDecl).getConstructors(… in solve()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/ |
D | JavaParserFacade.java | 147 ResolvedTypeDeclaration typeDecl = null; in solve() local 151 typeDecl = classDecl.asReferenceType().getTypeDeclaration(); in solve() 156 typeDecl = sr.getCorrespondingDeclaration(); in solve() 159 if (typeDecl == null) { in solve() 162 …nstructorResolutionLogic.findMostApplicable(((ResolvedClassDeclaration) typeDecl).getConstructors(… in solve()
|
/external/libxml2/include/libxml/ |
D | xmlschemastypes.h | 67 xmlSchemaTypePtr typeDecl,
|
D | schemasInternals.h | 932 xmlHashTablePtr typeDecl; member
|
/external/llvm-project/clang/include/clang/AST/ |
D | TypeProperties.td | 549 auto typeDecl = cast<CXXRecordDecl>(declaration); 550 for (auto *DI = typeDecl; DI; DI = DI->getPreviousDecl()) { 558 InjectedClassNameType(typeDecl, injectedSpecializationType); 559 for (auto *DI = typeDecl; DI; DI = DI->getPreviousDecl())
|
/external/clang/lib/Sema/ |
D | SemaDeclObjC.cpp | 1273 if (auto typeDecl = candidate.getCorrectionDeclAs<TypeDecl>()) { in ValidateCandidate() local 1277 if (isa<RecordDecl>(typeDecl) && !Context.getLangOpts().CPlusPlus) in ValidateCandidate() 1282 auto type = Context.getTypeDeclType(typeDecl); in ValidateCandidate() 1455 if (auto typeDecl = dyn_cast<TypeDecl>(decl)) { in actOnObjCTypeArgsOrProtocolQualifiers() local 1456 typeDecls.push_back(typeDecl); in actOnObjCTypeArgsOrProtocolQualifiers() 1474 auto resolveTypeReference = [&](TypeOrClassDecl typeDecl, SourceLocation loc) in actOnObjCTypeArgsOrProtocolQualifiers() 1481 if (auto *actualTypeDecl = typeDecl.dyn_cast<TypeDecl *>()) in actOnObjCTypeArgsOrProtocolQualifiers() 1484 type = Context.getObjCInterfaceType(typeDecl.get<ObjCInterfaceDecl *>()); in actOnObjCTypeArgsOrProtocolQualifiers() 1612 if (auto typeDecl = corrected.getCorrectionDeclAs<TypeDecl>()) { in actOnObjCTypeArgsOrProtocolQualifiers() local 1617 typeDecls[i] = typeDecl; in actOnObjCTypeArgsOrProtocolQualifiers()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaDeclObjC.cpp | 1364 if (auto typeDecl = candidate.getCorrectionDeclAs<TypeDecl>()) { in ValidateCandidate() local 1368 if (isa<RecordDecl>(typeDecl) && !Context.getLangOpts().CPlusPlus) in ValidateCandidate() 1373 auto type = Context.getTypeDeclType(typeDecl); in ValidateCandidate() 1550 if (auto typeDecl = dyn_cast<TypeDecl>(decl)) { in actOnObjCTypeArgsOrProtocolQualifiers() local 1551 typeDecls.push_back(typeDecl); in actOnObjCTypeArgsOrProtocolQualifiers() 1569 auto resolveTypeReference = [&](TypeOrClassDecl typeDecl, SourceLocation loc) in actOnObjCTypeArgsOrProtocolQualifiers() 1576 if (auto *actualTypeDecl = typeDecl.dyn_cast<TypeDecl *>()) in actOnObjCTypeArgsOrProtocolQualifiers() 1579 type = Context.getObjCInterfaceType(typeDecl.get<ObjCInterfaceDecl *>()); in actOnObjCTypeArgsOrProtocolQualifiers() 1703 if (auto typeDecl = corrected.getCorrectionDeclAs<TypeDecl>()) { in actOnObjCTypeArgsOrProtocolQualifiers() local 1708 typeDecls[i] = typeDecl; in actOnObjCTypeArgsOrProtocolQualifiers()
|
/external/libxml2/os400/libxmlrpg/ |
D | xmlschemastypes.rpgle | 93 d typeDecl value like(xmlSchemaTypePtr)
|
D | schemasInternals.rpgle | 1116 d typeDecl like(xmlHashTablePtr)
|
/external/guice/extensions/struts2/lib/ |
D | core-3.1.1.jar | META-INF/
org/
org/eclipse/
org/eclipse/jdt/
org/eclipse ... |
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/ |
D | javaparser-core-2.1.0.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/github/
com/ ... |
D | javaparser-core-3.0.0-alpha.2.jar | META-INF/MANIFEST.MF
META-INF/
com/
com/github/
com/ ... |
/external/icu/tools/srcgen/currysrc/libs/ |
D | org.eclipse.jdt.core_3.14.0.v20180528-0519.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSE_.SF
META-INF/ECLIPSE_ ... |
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/ |
D | com_github_javaparser_symbolsolver_javaparsermodel_JavaParserFacade.txt | 55 …Line 179) ConstructorResolutionLogic.findMostApplicable(((ClassDeclaration) typeDecl).getConstruct… 56 …Line 179) ((ClassDeclaration) typeDecl).getConstructors() ==> com.github.javaparser.symbolsolver.m…
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/visitor/ |
D | CloneVisitor.java | 884 TypeDeclaration typeDecl = cloneNodes(_n.getTypeDeclaration(), _arg); in visit() local 889 typeDecl in visit()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/ |
D | CloneVisitor.java | 971 TypeDeclaration<?> typeDecl = cloneNodes(_n.getTypeDeclaration(), _arg); in visit() local 976 typeDecl in visit()
|
/external/libxml2/ |
D | xmlschemas.c | 1092 xmlSchemaCheckFacetValues(xmlSchemaTypePtr typeDecl, 4199 if (schema->typeDecl != NULL) in xmlSchemaFree() 4200 xmlHashFree(schema->typeDecl, NULL); in xmlSchemaFree() 4599 xmlHashScan(schema->typeDecl, xmlSchemaTypeDumpEntry, output); in xmlSchemaDump() 4876 WXS_FIND_GLOBAL_ITEM(typeDecl) in xmlSchemaGetType() 18755 xmlSchemaTypePtr typeDecl, in xmlSchemaCheckFacet() argument 18761 if ((facet == NULL) || (typeDecl == NULL)) in xmlSchemaCheckFacet() 18802 if (typeDecl->type != XML_SCHEMA_TYPE_BASIC) { in xmlSchemaCheckFacet() 18803 base = typeDecl->baseType; in xmlSchemaCheckFacet() 18810 base = typeDecl; in xmlSchemaCheckFacet() [all …]
|
/external/javaparser/javaparser-core/src/main/javacc/ |
D | java.jj | 2129 ClassOrInterfaceDeclaration typeDecl; 2136 …typeDecl = ClassOrInterfaceDeclaration(modifier) { ret = new LocalClassDeclarationStmt(range(typeD…
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/ |
D | ASTParser.java | 3599 ClassOrInterfaceDeclaration typeDecl; in BlockStatement() local 3604 typeDecl = ClassOrInterfaceDeclaration(modifier); in BlockStatement() 3605 …ew TypeDeclarationStmt(range(typeDecl.getBegin().line, typeDecl.getBegin().column, token.endLine, … in BlockStatement()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/ |
D | ASTParser.java | 3699 ClassOrInterfaceDeclaration typeDecl; in BlockStatement() local 3704 typeDecl = ClassOrInterfaceDeclaration(modifier); in BlockStatement() 3705 …ret = new TypeDeclarationStmt(typeDecl.getBeginLine(), typeDecl.getBeginColumn(), token.endLine, t… in BlockStatement()
|