Home | History | Annotate | Download | only in javaparser

Lines Matching defs:sr

209         StringReader sr = new StringReader(blockStatement);
210 BlockStmt result = new ASTParser(sr).Block();
211 sr.close();
226 StringReader sr = new StringReader(statement);
227 Statement stmt = new ASTParser(sr).Statement();
228 sr.close();
243 StringReader sr = new StringReader(importDeclaration);
244 ImportDeclaration id = new ASTParser(sr).ImportDeclaration();
245 sr.close();
260 StringReader sr = new StringReader(expression);
261 Expression e = new ASTParser(sr).Expression();
262 sr.close();
277 StringReader sr = new StringReader(annotation);
278 AnnotationExpr ae = new ASTParser(sr).Annotation();
279 sr.close();
294 StringReader sr = new StringReader(body);
295 BodyDeclaration bd = new ASTParser(sr).AnnotationBodyDeclaration();
296 sr.close();