Home
last modified time | relevance | path

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

/developers/samples/android/input/autofill/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/app/
DCustomVirtualView.kt145 var upperY = -1 in onTouchEvent() variable
147 upperY = lowerY + lineLength in onTouchEvent()
148 Log.d(TAG, "Line $line ranges from $lowerY to $upperY") in onTouchEvent()
149 if (y in lowerY..upperY) { in onTouchEvent()
/developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/view/autofillable/
DAbstractCustomVirtualView.java161 int upperY = -1; in onMotion() local
164 upperY = lowerY + mLineLength; in onMotion()
165 if (DEBUG) Log.d(TAG, "Line " + i + " ranges from " + lowerY + " to " + upperY); in onMotion()
166 if (lowerY <= y && y <= upperY) { in onMotion()