/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/contexts/ |
TryWithResourceContext.java | 17 package com.github.javaparser.symbolsolver.javaparsermodel.contexts; 19 import com.github.javaparser.ast.body.VariableDeclarator; 20 import com.github.javaparser.ast.expr.Expression; 21 import com.github.javaparser.ast.expr.VariableDeclarationExpr; 22 import com.github.javaparser.ast.stmt.BlockStmt; 23 import com.github.javaparser.ast.stmt.TryStmt; 24 import com.github.javaparser.resolution.declarations.ResolvedMethodDeclaration; 25 import com.github.javaparser.resolution.declarations.ResolvedValueDeclaration; 26 import com.github.javaparser.resolution.types.ResolvedType; 27 import com.github.javaparser.symbolsolver.javaparsermodel.declarations.JavaParserSymbolDeclaration [all...] |
ForechStatementContext.java | 17 package com.github.javaparser.symbolsolver.javaparsermodel.contexts; 19 import com.github.javaparser.ast.body.VariableDeclarator; 20 import com.github.javaparser.ast.stmt.BlockStmt; 21 import com.github.javaparser.ast.stmt.ForeachStmt; 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.declarations.JavaParserSymbolDeclaration; 26 import com.github.javaparser.symbolsolver.model.resolution.SymbolReference; 27 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver [all...] |
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/ |
NodeWithType.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.nodeTypes;
24 import com.github.javaparser.ast.CompilationUnit;
25 import com.github.javaparser.ast.Node;
26 import com.github.javaparser.ast.type.Type;
28 import static com.github.javaparser.JavaParser.parseType; [all...] |
NodeWithTypeArguments.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.nodeTypes; 24 import com.github.javaparser.ast.Node; 25 import com.github.javaparser.ast.NodeList; 26 import com.github.javaparser.ast.type.Type; 27 import com.github.javaparser.metamodel.DerivedProperty; 31 import static com.github.javaparser.ast.NodeList.nodeList [all...] |
NodeWithBlockStmt.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.nodeTypes;
24 import com.github.javaparser.ast.Node;
25 import com.github.javaparser.ast.stmt.BlockStmt;
|
NodeWithIdentifier.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.nodeTypes; 24 import com.github.javaparser.ast.Node; 26 import static com.github.javaparser.utils.Utils.assertNonEmpty;
|
NodeWithOptionalBlockStmt.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.nodeTypes;
24 import com.github.javaparser.ast.Node;
25 import com.github.javaparser.ast.stmt.BlockStmt;
|
NodeWithOptionalScope.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.Node; 25 import com.github.javaparser.ast.expr.Expression;
|
NodeWithScope.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.Node; 25 import com.github.javaparser.ast.expr.Expression;
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/validator/ |
Java9Validator.java | 1 package com.github.javaparser.ast.validator; 3 import com.github.javaparser.ast.expr.Expression; 4 import com.github.javaparser.ast.expr.VariableDeclarationExpr; 5 import com.github.javaparser.ast.stmt.TryStmt; 6 import com.github.javaparser.ast.validator.chunks.ModifierValidator; 7 import com.github.javaparser.ast.validator.chunks.UnderscoreKeywordValidator;
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/validator/chunks/ |
NoBinaryIntegerLiteralsValidator.java | 1 package com.github.javaparser.ast.validator.chunks; 3 import com.github.javaparser.ast.expr.IntegerLiteralExpr; 4 import com.github.javaparser.ast.expr.LiteralStringValueExpr; 5 import com.github.javaparser.ast.expr.LongLiteralExpr; 6 import com.github.javaparser.ast.validator.ProblemReporter; 7 import com.github.javaparser.ast.validator.VisitorValidator;
|
NoUnderscoresInIntegerLiteralsValidator.java | 1 package com.github.javaparser.ast.validator.chunks; 3 import com.github.javaparser.ast.expr.IntegerLiteralExpr; 4 import com.github.javaparser.ast.expr.LiteralStringValueExpr; 5 import com.github.javaparser.ast.expr.LongLiteralExpr; 6 import com.github.javaparser.ast.validator.ProblemReporter; 7 import com.github.javaparser.ast.validator.VisitorValidator;
|
UnderscoreKeywordValidator.java | 1 package com.github.javaparser.ast.validator.chunks; 3 import com.github.javaparser.ast.Node; 4 import com.github.javaparser.ast.expr.Name; 5 import com.github.javaparser.ast.expr.SimpleName; 6 import com.github.javaparser.ast.validator.ProblemReporter; 7 import com.github.javaparser.ast.validator.VisitorValidator;
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/declarators/ |
FieldSymbolDeclarator.java | 17 package com.github.javaparser.symbolsolver.javaparsermodel.declarators; 19 import com.github.javaparser.ast.body.FieldDeclaration; 20 import com.github.javaparser.ast.body.VariableDeclarator; 21 import com.github.javaparser.resolution.declarations.ResolvedValueDeclaration; 22 import com.github.javaparser.symbolsolver.javaparsermodel.declarations.JavaParserSymbolDeclaration; 23 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/model/typesystem/ |
TypeVariableUsageTest.java | 17 package com.github.javaparser.symbolsolver.model.typesystem; 19 import com.github.javaparser.resolution.declarations.ResolvedTypeParameterDeclaration; 20 import com.github.javaparser.resolution.types.ResolvedTypeVariable; 21 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver; 22 import com.github.javaparser.symbolsolver.reflectionmodel.ReflectionClassDeclaration; 23 import com.github.javaparser.symbolsolver.resolution.typesolvers.ReflectionTypeSolver;
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/ |
ArrayExprTest.java | 1 package com.github.javaparser.symbolsolver.resolution; 3 import com.github.javaparser.JavaParser; 4 import com.github.javaparser.ast.body.FieldDeclaration; 5 import com.github.javaparser.resolution.types.ResolvedType; 6 import com.github.javaparser.symbolsolver.javaparsermodel.JavaParserFacade; 7 import com.github.javaparser.symbolsolver.resolution.typesolvers.ReflectionTypeSolver; 20 FieldDeclaration field = JavaParser.parse(code).getClassByName("A").get().getFieldByName("toExamine").get();
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/body/ |
BodyDeclaration.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.body; 26 import com.github.javaparser.Range; 27 import com.github.javaparser.ast.Node; 28 import com.github.javaparser.ast.expr.AnnotationExpr; 29 import com.github.javaparser.utils.Utils; 30 import com.github.javaparser.ast.nodeTypes.NodeWithAnnotations [all...] |
EmptyMemberDeclaration.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.body; 24 import com.github.javaparser.Range; 25 import com.github.javaparser.ast.comments.JavadocComment; 26 import com.github.javaparser.ast.nodeTypes.NodeWithJavaDoc; 27 import com.github.javaparser.ast.visitor.GenericVisitor; 28 import com.github.javaparser.ast.visitor.VoidVisitor [all...] |
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/type/ |
Type.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.type; 24 import com.github.javaparser.Range; 25 import com.github.javaparser.ast.Node; 26 import com.github.javaparser.ast.expr.AnnotationExpr; 27 import com.github.javaparser.ast.nodeTypes.NodeWithAnnotations; 31 import static com.github.javaparser.utils.Utils.* [all...] |
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/builders/ |
NodeWithThrownExceptionsBuildersTest.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.builders; 24 import com.github.javaparser.ast.CompilationUnit; 25 import com.github.javaparser.ast.Modifier; 26 import com.github.javaparser.ast.body.MethodDeclaration; 27 import com.github.javaparser.ast.type.ClassOrInterfaceType; 32 import static com.github.javaparser.JavaParser.parseClassOrInterfaceType [all...] |
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ |
ParseStart.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; 24 import com.github.javaparser.ast.CompilationUnit; 25 import com.github.javaparser.ast.ImportDeclaration; 26 import com.github.javaparser.ast.PackageDeclaration; 27 import com.github.javaparser.ast.body.BodyDeclaration; 28 import com.github.javaparser.ast.body.Parameter [all...] |
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/ |
CsmIndent.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.concretesyntaxmodel; 24 import com.github.javaparser.ast.Node; 25 import com.github.javaparser.printer.SourcePrinter;
|
CsmUnindent.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.concretesyntaxmodel; 24 import com.github.javaparser.ast.Node; 25 import com.github.javaparser.printer.SourcePrinter;
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/javassistmodel/ |
Issue257.java | 1 package com.github.javaparser.symbolsolver.javassistmodel; 3 import com.github.javaparser.JavaParser; 4 import com.github.javaparser.ast.CompilationUnit; 5 import com.github.javaparser.ast.expr.Expression; 6 import com.github.javaparser.ast.stmt.ExpressionStmt; 7 import com.github.javaparser.ast.stmt.Statement; 8 import com.github.javaparser.symbolsolver.AbstractTest; 9 import com.github.javaparser.symbolsolver.javaparsermodel.JavaParserFacade; 10 import com.github.javaparser.symbolsolver.model.resolution.TypeSolver [all...] |
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/nodeTypes/ |
NodeWithBlockStmt.java | 1 package com.github.javaparser.ast.nodeTypes; 3 import com.github.javaparser.ast.Node; 4 import com.github.javaparser.ast.stmt.BlockStmt;
|