Home
last modified time | relevance | path

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

/packages/modules/AdServices/adservices/linter/java/android/adservices/lint/common/
DKillSwitchFlagUsageDetector.kt60 val variableName = node.getName() in isVariableNameContainsKillSwitch() constant
61 return variableName?.contains("KILL_SWITCH", /* ignoreCase */ true) == true || in isVariableNameContainsKillSwitch()
62 variableName?.contains("KILLSWITCH", /* ignoreCase */ true) == true in isVariableNameContainsKillSwitch()
/packages/modules/NetworkStack/src/android/net/apf/
DBaseApfGenerator.java787 static void checkRange(@NonNull String variableName, long value, long lowerBound, in checkRange() argument
793 String.format("%s: %d, must be in range [%d, %d]", variableName, value, lowerBound, in checkRange()