Home
last modified time | relevance | path

Searched refs:endLine (Results 1 – 25 of 214) sorted by relevance

123456789

/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DJavaSourceWriter.java60 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/
DNode.java46 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()
DTypeParameter.java59 …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/
DType.java43 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()
DReferenceType.java53 …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()
DVoidType.java35 …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/
DASTParser.java200 …{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/
DArrayCreationExpr.java55 …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()
DLiteralExpr.java32 …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()
DExpression.java34 …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()
DAnnotationExpr.java33 public AnnotationExpr(int beginLine, int beginColumn, int endLine, in AnnotationExpr() argument
35 super(beginLine, beginColumn, endLine, endColumn); in AnnotationExpr()
DNullLiteralExpr.java35 …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()
DIntegerLiteralMinValueExpr.java36 …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()
DLongLiteralMinValueExpr.java36 …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()
DDoubleLiteralExpr.java39 …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()
DCharLiteralExpr.java39 … public CharLiteralExpr(int beginLine, int beginColumn, int endLine, int endColumn, String value) { in CharLiteralExpr() argument
40 super(beginLine, beginColumn, endLine, endColumn, value); in CharLiteralExpr()
DMarkerAnnotationExpr.java39 …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/
DCatchClause.java55 …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()
DStatement.java34 …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()
DEmptyStmt.java35 …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/
Dcom_github_javaparser_ast_Node.txt9 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/
DLineComment.java44 public LineComment(int beginLine, int beginColumn, int endLine, int endColumn, String content) { in LineComment() argument
45 super(beginLine, beginColumn, endLine, endColumn, content); in LineComment()
DBlockComment.java45 … public BlockComment(int beginLine, int beginColumn, int endLine, int endColumn, String content) { in BlockComment() argument
46 super(beginLine, beginColumn, endLine, endColumn, content); in BlockComment()
DJavadocComment.java39 …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/
DBodyDeclaration.java44 …public BodyDeclaration(int beginLine, int beginColumn, int endLine, int endColumn, List<Annotation… in BodyDeclaration() argument
45 super(beginLine, beginColumn, endLine, endColumn); in BodyDeclaration()

123456789