Home
last modified time | relevance | path

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

/frameworks/base/tools/lint/global/checks/src/main/java/com/google/android/lint/aidl/
DEnforcePermissionDetector.kt222 val firstExpression = (node.uastBody as? UBlockExpression) in createUastHandler() constant
225 if (firstExpression == null) { in createUastHandler()
234 val firstExpressionSource = firstExpression.skipParenthesizedExprDown() in createUastHandler()
242 val firstCall = findCallExpression(firstExpression)?.resolve() in createUastHandler()
245 val locationTarget = getLocationTarget(firstExpression) in createUastHandler()
334 private fun getLocationTarget(firstExpression: UExpression): PsiElement? { in getLocationTarget()
335 if (firstExpression.sourcePsi != null) return firstExpression.sourcePsi in getLocationTarget()
336 if (firstExpression is UDeclarationsExpression) { in getLocationTarget()
337 return firstExpression.declarations.firstOrNull()?.sourcePsi in getLocationTarget()