Home
last modified time | relevance | path

Searched refs:methodInvocationTree (Results 1 – 2 of 2) sorted by relevance

/external/nullaway/nullaway/src/main/java/com/uber/nullaway/dataflow/
DAccessPath.java411 MethodInvocationTree methodInvocationTree = (MethodInvocationTree) tree; in buildAccessPathRecursive() local
412 if (methodInvocationTree.getArguments().size() == 1 in buildAccessPathRecursive()
413 && isBoxingMethod(ASTHelpers.getSymbol(methodInvocationTree))) { in buildAccessPathRecursive()
414 tree = methodInvocationTree.getArguments().get(0); in buildAccessPathRecursive()
/external/nullaway/nullaway/src/main/java/com/uber/nullaway/
DNullAway.java2144 MethodInvocationTree methodInvocationTree = (MethodInvocationTree) expressionTree; in getInvokeOfSafeInitMethod()
2145 Symbol.MethodSymbol symbol = ASTHelpers.getSymbol(methodInvocationTree); in getInvokeOfSafeInitMethod()