/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
D | JavaSourceWriter.java | 60 endLine(); in writePackage() 69 endLine(); in writeImports() 80 endLine(); in writeComment() 151 endLine(); in startMethod() 185 endLine(); in startMethod() 214 endLine(); in endIfBlock() 224 endLine(); in endScopedBlock() 253 endLine(); in endLoop() 260 endLine(); in writeStatement() 269 endLine(); in endMethod() [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/ |
D | Node.java | 46 private int endLine; field in Node 65 … public Node(final int beginLine, final int beginColumn, final int endLine, final int endColumn) { in Node() argument 68 this.endLine = endLine; in Node() 150 return endLine; in getEndLine() 217 public final void setEndLine(final int endLine) { in setEndLine() argument 218 this.endLine = endLine; in setEndLine()
|
D | TypeParameter.java | 59 …public TypeParameter(final int beginLine, final int beginColumn, final int endLine, final int endC… in TypeParameter() argument 61 super(beginLine, beginColumn, endLine, endColumn); in TypeParameter() 66 public TypeParameter(int beginLine, int beginColumn, int endLine, in TypeParameter() argument 68 this(beginLine, beginColumn, endLine, endColumn, name, typeBound); in TypeParameter()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/type/ |
D | Type.java | 43 public Type(int beginLine, int beginColumn, int endLine, int endColumn) { in Type() argument 44 super(beginLine, beginColumn, endLine, endColumn); in Type() 47 …public Type(int beginLine, int beginColumn, int endLine, int endColumn, List<AnnotationExpr> annot… in Type() argument 48 super(beginLine, beginColumn, endLine, endColumn); in Type()
|
D | ReferenceType.java | 53 …public ReferenceType(final int beginLine, final int beginColumn, final int endLine, final int endC… in ReferenceType() argument 55 super(beginLine, beginColumn, endLine, endColumn); in ReferenceType() 60 public ReferenceType(int beginLine, int beginColumn, int endLine, in ReferenceType() argument 64 super(beginLine, beginColumn, endLine, endColumn, annotations); in ReferenceType()
|
D | VoidType.java | 35 …public VoidType(final int beginLine, final int beginColumn, final int endLine, final int endColumn… in VoidType() argument 36 super(beginLine, beginColumn, endLine, endColumn); in VoidType()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/ |
D | ASTParser.java | 200 …{if (true) return new CompilationUnit(line == -1 ? 0 : line, column, token.endLine, token.endColum… in CompilationUnit() 227 …{if (true) return new PackageDeclaration(line, column, token.endLine, token.endColumn,annotations,… in PackageDeclaration() 260 …{if (true) return new ImportDeclaration(line, column, token.endLine, token.endColumn,name, isStati… in ImportDeclaration() 351 …ret = new EmptyTypeDeclaration(token.beginLine, token.beginColumn, token.endLine, token.endColumn); in TypeDeclaration() 445 …ClassOrInterfaceDeclaration tmp = new ClassOrInterfaceDeclaration(line, column, token.endLine, tok… in ClassOrInterfaceDeclaration() 635 …EnumDeclaration tmp = new EnumDeclaration(line, column, token.endLine, token.endColumn, modifier.m… in EnumDeclaration() 681 …EnumConstantDeclaration tmp = new EnumConstantDeclaration(line, column, token.endLine, token.endCo… in EnumConstantDeclaration() 756 …{if (true) return new TypeParameter(line, column, token.endLine, token.endColumn,name, typeBound);} in TypeParameter() 974 …ret = new EmptyMemberDeclaration(token.beginLine, token.beginColumn, token.endLine, token.endColum… in ClassOrInterfaceBodyDeclaration() 1012 …{if (true) return new FieldDeclaration(line, column, token.endLine, token.endColumn, modifier.modi… in FieldDeclaration() [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/expr/ |
D | ArrayCreationExpr.java | 55 …public ArrayCreationExpr(int beginLine, int beginColumn, int endLine, int endColumn, Type type, in… in ArrayCreationExpr() argument 56 super(beginLine, beginColumn, endLine, endColumn); in ArrayCreationExpr() 70 …public ArrayCreationExpr(int beginLine, int beginColumn, int endLine, int endColumn, Type type, Li… in ArrayCreationExpr() argument 71 super(beginLine, beginColumn, endLine, endColumn); in ArrayCreationExpr()
|
D | LiteralExpr.java | 32 …public LiteralExpr(final int beginLine, final int beginColumn, final int endLine, final int endCol… in LiteralExpr() argument 33 super(beginLine, beginColumn, endLine, endColumn); in LiteralExpr()
|
D | Expression.java | 34 …public Expression(final int beginLine, final int beginColumn, final int endLine, final int endColu… in Expression() argument 35 super(beginLine, beginColumn, endLine, endColumn); in Expression()
|
D | AnnotationExpr.java | 33 public AnnotationExpr(int beginLine, int beginColumn, int endLine, in AnnotationExpr() argument 35 super(beginLine, beginColumn, endLine, endColumn); in AnnotationExpr()
|
D | NullLiteralExpr.java | 35 …public NullLiteralExpr(final int beginLine, final int beginColumn, final int endLine, final int en… in NullLiteralExpr() argument 36 super(beginLine, beginColumn, endLine, endColumn); in NullLiteralExpr()
|
D | IntegerLiteralMinValueExpr.java | 36 …public IntegerLiteralMinValueExpr(final int beginLine, final int beginColumn, final int endLine, f… in IntegerLiteralMinValueExpr() argument 37 super(beginLine, beginColumn, endLine, endColumn, MIN_VALUE); in IntegerLiteralMinValueExpr()
|
D | LongLiteralMinValueExpr.java | 36 …public LongLiteralMinValueExpr(final int beginLine, final int beginColumn, final int endLine, fina… in LongLiteralMinValueExpr() argument 37 super(beginLine, beginColumn, endLine, endColumn, MIN_VALUE); in LongLiteralMinValueExpr()
|
D | DoubleLiteralExpr.java | 39 …public DoubleLiteralExpr(final int beginLine, final int beginColumn, final int endLine, final int … in DoubleLiteralExpr() argument 41 super(beginLine, beginColumn, endLine, endColumn, value); in DoubleLiteralExpr()
|
D | CharLiteralExpr.java | 39 … public CharLiteralExpr(int beginLine, int beginColumn, int endLine, int endColumn, String value) { in CharLiteralExpr() argument 40 super(beginLine, beginColumn, endLine, endColumn, value); in CharLiteralExpr()
|
D | MarkerAnnotationExpr.java | 39 …public MarkerAnnotationExpr(final int beginLine, final int beginColumn, final int endLine, final i… in MarkerAnnotationExpr() argument 41 super(beginLine, beginColumn, endLine, endColumn); in MarkerAnnotationExpr()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/stmt/ |
D | CatchClause.java | 55 …public CatchClause(final int beginLine, final int beginColumn, final int endLine, final int endCol… in CatchClause() argument 58 super(beginLine, beginColumn, endLine, endColumn); in CatchClause() 59 …setExcept(new MultiTypeParameter(beginLine, beginColumn, endLine, endColumn, exceptModifier, excep… in CatchClause()
|
D | Statement.java | 34 …public Statement(final int beginLine, final int beginColumn, final int endLine, final int endColum… in Statement() argument 35 super(beginLine, beginColumn, endLine, endColumn); in Statement()
|
D | EmptyStmt.java | 35 …public EmptyStmt(final int beginLine, final int beginColumn, final int endLine, final int endColum… in EmptyStmt() argument 36 super(beginLine, beginColumn, endLine, endColumn); in EmptyStmt()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_expected_output/ |
D | com_github_javaparser_ast_Node.txt | 9 Line 68) this.endLine = endLine ==> int 16 Line 150) endLine ==> int 28 Line 218) this.endLine = endLine ==> int
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/comments/ |
D | LineComment.java | 44 public LineComment(int beginLine, int beginColumn, int endLine, int endColumn, String content) { in LineComment() argument 45 super(beginLine, beginColumn, endLine, endColumn, content); in LineComment()
|
D | BlockComment.java | 45 … public BlockComment(int beginLine, int beginColumn, int endLine, int endColumn, String content) { in BlockComment() argument 46 super(beginLine, beginColumn, endLine, endColumn, content); in BlockComment()
|
D | JavadocComment.java | 39 …public JavadocComment(int beginLine, int beginColumn, int endLine, int endColumn, String content) { in JavadocComment() argument 40 super(beginLine, beginColumn, endLine, endColumn, content); in JavadocComment()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/body/ |
D | BodyDeclaration.java | 44 …public BodyDeclaration(int beginLine, int beginColumn, int endLine, int endColumn, List<Annotation… in BodyDeclaration() argument 45 super(beginLine, beginColumn, endLine, endColumn); in BodyDeclaration()
|