Home
last modified time | relevance | path

Searched refs:v (Results 1 – 25 of 755) sorted by relevance

12345678910>>...31

/cts/apps/CtsVerifier/res/raw/
Dring_obj5 v 0.172500 0.000000 0.000000
6 v 0.171733 -0.000000 0.005823
7 v 0.169486 -0.000000 0.011250
8 v 0.165910 -0.000000 0.015910
9 v 0.161250 -0.000000 0.019486
10 v 0.155823 -0.000000 0.021733
11 v 0.150000 -0.000000 0.022500
12 v 0.144177 -0.000000 0.021733
13 v 0.138750 -0.000000 0.019486
14 v 0.134090 -0.000000 0.015910
[all …]
Dcone_obj4 v 0.000000 -0.075000 0.125000
5 v 0.000000 -0.000000 -0.125000
6 v 0.014632 -0.073559 0.125000
7 v 0.028701 -0.069291 0.125000
8 v 0.041668 -0.062360 0.125000
9 v 0.053033 -0.053033 0.125000
10 v 0.062360 -0.041668 0.125000
11 v 0.069291 -0.028701 0.125000
12 v 0.073559 -0.014632 0.125000
13 v 0.075000 -0.000000 0.125000
[all …]
/cts/tests/autofillservice/src/android/autofillservice/cts/inline/
DInlineFilteringTest.java84 mActivity.onUsername((v) -> v.setText("t")); in testFiltering_filtersByPrefix()
89 mActivity.onUsername((v) -> v.setText("ta")); in testFiltering_filtersByPrefix()
94 mActivity.onUsername((v) -> v.setText("t")); in testFiltering_filtersByPrefix()
123 mActivity.onUsername((v) -> v.setText("s")); in testFiltering_privacy()
129 mActivity.onUsername((v) -> v.setText("sa")); in testFiltering_privacy()
134 mActivity.onUsername((v) -> v.setText("s")); in testFiltering_privacy()
139 mActivity.onUsername((v) -> v.setText("se")); in testFiltering_privacy()
144 mActivity.onUsername((v) -> v.setText("")); in testFiltering_privacy()
167 mActivity.onUsername((v) -> v.setText("ser")); in testFiltering_privacy_textReplacement()
173 mActivity.onUsername((v) -> v.setText("aaa")); in testFiltering_privacy_textReplacement()
[all …]
/cts/tests/tests/mediastress/src/android/mediastress/cts/
DCodecTest.java75 Log.v(TAG, e.toString()); in printCpuInfo()
82 Log.v(TAG, "getDuration - " + filePath); in getDuration()
88 Log.v(TAG, e.toString()); in getDuration()
91 Log.v(TAG, "Duration " + duration); in getDuration()
93 Log.v(TAG, "release"); in getDuration()
98 Log.v(TAG, "GetCurrentPosition - " + filePath); in getCurrentPosition()
105 Log.v(TAG, "start playback"); in getCurrentPosition()
114 Log.v(TAG, e.toString()); in getCurrentPosition()
119 Log.v(TAG, "mp currentPositon = " + currentPosition + " play duration = " + (t2-t1)); in getCurrentPosition()
128 Log.v(TAG, "seekTo " + filePath); in seekTo()
[all …]
DMediaRecorderStressTest.java102 Log.v(TAG, "starting looper"); in setUp()
107 Log.v(TAG, "quit looper"); in setUp()
182 Log.v(TAG, "Start preview"); in testStressCamera()
250 Log.v(TAG, String.format("Camera video size used for test %dx%d", width, height)); in testStressRecorder()
256 Log.v(TAG, "Start preview"); in testStressRecorder()
264 Log.v(TAG, "counter = " + i); in testStressRecorder()
266 Log.v(TAG, filename); in testStressRecorder()
273 Log.v(TAG, "setEncoder"); in testStressRecorder()
276 Log.v(TAG, "setPreview"); in testStressRecorder()
278 Log.v(TAG, "prepare"); in testStressRecorder()
[all …]
/cts/tests/tests/widget/src/android/widget/cts/
DGridLayoutTest.java63 abstract int getValue(View v); in getValue() argument
74 int getValue(View v) {
75 return v.getLeft();
80 int getValue(View v) {
81 return (v.getLeft() + v.getRight()) / 2;
86 int getValue(View v) {
87 return v.getRight();
92 int getValue(View v) {
93 return v.getWidth();
101 int getValue(View v) {
[all …]
/cts/tests/openglperf2/jni/graphics/
DVector2D.cpp27 Vector2D v(mX, mY); in copy() local
28 return v; in copy()
31 void Vector2D::add(const Vector2D& v) { in add() argument
32 mX += v.mX; in add()
33 mY += v.mY; in add()
36 void Vector2D::sub(const Vector2D& v) { in sub() argument
37 mX -= v.mX; in sub()
38 mY -= v.mY; in sub()
46 float Vector2D::distance(const Vector2D& v) { in distance() argument
47 float dx = mX - v.mX; in distance()
[all …]
/cts/tests/tests/renderscript/src/android/renderscript/cts/
DGlobalSync.java29 protected void setupGlobalSync(RenderScript mRS, ScriptC_global_sync gs, int v) { in setupGlobalSync() argument
41 In[0] = v; in setupGlobalSync()
63 int v = 7; in testKIGlobalSync() local
64 setupGlobalSync(mRS, gs, v); in testKIGlobalSync()
66 gs.invoke_test_read_global(v); in testKIGlobalSync()
84 int v = 9; in testKIStaticGlobalSync() local
85 setupGlobalSync(mRS, gs, v); in testKIStaticGlobalSync()
87 gs.invoke_test_read_static_global(v); in testKIStaticGlobalSync()
105 int v = 7; in testIKGlobalSync() local
106 setupGlobalSync(mRS, gs, v); in testIKGlobalSync()
[all …]
DAtomicTest.rscript24 void __attribute__((kernel)) test_Inc(int32_t v) {
27 void __attribute__((kernel)) test_uInc(uint32_t v) {
31 void __attribute__((kernel)) test_Dec(int32_t v) {
34 void __attribute__((kernel)) test_uDec(uint32_t v) {
39 void __attribute__((kernel)) test_##op(int32_t v) { \
40 rsAtomic##op(&gISum, v); \
42 void __attribute__((kernel)) test_u##op(uint32_t v) { \
43 rsAtomic##op(&gUSum, v); \
56 void getValueS(rs_allocation v) {
57 rsSetElementAt_int(v, gISum, 0);
[all …]
Dutils.rscript8 uchar4 v = (uchar)i;
9 float4 f = rsUnpackColor8888(v);
11 _RS_ASSERT(v.x == res.x);
12 _RS_ASSERT(v.y == res.y);
13 _RS_ASSERT(v.z == res.z);
14 _RS_ASSERT(v.w == res.w);
/cts/tests/autofillservice/src/android/autofillservice/cts/unittests/
DAutofillValueTest.java49 final AutofillValue v = AutofillValue.forText("someText"); in createTextValue() local
50 assertThat(v.getTextValue()).isEqualTo("someText"); in createTextValue()
52 assertThrows(IllegalStateException.class, v::getToggleValue); in createTextValue()
53 assertThrows(IllegalStateException.class, v::getListValue); in createTextValue()
54 assertThrows(IllegalStateException.class, v::getDateValue); in createTextValue()
68 final AutofillValue v = AutofillValue.forToggle(true); in createToggleValue() local
70 assertThrows(IllegalStateException.class, v::getTextValue); in createToggleValue()
71 assertThrows(IllegalStateException.class, v::getListValue); in createToggleValue()
72 assertThrows(IllegalStateException.class, v::getDateValue); in createToggleValue()
86 final AutofillValue v = AutofillValue.forList(0); in createListValue() local
[all …]
/cts/tests/tests/jni/src/android/jni/cts/
DInstanceNonce.java55 public native boolean takeBoolean(boolean v); in takeBoolean() argument
56 public native boolean takeByte(byte v); in takeByte() argument
57 public native boolean takeShort(short v); in takeShort() argument
58 public native boolean takeChar(char v); in takeChar() argument
59 public native boolean takeInt(int v); in takeInt() argument
60 public native boolean takeLong(long v); in takeLong() argument
61 public native boolean takeFloat(float v); in takeFloat() argument
62 public native boolean takeDouble(double v); in takeDouble() argument
63 public native boolean takeNull(Object v); in takeNull() argument
64 public native boolean takeString(String v); in takeString() argument
[all …]
DStaticNonce.java56 public static native boolean takeBoolean(boolean v); in takeBoolean() argument
57 public static native boolean takeByte(byte v); in takeByte() argument
58 public static native boolean takeShort(short v); in takeShort() argument
59 public static native boolean takeChar(char v); in takeChar() argument
60 public static native boolean takeInt(int v); in takeInt() argument
61 public static native boolean takeLong(long v); in takeLong() argument
62 public static native boolean takeFloat(float v); in takeFloat() argument
63 public static native boolean takeDouble(double v); in takeDouble() argument
64 public static native boolean takeNull(Object v); in takeNull() argument
65 public static native boolean takeString(String v); in takeString() argument
[all …]
/cts/tests/tests/view/src/android/view/cts/
DSystemGestureExclusionRectsTest.java71 final View v = activity.findViewById(R.id.animating_view); in staticView() local
72 final ViewTreeObserver vto = v.getViewTreeObserver(); in staticView()
75 v.getLocationInWindow(point); in staticView()
78 expected.right = expected.left + v.getWidth(); in staticView()
79 expected.bottom = expected.top + v.getHeight(); in staticView()
84 v.setSystemGestureExclusionRects( in staticView()
110 final View v = activity.findViewById(R.id.animating_view); in animatingView() local
111 final ViewTreeObserver vto = v.getViewTreeObserver(); in animatingView()
114 v.setSystemGestureExclusionRects( in animatingView()
116 v.animate().x(30).setListener(new AnimationDoneListener(doneAnimating)); in animatingView()
[all …]
/cts/tests/tests/jni/libjnitest/
Dandroid_jni_cts_InstanceNonce.c146 jboolean v) { in InstanceNonce_takeBoolean() argument
147 return v == false; in InstanceNonce_takeBoolean()
151 static jboolean InstanceNonce_takeByte(JNIEnv *env, jobject this, jbyte v) { in InstanceNonce_takeByte() argument
152 return v == -99; in InstanceNonce_takeByte()
156 static jboolean InstanceNonce_takeShort(JNIEnv *env, jobject this, jshort v) { in InstanceNonce_takeShort() argument
157 return v == 19991; in InstanceNonce_takeShort()
161 static jboolean InstanceNonce_takeChar(JNIEnv *env, jobject this, jchar v) { in InstanceNonce_takeChar() argument
162 return v == 999; in InstanceNonce_takeChar()
166 static jboolean InstanceNonce_takeInt(JNIEnv *env, jobject this, jint v) { in InstanceNonce_takeInt() argument
167 return v == -999888777; in InstanceNonce_takeInt()
[all …]
Dandroid_jni_cts_StaticNonce.c163 jboolean v) { in StaticNonce_takeBoolean() argument
164 return v == true; in StaticNonce_takeBoolean()
168 static jboolean StaticNonce_takeByte(JNIEnv *env, jclass clazz, jbyte v) { in StaticNonce_takeByte() argument
169 return v == -99; in StaticNonce_takeByte()
173 static jboolean StaticNonce_takeShort(JNIEnv *env, jclass clazz, jshort v) { in StaticNonce_takeShort() argument
174 return v == 19991; in StaticNonce_takeShort()
178 static jboolean StaticNonce_takeChar(JNIEnv *env, jclass clazz, jchar v) { in StaticNonce_takeChar() argument
179 return v == 999; in StaticNonce_takeChar()
183 static jboolean StaticNonce_takeInt(JNIEnv *env, jclass clazz, jint v) { in StaticNonce_takeInt() argument
184 return v == -999888777; in StaticNonce_takeInt()
[all …]
/cts/tests/framework/base/windowmanager/src/android/server/wm/
DDragDropTest.java115 LogEntry(View v, int action, float x, float y, ClipData clipData, in LogEntry() argument
117 this.view = v; in LogEntry()
173 private void logEvent(View v, DragEvent ev) { in logEvent() argument
180 mActual.add(new LogEntry(v, ev.getAction(), ev.getX(), ev.getY(), ev.getClipData(), in logEvent()
186 View v = mActivity.findViewById(viewId); in expectEvent5() local
187 mExpected.add(new LogEntry(v, action, 0, 0, obtainClipData(action), in expectEvent5()
193 View v = mActivity.findViewById(viewId); in expectEndEvent() local
195 mExpected.add(new LogEntry(v, action, x, y, obtainClipData(action), in expectEndEvent()
207 View v = mActivity.findViewById(viewId); in expectEndEventFailure6() local
212 mExpected.add(new LogEntry(v, action, in expectEndEventFailure6()
[all …]
/cts/tests/tests/media/src/android/media/cts/
DMediaPlayerDrmTestBase.java218 Log.v(TAG, "playVideoWithRetries(" + testType + ") try " + i); in playModularDrmVideoWithRetries()
272 Log.v(TAG, "playLoadedVideo: setDataSource()"); in playLoadedModularDrmVideo_Generic()
284 Log.v(TAG, "VideoSizeChanged" + " w:" + w + " h:" + h); in playLoadedModularDrmVideo_Generic()
329 Log.v(TAG, "playLoadedVideo: onCompletion"); in playLoadedModularDrmVideo_Generic()
334 Log.v(TAG, "playLoadedVideo: start()"); in playLoadedModularDrmVideo_Generic()
343 Log.v(TAG, "playLoadedVideo: waiting for playback completion"); in playLoadedModularDrmVideo_Generic()
346 Log.v(TAG, "playLoadedVideo: waiting while playing for " + playTime); in playLoadedModularDrmVideo_Generic()
350 Log.v(TAG, "playLoadedVideo: stopping"); in playLoadedModularDrmVideo_Generic()
352 Log.v(TAG, "playLoadedVideo: stopped"); in playLoadedModularDrmVideo_Generic()
355 Log.v(TAG, "playLoadedVideo: releaseDrm"); in playLoadedModularDrmVideo_Generic()
[all …]
/cts/tests/autofillservice/src/android/autofillservice/cts/dropdown/
DCheckoutActivityTest.java119 mActivity.onCcNumber((v) -> v.requestFocus());
145 mActivity.onCcExpiration((v) -> v.setAdapter(new ArrayAdapter<String>(getContext(),
164 mActivity.onCcNumber((v) -> v.requestFocus());
207 mActivity.onCcNumber((v) -> v.requestFocus());
238 mActivity.onCcExpiration((v) -> v.setSelection(INDEX_CC_EXPIRATION_TOMORROW, true));
239 mActivity.onHomeAddress((v) -> v.setChecked(true));
240 mActivity.onSaveCc((v) -> v.setChecked(true));
243 mActivity.onCcNumber((v) -> v.requestFocus());
254 mActivity.onCcNumber((v) -> v.setText("4815162342"));
255 mActivity.onCcExpiration((v) -> v.setSelection(INDEX_CC_EXPIRATION_TODAY));
[all …]
DPreFilledLoginActivityTest.java70 mActivity.onUsernameLabel((v) -> v.setText("DA USER"));
71 mActivity.onPasswordLabel((v) -> v.setText(R.string.new_password_label));
74 mActivity.onUsername((v) -> v.requestFocus());
92 mActivity.onUsername((v) -> v.setText("malkovich"));
93 mActivity.onPassword((v) -> v.setText("malkovich"));
/cts/apps/CameraITS/tests/scene3/
Dtest_lens_movement_reporting.py142 frame_diffs = np.gradient([v['timestamp'] for v in d.values()])
163 min_loc = min([v['loc'] for v in d_af_fd.values()])
164 max_loc = max([v['loc'] for v in d_af_fd.values()])
170 min_sharp = min([v['sharpness'] for v in d_af_fd.values()])
171 max_sharp = max([v['sharpness'] for v in d_af_fd.values()])
185 min_loc = min([v['loc'] for v in d_min_fd.values()])
186 max_loc = max([v['loc'] for v in d_min_fd.values()])
192 min_sharp = min([v['sharpness'] for v in d_min_fd.values()])
193 max_sharp = max([v['sharpness'] for v in d_min_fd.values()])
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/
DMathsUtils.java211 public static void normalizeVector(float[] v) { in normalizeVector() argument
212 float mag2 = v[0] * v[0] + v[1] * v[1] + v[2] * v[2] + v[3] * v[3]; in normalizeVector()
215 v[0] = v[0] / mag; in normalizeVector()
216 v[1] = v[1] / mag; in normalizeVector()
217 v[2] = v[2] / mag; in normalizeVector()
218 v[3] = v[3] / mag; in normalizeVector()
/cts/tests/sensor/src/android/hardware/cts/
DSensorManagerStaticTest.java207 float [] v; in testGetQuaternionFromVector() local
228 v = vs[i%3]; in testGetQuaternionFromVector()
231 v[4] = data.nextBoolean() ? data.nextFloat() : -1.f; in testGetQuaternionFromVector()
233 v[3] = c; in testGetQuaternionFromVector()
235 v[0] = s * xyzth[0]; in testGetQuaternionFromVector()
236 v[1] = s * xyzth[1]; in testGetQuaternionFromVector()
237 v[2] = s * xyzth[2]; in testGetQuaternionFromVector()
241 q2[1] = v[0]; in testGetQuaternionFromVector()
242 q2[2] = v[1]; in testGetQuaternionFromVector()
243 q2[3] = v[2]; in testGetQuaternionFromVector()
[all …]
/cts/tests/autofillservice/src/android/autofillservice/cts/activities/
DCheckoutActivity.java116 mBuyButton.setOnClickListener((v) -> buy()); in onCreate()
117 mClearButton.setOnClickListener((v) -> resetFields()); in onCreate()
176 public void onCcNumber(Visitor<EditText> v) { in onCcNumber() argument
177 syncRunOnUiThread(() -> v.visit(mCcNumber)); in onCcNumber()
183 public void onCcExpiration(Visitor<Spinner> v) { in onCcExpiration() argument
184 syncRunOnUiThread(() -> v.visit(mCcExpiration)); in onCcExpiration()
190 public void onCcExpirationAdapter(Visitor<ArrayAdapter<CharSequence>> v) { in onCcExpirationAdapter() argument
191 syncRunOnUiThread(() -> v.visit(mCcExpirationAdapter)); in onCcExpirationAdapter()
197 public void onAddress(Visitor<RadioGroup> v) { in onAddress() argument
198 syncRunOnUiThread(() -> v.visit(mAddress)); in onAddress()
[all …]
/cts/tests/app/app/src/android/app/stubs/
DExpandableListTestActivity.java82 final ExpandableListView v = getExpandableListView(); in testCallback() local
85 final View gv = a.getGroupView(0, true, convertView, v); in testCallback()
86 v.setOnCreateContextMenuListener(this); in testCallback()
87 v.createContextMenu(new ContextMenuBuilder(this)); in testCallback()
89 v.expandGroup(i); in testCallback()
90 v.performClick(); in testCallback()
91 v.performLongClick(); in testCallback()
93 v.performItemClick(gv, i, k); in testCallback()
95 v.collapseGroup(i); in testCallback()
121 final ExpandableListView v = getExpandableListView(); in testSelect() local
[all …]

12345678910>>...31