Home
last modified time | relevance | path

Searched refs:catchClause (Results 1 – 5 of 5) sorted by relevance

/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
DJavaParserFacadeResolutionTest.java158 CatchClause catchClause = Navigator.findNodeOfGivenClass(cu, CatchClause.class); in solveMultiCatchType() local
159 Type jpType = catchClause.getParameter().getType(); in solveMultiCatchType()
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/
DLexicalPreservingPrinterTest.java421 CatchClause catchClause = tryStmt.getCatchClauses().get(0); in printASingleCatchType() local
422 Type catchType = catchClause.getParameter().getType(); in printASingleCatchType()
433 CatchClause catchClause = tryStmt.getCatchClauses().get(0); in printUnionType() local
434 UnionType unionType = (UnionType)catchClause.getParameter().getType(); in printUnionType()
445 CatchClause catchClause = tryStmt.getCatchClauses().get(0); in printParameterHavingUnionType() local
446 Parameter parameter = catchClause.getParameter(); in printParameterHavingUnionType()
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
DCode.java363 public void addCatchClause(TypeId<? extends Throwable> toCatch, Label catchClause) { in addCatchClause() argument
367 adopt(catchClause); in addCatchClause()
370 catchLabels.add(catchClause); in addCatchClause()
/external/doclava/src/com/google/doclava/parser/
DJava.g896 : catchClause
897 (catchClause
901 catchClause
DJavaParser.java8242 catchClause(); in catches()
8272 catchClause(); in catches()
8313 public final void catchClause() throws RecognitionException { in catchClause() method in JavaParser