/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/nodeTypes/ |
NodeWithName.java | 3 * Copyright (C) 2011, 2013-2015 The JavaParser Team. 5 * This file is part of JavaParser. 7 * JavaParser can be used either under the terms of 16 * JavaParser is distributed in the hope that it will be useful, 22 package com.github.javaparser.ast.nodeTypes;
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/stmt/ |
EmptyStmt.java | 3 * Copyright (C) 2011, 2013-2016 The JavaParser Team. 5 * This file is part of JavaParser. 7 * JavaParser can be used either under the terms of 16 * JavaParser is distributed in the hope that it will be useful, 22 package com.github.javaparser.ast.stmt; 24 import com.github.javaparser.Range; 25 import com.github.javaparser.ast.visitor.GenericVisitor; 26 import com.github.javaparser.ast.visitor.VoidVisitor;
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/ |
Provider.java | 15 package com.github.javaparser;
|
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/stmt/ |
BlockStmtTest.java | 1 package com.github.javaparser.ast.stmt; 3 import com.github.javaparser.ast.expr.Expression; 4 import com.github.javaparser.ast.expr.MethodCallExpr; 5 import com.github.javaparser.ast.expr.NameExpr;
|
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/transformations/ast/body/ |
EnumConstantDeclarationTransformationsTest.java | 3 * Copyright (C) 2011, 2013-2016 The JavaParser Team. 5 * This file is part of JavaParser. 7 * JavaParser can be used either under the terms of 16 * JavaParser is distributed in the hope that it will be useful, 22 package com.github.javaparser.printer.lexicalpreservation.transformations.ast.body; 24 import com.github.javaparser.ast.body.EnumConstantDeclaration; 25 import com.github.javaparser.ast.body.EnumDeclaration; 26 import com.github.javaparser.printer.lexicalpreservation.AbstractLexicalPreservingTest;
|
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/wiki_samples/ |
CreatingACompilationUnitFromScratch.java | 3 * Copyright (C) 2011, 2013-2016 The JavaParser Team. 5 * This file is part of JavaParser. 7 * JavaParser can be used either under the terms of 16 * JavaParser is distributed in the hope that it will be useful, 22 package com.github.javaparser.wiki_samples;
|
/external/javaparser/javaparser-core-generators/src/main/java/com/github/javaparser/generator/core/visitor/ |
EqualsVisitorGenerator.java | 1 package com.github.javaparser.generator.core.visitor; 3 import com.github.javaparser.ast.CompilationUnit; 4 import com.github.javaparser.ast.body.MethodDeclaration; 5 import com.github.javaparser.ast.stmt.BlockStmt; 6 import com.github.javaparser.generator.VisitorGenerator; 7 import com.github.javaparser.utils.SourceRoot; 8 import com.github.javaparser.metamodel.BaseNodeMetaModel; 9 import com.github.javaparser.metamodel.PropertyMetaModel; 11 import static com.github.javaparser.utils.CodeGenerationUtils.f; 14 * Generates JavaParser's EqualsVisitor [all...] |
GenericVisitorAdapterGenerator.java | 1 package com.github.javaparser.generator.core.visitor; 3 import com.github.javaparser.ast.CompilationUnit; 4 import com.github.javaparser.ast.body.MethodDeclaration; 5 import com.github.javaparser.ast.stmt.BlockStmt; 6 import com.github.javaparser.generator.VisitorGenerator; 7 import com.github.javaparser.utils.SourceRoot; 8 import com.github.javaparser.metamodel.BaseNodeMetaModel; 9 import com.github.javaparser.metamodel.PropertyMetaModel; 11 import static com.github.javaparser.utils.CodeGenerationUtils.f; 14 * Generates JavaParser's VoidVisitorAdapter [all...] |
VoidVisitorAdapterGenerator.java | 1 package com.github.javaparser.generator.core.visitor; 3 import com.github.javaparser.ast.CompilationUnit; 4 import com.github.javaparser.ast.body.MethodDeclaration; 5 import com.github.javaparser.ast.stmt.BlockStmt; 6 import com.github.javaparser.generator.VisitorGenerator; 7 import com.github.javaparser.utils.SourceRoot; 8 import com.github.javaparser.metamodel.BaseNodeMetaModel; 9 import com.github.javaparser.metamodel.PropertyMetaModel; 11 import static com.github.javaparser.utils.CodeGenerationUtils.f; 14 * Generates JavaParser's VoidVisitorAdapter [all...] |
NoCommentHashCodeVisitorGenerator.java | 3 * Copyright (C) 2011, 2013-2016 The JavaParser Team.
5 * This file is part of JavaParser.
7 * JavaParser can be used either under the terms of
16 * JavaParser is distributed in the hope that it will be useful,
22 package com.github.javaparser.generator.core.visitor;
24 import static com.github.javaparser.JavaParser.parseStatement;
28 import com.github.javaparser.ast.CompilationUnit;
29 import com.github.javaparser.ast.body.MethodDeclaration;
30 import com.github.javaparser.ast.stmt.BlockStmt; [all...] |
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/ |
Issue228.java | 1 package com.github.javaparser.symbolsolver; 3 import com.github.javaparser.JavaParser; 4 import com.github.javaparser.ParseException; 5 import com.github.javaparser.ast.CompilationUnit; 6 import com.github.javaparser.ast.expr.MethodCallExpr; 7 import com.github.javaparser.resolution.MethodUsage; 8 import com.github.javaparser.symbolsolver.javaparsermodel.JavaParserFacade; 9 import com.github.javaparser.symbolsolver.resolution.AbstractResolutionTest; 10 import com.github.javaparser.symbolsolver.resolution.typesolvers.ReflectionTypeSolver [all...] |
Issue186.java | 1 package com.github.javaparser.symbolsolver; 3 import com.github.javaparser.ParseException; 4 import com.github.javaparser.ast.CompilationUnit; 5 import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration; 6 import com.github.javaparser.ast.body.MethodDeclaration; 7 import com.github.javaparser.ast.expr.Expression; 8 import com.github.javaparser.ast.expr.LambdaExpr; 9 import com.github.javaparser.ast.expr.MethodCallExpr; 10 import com.github.javaparser.ast.stmt.ExpressionStmt; 11 import com.github.javaparser.symbolsolver.javaparser.Navigator [all...] |
FindingAllFields.java | 17 package com.github.javaparser.symbolsolver; 19 import com.github.javaparser.ParseException; 20 import com.github.javaparser.ast.CompilationUnit; 21 import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration; 22 import com.github.javaparser.resolution.declarations.ResolvedDeclaration; 23 import com.github.javaparser.resolution.declarations.ResolvedReferenceTypeDeclaration; 24 import com.github.javaparser.symbolsolver.javaparser.Navigator; 25 import com.github.javaparser.symbolsolver.javaparsermodel.JavaParserFacade; 26 import com.github.javaparser.symbolsolver.resolution.AbstractResolutionTest [all...] |
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/nodeTypes/ |
NodeWithModifiersTest.java | 3 * Copyright (C) 2011, 2013-2017 The JavaParser Team. 5 * This file is part of JavaParser. 7 * JavaParser can be used either under the terms of 16 * JavaParser is distributed in the hope that it will be useful, 22 package com.github.javaparser.ast.nodeTypes; 24 import com.github.javaparser.ast.Modifier; 25 import com.github.javaparser.ast.Node; 26 import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration; 27 import com.github.javaparser.ast.body.MethodDeclaration; 28 import com.github.javaparser.ast.comments.JavadocComment [all...] |
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/version/ |
Java10PostProcessorTest.java | 1 package com.github.javaparser.version; 3 import com.github.javaparser.JavaParser; 4 import com.github.javaparser.ParseResult; 5 import com.github.javaparser.ParserConfiguration; 6 import com.github.javaparser.ast.stmt.Statement; 7 import com.github.javaparser.ast.type.VarType; 12 import static com.github.javaparser.ParseStart.STATEMENT; 13 import static com.github.javaparser.ParserConfiguration.LanguageLevel.JAVA_10; 14 import static com.github.javaparser.Providers.provider [all...] |
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/contexts/ |
AbstractMethodLikeDeclarationContext.java | 1 package com.github.javaparser.symbolsolver.javaparsermodel.contexts; 3 import com.github.javaparser.ast.Node; 4 import com.github.javaparser.ast.body.Parameter; 5 import com.github.javaparser.ast.nodeTypes.NodeWithParameters; 6 import com.github.javaparser.ast.nodeTypes.NodeWithTypeParameters; 7 import com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration; 8 import com.github.javaparser.resolution.declarations.ResolvedTypeDeclaration; 9 import com.github.javaparser.resolution.declarations.ResolvedValueDeclaration; 10 import com.github.javaparser.resolution.types.ResolvedType; 11 import com.github.javaparser.resolution.types.ResolvedTypeVariable [all...] |
SwitchEntryContext.java | 17 package com.github.javaparser.symbolsolver.javaparsermodel.contexts; 19 import com.github.javaparser.ast.stmt.Statement; 20 import com.github.javaparser.ast.stmt.SwitchEntryStmt; 21 import com.github.javaparser.ast.stmt.SwitchStmt; 22 import com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration; 23 import com.github.javaparser.resolution.declarations.ResolvedValueDeclaration; 24 import com.github.javaparser.resolution.types.ResolvedType; 25 import com.github.javaparser.symbolsolver.javaparsermodel.JavaParserFacade; 26 import com.github.javaparser.symbolsolver.javaparsermodel.JavaParserFactory; 27 import com.github.javaparser.symbolsolver.model.resolution.SymbolReference [all...] |
FieldAccessContext.java | 17 package com.github.javaparser.symbolsolver.javaparsermodel.contexts; 19 import com.github.javaparser.ast.expr.Expression; 20 import com.github.javaparser.ast.expr.FieldAccessExpr; 21 import com.github.javaparser.ast.expr.ThisExpr; 22 import com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration; 23 import com.github.javaparser.resolution.declarations.ResolvedReferenceTypeDeclaration; 24 import com.github.javaparser.resolution.declarations.ResolvedTypeDeclaration; 25 import com.github.javaparser.resolution.declarations.ResolvedValueDeclaration; 26 import com.github.javaparser.resolution.declarations.ResolvedFieldDeclaration; 27 import com.github.javaparser.resolution.types.ResolvedPrimitiveType [all...] |
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/declarations/ |
JavaParserTypeAdapter.java | 1 package com.github.javaparser.symbolsolver.javaparsermodel.declarations; 3 import com.github.javaparser.ast.Node; 4 import com.github.javaparser.ast.NodeList; 5 import com.github.javaparser.ast.body.BodyDeclaration; 6 import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration; 7 import com.github.javaparser.ast.body.EnumDeclaration; 8 import com.github.javaparser.ast.body.VariableDeclarator; 9 import com.github.javaparser.ast.nodeTypes.NodeWithMembers; 10 import com.github.javaparser.ast.nodeTypes.NodeWithSimpleName; 11 import com.github.javaparser.ast.nodeTypes.NodeWithTypeParameters [all...] |
JavaParserParameterDeclaration.java | 17 package com.github.javaparser.symbolsolver.javaparsermodel.declarations; 19 import com.github.javaparser.ast.body.Parameter; 20 import com.github.javaparser.ast.type.UnknownType; 21 import com.github.javaparser.resolution.declarations.ResolvedParameterDeclaration; 22 import com.github.javaparser.resolution.types.ResolvedArrayType; 23 import com.github.javaparser.resolution.types.ResolvedType; 24 import com.github.javaparser.symbolsolver.javaparsermodel.JavaParserFacade; 25 import com.github.javaparser.symbolsolver.javaparsermodel.JavaParserFactory; 26 import com.github.javaparser.symbolsolver.javaparsermodel.contexts.LambdaExprContext; 27 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver [all...] |
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/ |
VarType.java | 3 * Copyright (C) 2011, 2013-2016 The JavaParser Team. 5 * This file is part of JavaParser. 7 * JavaParser can be used either under the terms of 16 * JavaParser is distributed in the hope that it will be useful, 21 package com.github.javaparser.ast.type; 23 import com.github.javaparser.TokenRange; 24 import com.github.javaparser.ast.AllFieldsConstructor; 25 import com.github.javaparser.ast.Node; 26 import com.github.javaparser.ast.NodeList; 27 import com.github.javaparser.ast.expr.AnnotationExpr [all...] |
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/validator/ |
Java1_0ValidatorTest.java | 1 package com.github.javaparser.ast.validator; 3 import com.github.javaparser.JavaParser; 4 import com.github.javaparser.ParseResult; 5 import com.github.javaparser.ParserConfiguration; 6 import com.github.javaparser.Problem; 7 import com.github.javaparser.ast.CompilationUnit; 8 import com.github.javaparser.ast.expr.ArrayCreationExpr; 9 import com.github.javaparser.ast.expr.Expression; 10 import com.github.javaparser.ast.stmt.Statement [all...] |
Java5ValidatorTest.java | 1 package com.github.javaparser.ast.validator; 3 import com.github.javaparser.JavaParser; 4 import com.github.javaparser.ParseResult; 5 import com.github.javaparser.ParseStart; 6 import com.github.javaparser.ParserConfiguration; 7 import com.github.javaparser.ast.CompilationUnit; 8 import com.github.javaparser.ast.body.Parameter; 9 import com.github.javaparser.ast.stmt.Statement; 12 import static com.github.javaparser.ParseStart.* [all...] |
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/validator/chunks/ |
CommonValidators.java | 1 package com.github.javaparser.ast.validator.chunks; 3 import com.github.javaparser.ast.NodeList; 4 import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration; 5 import com.github.javaparser.ast.body.InitializerDeclaration; 6 import com.github.javaparser.ast.expr.*; 7 import com.github.javaparser.ast.validator.SimpleValidator; 8 import com.github.javaparser.ast.validator.SingleNodeTypeValidator; 9 import com.github.javaparser.ast.validator.TreeVisitorValidator; 10 import com.github.javaparser.ast.validator.Validators; 11 import com.github.javaparser.metamodel.NodeMetaModel [all...] |
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/typeinference/constraintformulas/ |
ConstraintFormulaTest.java | 1 package com.github.javaparser.symbolsolver.resolution.typeinference.constraintformulas; 3 import com.github.javaparser.ast.expr.Expression; 4 import com.github.javaparser.ast.expr.StringLiteralExpr; 5 import com.github.javaparser.resolution.declarations.ResolvedTypeParameterDeclaration; 6 import com.github.javaparser.resolution.types.ResolvedType; 7 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver; 8 import com.github.javaparser.symbolsolver.model.typesystem.ReferenceTypeImpl; 9 import com.github.javaparser.symbolsolver.resolution.typeinference.BoundSet; 10 import com.github.javaparser.symbolsolver.resolution.typeinference.ConstraintFormula; 11 import com.github.javaparser.symbolsolver.resolution.typeinference.InferenceVariable [all...] |