Home
last modified time | relevance | path

Searched defs:v (Results 1 – 25 of 172) sorted by relevance

1234567

/cts/tests/autofillservice/src/android/autofillservice/cts/unittests/
DAutofillValueTest.java49 final AutofillValue v = AutofillValue.forText("someText"); in createTextValue() local
68 final AutofillValue v = AutofillValue.forToggle(true); in createToggleValue() local
86 final AutofillValue v = AutofillValue.forList(0); in createListValue() local
104 final AutofillValue v = AutofillValue.forDate(0); in createDateValue() local
/cts/tests/tests/renderscript/src/android/renderscript/cts/
DGlobalSync.java29 protected void setupGlobalSync(RenderScript mRS, ScriptC_global_sync gs, int v) { in setupGlobalSync()
63 int v = 7; in testKIGlobalSync() local
84 int v = 9; in testKIStaticGlobalSync() local
105 int v = 7; in testIKGlobalSync() local
126 int v = 9; in testIKStaticGlobalSync() local
DIntrinsic3DLut.java49 int v = 0xff000000; in genCubeIdent() local
67 int v = 0xff000000; in genCubeRand() local
/cts/tests/openglperf2/jni/graphics/
DVector2D.cpp27 Vector2D v(mX, mY); in copy() local
31 void Vector2D::add(const Vector2D& v) { in add()
36 void Vector2D::sub(const Vector2D& v) { in sub()
46 float Vector2D::distance(const Vector2D& v) { in distance()
/cts/tests/tests/view/src/android/view/cts/
DSystemGestureExclusionRectsTest.java71 final View v = activity.findViewById(R.id.animating_view); in staticView() local
110 final View v = activity.findViewById(R.id.animating_view); in animatingView() local
145 final View v = activity.findViewById(R.id.animating_view); in animatingView() local
166 final View v = activity.findViewById(R.id.animating_view); in removingRects() local
174 final View v = activity.findViewById(R.id.animating_view); in removingRects() local
212 final View v = activity.findViewById(R.id.animating_view); in ignoreHiddenViewRects() local
225 final View v = activity.findViewById(R.id.animating_view); in ignoreHiddenViewRects() local
236 final View v = activity.findViewById(R.id.animating_view); in ignoreHiddenViewRects() local
247 final View v = activity.findViewById(R.id.animating_view); in ignoreHiddenViewRects() local
DGestureDetectorCtsActivity.java93 public boolean onTouch(View v, MotionEvent event) { in onTouch()
98 public boolean onGenericMotion(View v, MotionEvent event) { in onGenericMotion()
DTouchDelegateTestActivity.java90 button.setOnTouchListener((v, event) -> { in onCreate() argument
94 button.setOnHoverListener((v, event) -> { in onCreate() argument
DTooltipActivity.java32 ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) { in onCreateContextMenu()
/cts/tests/tests/jni/src/android/jni/cts/
DInstanceNonce.java55 public native boolean takeBoolean(boolean v); in takeBoolean()
56 public native boolean takeByte(byte v); in takeByte()
57 public native boolean takeShort(short v); in takeShort()
58 public native boolean takeChar(char v); in takeChar()
59 public native boolean takeInt(int v); in takeInt()
60 public native boolean takeLong(long v); in takeLong()
61 public native boolean takeFloat(float v); in takeFloat()
62 public native boolean takeDouble(double v); in takeDouble()
63 public native boolean takeNull(Object v); in takeNull()
64 public native boolean takeString(String v); in takeString()
[all …]
DStaticNonce.java56 public static native boolean takeBoolean(boolean v); in takeBoolean()
57 public static native boolean takeByte(byte v); in takeByte()
58 public static native boolean takeShort(short v); in takeShort()
59 public static native boolean takeChar(char v); in takeChar()
60 public static native boolean takeInt(int v); in takeInt()
61 public static native boolean takeLong(long v); in takeLong()
62 public static native boolean takeFloat(float v); in takeFloat()
63 public static native boolean takeDouble(double v); in takeDouble()
64 public static native boolean takeNull(Object v); in takeNull()
65 public static native boolean takeString(String v); in takeString()
[all …]
/cts/tests/framework/base/windowmanager/src/android/server/wm/
DWindowInputTests.java137 mView.setOnClickListener((v) -> { in testMoveWindowAndTap() argument
209 mView.setOnClickListener((v) -> { in testTouchModalWindow() argument
241 mView.setOnClickListener((v) -> { in testFilterTouchesWhenObscuredByWindowFromSameUid() argument
244 mView.setOnTouchListener((v, ev) -> { in testFilterTouchesWhenObscuredByWindowFromSameUid() argument
287 mView.setOnClickListener((v) -> { in testFilterTouchesWhenObscuredByWindowFromDifferentUid() argument
290 mView.setOnTouchListener((v, ev) -> { in testFilterTouchesWhenObscuredByWindowFromDifferentUid() argument
340 mView.setOnClickListener((v) -> { in testFlagTouchesWhenObscuredByWindowFromDifferentUid() argument
343 mView.setOnTouchListener((v, ev) -> { in testFlagTouchesWhenObscuredByWindowFromDifferentUid() argument
395 mView.setOnClickListener((v) -> { in testDoNotFlagTouchesWhenObscuredByZeroOpacityWindow() argument
398 mView.setOnTouchListener((v, ev) -> { in testDoNotFlagTouchesWhenObscuredByZeroOpacityWindow() argument
[all …]
DDragDropTest.java115 LogEntry(View v, int action, float x, float y, ClipData clipData, in LogEntry()
173 private void logEvent(View v, DragEvent ev) { in logEvent()
186 View v = mActivity.findViewById(viewId); in expectEvent5() local
193 View v = mActivity.findViewById(viewId); in expectEndEvent() local
207 View v = mActivity.findViewById(viewId); in expectEndEventFailure6() local
220 View v = mActivity.findViewById(viewId); in expectEventWithOffset() local
244 View v = mActivity.findViewById(viewId); in injectMouseWithOffset() local
334 private void setRejectingHandlersOnTree(View v) { in setRejectingHandlersOnTree()
368 View v = mActivity.findViewById(R.id.draggable); in startDrag() local
677 View v = mActivity.findViewById(R.id.draggable); in testNoDragIfWindowCantReceiveInput() local
[all …]
DSurfaceControlViewHostTests.java121 private void addViewToSurfaceView(SurfaceView sv, View v, int width, int height) { in addViewToSurfaceView()
205 mEmbeddedView.setOnClickListener((View v) -> { in testEmbeddedViewReceivesInput()
242 mEmbeddedView.setOnClickListener((View v) -> { in testEmbeddedViewIsHardwareAccelerated()
261 mEmbeddedView.setOnClickListener((View v) -> { in testEmbeddedViewResizes()
290 mEmbeddedView.setOnClickListener((View v) -> { in testEmbeddedViewReleases()
313 mEmbeddedView.setOnClickListener((View v) -> { in testDisableInputTouch()
/cts/tests/autofillservice/src/android/autofillservice/cts/activities/
DCheckoutActivity.java176 public void onCcNumber(Visitor<EditText> v) { in onCcNumber()
183 public void onCcExpiration(Visitor<Spinner> v) { in onCcExpiration()
190 public void onCcExpirationAdapter(Visitor<ArrayAdapter<CharSequence>> v) { in onCcExpirationAdapter()
197 public void onAddress(Visitor<RadioGroup> v) { in onAddress()
204 public void onHomeAddress(Visitor<RadioButton> v) { in onHomeAddress()
211 public void onWorkAddress(Visitor<RadioButton> v) { in onWorkAddress()
218 public void onSaveCc(Visitor<CheckBox> v) { in onSaveCc()
DLoginActivity.java116 mClearButton.setOnClickListener((v) -> { in onCreate() argument
264 public void onUsernameLabel(Visitor<TextView> v) { in onUsernameLabel()
271 public void onUsername(Visitor<EditText> v) { in onUsername()
297 public void onPasswordLabel(Visitor<TextView> v) { in onPasswordLabel()
304 public void onPassword(Visitor<EditText> v) { in onPassword()
311 public void onLogin(Visitor<Button> v) { in onLogin()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/security/
DCANotifyOnBootActivity.java44 public void onClick(View v) { in onClick()
55 public void onClick(View v) { in onClick()
/cts/tests/tests/jni/libjnitest/
Dandroid_jni_cts_InstanceNonce.c146 jboolean v) { in InstanceNonce_takeBoolean()
151 static jboolean InstanceNonce_takeByte(JNIEnv *env, jobject this, jbyte v) { in InstanceNonce_takeByte()
156 static jboolean InstanceNonce_takeShort(JNIEnv *env, jobject this, jshort v) { in InstanceNonce_takeShort()
161 static jboolean InstanceNonce_takeChar(JNIEnv *env, jobject this, jchar v) { in InstanceNonce_takeChar()
166 static jboolean InstanceNonce_takeInt(JNIEnv *env, jobject this, jint v) { in InstanceNonce_takeInt()
171 static jboolean InstanceNonce_takeLong(JNIEnv *env, jobject this, jlong v) { in InstanceNonce_takeLong()
176 static jboolean InstanceNonce_takeFloat(JNIEnv *env, jobject this, jfloat v) { in InstanceNonce_takeFloat()
182 jdouble v) { in InstanceNonce_takeDouble()
187 static jboolean InstanceNonce_takeNull(JNIEnv *env, jobject this, jobject v) { in InstanceNonce_takeNull()
193 jstring v) { in InstanceNonce_takeString()
[all …]
Dandroid_jni_cts_StaticNonce.c163 jboolean v) { in StaticNonce_takeBoolean()
168 static jboolean StaticNonce_takeByte(JNIEnv *env, jclass clazz, jbyte v) { in StaticNonce_takeByte()
173 static jboolean StaticNonce_takeShort(JNIEnv *env, jclass clazz, jshort v) { in StaticNonce_takeShort()
178 static jboolean StaticNonce_takeChar(JNIEnv *env, jclass clazz, jchar v) { in StaticNonce_takeChar()
183 static jboolean StaticNonce_takeInt(JNIEnv *env, jclass clazz, jint v) { in StaticNonce_takeInt()
188 static jboolean StaticNonce_takeLong(JNIEnv *env, jclass clazz, jlong v) { in StaticNonce_takeLong()
193 static jboolean StaticNonce_takeFloat(JNIEnv *env, jclass clazz, jfloat v) { in StaticNonce_takeFloat()
198 static jboolean StaticNonce_takeDouble(JNIEnv *env, jclass clazz, jdouble v) { in StaticNonce_takeDouble()
203 static jboolean StaticNonce_takeNull(JNIEnv *env, jclass clazz, jobject v) { in StaticNonce_takeNull()
208 static jboolean StaticNonce_takeString(JNIEnv *env, jclass clazz, jstring v) { in StaticNonce_takeString()
[all …]
/cts/tests/app/app/src/android/app/stubs/
DExpandableListTestActivity.java82 final ExpandableListView v = getExpandableListView(); in testCallback() local
121 final ExpandableListView v = getExpandableListView(); in testSelect() local
172 public void onCreateContextMenu(ContextMenu menu, View v, in onCreateContextMenu()
/cts/tests/tests/widget/src/android/widget/cts/
DSeekBarCtsActivity.java36 View v = findViewById(R.id.seekBar); in onCreate() local
DGridLayoutTest.java63 abstract int getValue(View v); in getValue()
207 TextView v = new TextView(context); in populate() local
218 TextView v = new TextView(context); in populate() local
229 TextView v = new TextView(context); in populate() local
243 TextView v = new Button(context); in populate() local
/cts/hostsidetests/dumpsys/apps/FramestatsTestApp/src/com/android/cts/framestatstestapp/
DFramestatsTestAppActivity.java27 View v = new View(this); in onCreate() local
/cts/suite/audio_quality/lib/src/
DRWBuffer.h75 template <typename T> void write(T v) { in write()
88 T v; in read() local
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_enter/d/
DT_monitor_enter_2.java24 public void run(int v) throws InterruptedException { in run()
/cts/hostsidetests/statsdatom/apps/statsdapp/src/com/android/server/cts/device/statsdatom/
DCheckers.java36 Vibrator v = InstrumentationRegistry.getContext().getSystemService(Vibrator.class); in checkVibratorSupported() local

1234567