OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:javaparser
(Results
301 - 325
of
1172
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/metamodel/
VariableDeclaratorMetaModel.java
1
package com.github.
javaparser
.metamodel;
8
super(superBaseNodeMetaModel, com.github.
javaparser
.ast.body.VariableDeclarator.class, "VariableDeclarator", "com.github.
javaparser
.ast.body", false, false);
WhileStmtMetaModel.java
1
package com.github.
javaparser
.metamodel;
8
super(superBaseNodeMetaModel, com.github.
javaparser
.ast.stmt.WhileStmt.class, "WhileStmt", "com.github.
javaparser
.ast.stmt", false, false);
WildcardTypeMetaModel.java
1
package com.github.
javaparser
.metamodel;
8
super(superBaseNodeMetaModel, com.github.
javaparser
.ast.type.WildcardType.class, "WildcardType", "com.github.
javaparser
.ast.type", false, false);
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
PrintingHelper.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
.printer.Printable;
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/core/resolution/
ContextHelper.java
17
package com.github.
javaparser
.symbolsolver.core.resolution;
19
import com.github.
javaparser
.resolution.MethodUsage;
20
import com.github.
javaparser
.resolution.declarations.ResolvedMethodDeclaration;
21
import com.github.
javaparser
.resolution.types.ResolvedType;
22
import com.github.
javaparser
.symbolsolver.javaparsermodel.declarations.JavaParserEnumDeclaration;
23
import com.github.
javaparser
.symbolsolver.javaparsermodel.declarations.JavaParserMethodDeclaration;
24
import com.github.
javaparser
.symbolsolver.javassistmodel.JavassistMethodDeclaration;
25
import com.github.
javaparser
.symbolsolver.reflectionmodel.ReflectionMethodDeclaration;
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/declarators/
VariableSymbolDeclarator.java
17
package com.github.
javaparser
.symbolsolver.javaparsermodel.declarators;
19
import com.github.
javaparser
.ast.body.FieldDeclaration;
20
import com.github.
javaparser
.ast.expr.VariableDeclarationExpr;
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;
29
import static com.github.
javaparser
.symbolsolver.
javaparser
.Navigator.getParentNode;
/external/javaparser/javaparser-symbol-solver-logic/src/main/java/com/github/javaparser/symbolsolver/logic/
ConfilictingGenericTypesException.java
1
package com.github.
javaparser
.symbolsolver.logic;
3
import com.github.
javaparser
.resolution.types.ResolvedType;
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/javaparsermodel/
ConvertToUsageTest.java
1
package com.github.
javaparser
.symbolsolver.javaparsermodel;
3
import com.github.
javaparser
.ParseException;
4
import com.github.
javaparser
.ast.CompilationUnit;
5
import com.github.
javaparser
.ast.expr.NameExpr;
6
import com.github.
javaparser
.resolution.types.ResolvedType;
7
import com.github.
javaparser
.symbolsolver.model.resolution.TypeSolver;
8
import com.github.
javaparser
.symbolsolver.resolution.AbstractResolutionTest;
9
import com.github.
javaparser
.symbolsolver.resolution.typesolvers.ReflectionTypeSolver;
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/typeinference/bounds/
SameAsBoundTest.java
1
package com.github.
javaparser
.symbolsolver.resolution.typeinference.bounds;
3
import com.github.
javaparser
.resolution.types.ResolvedType;
4
import com.github.
javaparser
.symbolsolver.model.resolution.TypeSolver;
5
import com.github.
javaparser
.symbolsolver.model.typesystem.ReferenceTypeImpl;
6
import com.github.
javaparser
.symbolsolver.resolution.typeinference.Bound;
7
import com.github.
javaparser
.symbolsolver.resolution.typeinference.InferenceVariable;
8
import com.github.
javaparser
.symbolsolver.resolution.typeinference.Instantiation;
9
import com.github.
javaparser
.symbolsolver.resolution.typesolvers.ReflectionTypeSolver;
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/
ParseStart.java
1
package com.github.
javaparser
;
3
import com.github.
javaparser
.ast.CompilationUnit;
4
import com.github.
javaparser
.ast.ImportDeclaration;
5
import com.github.
javaparser
.ast.body.BodyDeclaration;
6
import com.github.
javaparser
.ast.expr.AnnotationExpr;
7
import com.github.
javaparser
.ast.expr.Expression;
8
import com.github.
javaparser
.ast.stmt.BlockStmt;
9
import com.github.
javaparser
.ast.stmt.Statement;
12
* The start production for
JavaParser
.
13
* Tells
JavaParser
what piece of Java code it can expect
[
all
...]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/
ArrayBracketPair.java
1
package com.github.
javaparser
.ast;
3
import com.github.
javaparser
.Range;
4
import com.github.
javaparser
.ast.expr.AnnotationExpr;
5
import com.github.
javaparser
.ast.expr.Expression;
6
import com.github.
javaparser
.ast.nodeTypes.NodeWithAnnotations;
7
import com.github.
javaparser
.ast.visitor.GenericVisitor;
8
import com.github.
javaparser
.ast.visitor.VoidVisitor;
12
import static com.github.
javaparser
.utils.Utils.ensureNotNull;
ArrayCreationLevel.java
1
package com.github.
javaparser
.ast;
3
import com.github.
javaparser
.Range;
4
import com.github.
javaparser
.ast.expr.AnnotationExpr;
5
import com.github.
javaparser
.ast.expr.Expression;
6
import com.github.
javaparser
.ast.nodeTypes.NodeWithAnnotations;
7
import com.github.
javaparser
.ast.visitor.GenericVisitor;
8
import com.github.
javaparser
.ast.visitor.VoidVisitor;
12
import static com.github.
javaparser
.utils.Utils.ensureNotNull;
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/body/
VariableDeclaratorId.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.ArrayBracketPair;
26
import com.github.
javaparser
.ast.Node;
27
import com.github.
javaparser
.ast.nodeTypes.NodeWithName;
28
import com.github.
javaparser
.ast.visitor.GenericVisitor
[
all
...]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/
AnnotationExpr.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.expr;
24
import com.github.
javaparser
.Range;
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/
TreeVisitor.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.visitor;
24
import com.github.
javaparser
.ast.Node;
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/expr/
Expression.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.expr;
24
import com.github.
javaparser
.ast.Node;
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/stmt/
Statement.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.stmt;
24
import com.github.
javaparser
.ast.Node;
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/
TokenRangeTest.java
1
package com.github.
javaparser
;
3
import com.github.
javaparser
.ast.CompilationUnit;
11
CompilationUnit cu =
JavaParser
.parse("class X {\n\tX(){\n// hello\n}\n}");
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/expr/
InstanceOfExprTest.java
1
package com.github.
javaparser
.ast.expr;
3
import com.github.
javaparser
.
JavaParser
;
11
InstanceOfExpr expr =
JavaParser
.parseExpression("s instanceof @A @DA String");
StringLiteralExprTest.java
1
package com.github.
javaparser
.ast.expr;
5
import static com.github.
javaparser
.
JavaParser
.parseExpression;
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/
TestVisitor.java
1
package com.github.
javaparser
.printer;
3
import com.github.
javaparser
.ast.body.ClassOrInterfaceDeclaration;
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/wiki_samples/
MethodChanger_2.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;
24
import com.github.
javaparser
.
JavaParser
;
25
import com.github.
javaparser
.ast.CompilationUnit;
26
import com.github.
javaparser
.ast.NodeList;
27
import com.github.
javaparser
.ast.body.BodyDeclaration
[
all
...]
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/wiki_samples/removenode/
ModifierVisitorTest.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.removenode;
24
import com.github.
javaparser
.
JavaParser
;
25
import com.github.
javaparser
.ast.CompilationUnit;
26
import com.github.
javaparser
.ast.Node;
27
import com.github.
javaparser
.ast.body.VariableDeclarator
[
all
...]
RemoveDeleteNodeFromAst.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.removenode;
24
import com.github.
javaparser
.wiki_samples.TestFileToken;
/external/javaparser/
run_core_generators.sh
7
pushd
javaparser
-core-generators
Completed in 686 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>