Home
last modified time | relevance | path

Searched refs:v2 (Results 1 – 25 of 594) sorted by relevance

12345678910>>...24

/cts/tools/dasm/test/
Dall_opcodes.d17 move v1, v2
20 move-wide v1, v2
23 move-object v1, v2
48 instance-of v1, v2, java/lang/Object
49 array-length v1, v2
51 new-array v1, v2, java/lang/Object
52 filled-new-array {v1, v2, v3, v4, v5}, I
82 if-eq v1, v2, Label1
83 if-ne v1, v2, $+1
84 if-lt v1, v2, Label1
[all …]
/cts/hostsidetests/monkey/src/com/android/cts/monkey/
DVerbosityTest.java36 String v2 = mDevice.executeShellCommand(MONKEY_CMD + " -v -v -p " + PKGS[0] + " 500"); in testVerbosity() local
37 assertTrue(v2.contains("Events injected")); in testVerbosity()
38 assertTrue(v2.contains("Sending Touch")); in testVerbosity()
39 assertTrue(v2.contains("Sending Trackball")); in testVerbosity()
40 assertTrue(v2.contains("Switch")); in testVerbosity()
41 assertTrue(v2.contains("Sleeping")); in testVerbosity()
44 assertTrue(v1.length() < v2.length()); in testVerbosity()
/cts/tests/tests/widget/src/android/widget/cts/
DViewAnimatorTest.java93 final View v2 = mActivity.findViewById(R.id.cancel); in testShowNext() local
99 parent.removeView(v2); in testShowNext()
105 mViewAnimator.addView(v2); in testShowNext()
140 final View v2 = mActivity.findViewById(R.id.cancel); in testAccessDisplayedChild() local
144 parent.removeView(v2); in testAccessDisplayedChild()
150 mViewAnimator.addView(v2); in testAccessDisplayedChild()
175 final View v2 = mActivity.findViewById(R.id.cancel); in testAccessDisplayedChildBoundary() local
179 parent.removeView(v2); in testAccessDisplayedChildBoundary()
185 mViewAnimator.addView(v2); in testAccessDisplayedChildBoundary()
204 final View v2 = mActivity.findViewById(R.id.cancel); in testGetBaseline() local
[all …]
/cts/tests/tests/view/src/android/view/cts/
DView_FocusHandlingTest.java59 View v2 = activity.findViewById(R.id.view2); in testFocusHandling() local
64 assertNotNull(v2); in testFocusHandling()
70 assertFalse(v2.isFocusable()); in testFocusHandling()
75 v2.setFocusable(true); in testFocusHandling()
80 assertTrue(v2.isFocusable()); in testFocusHandling()
87 v2.setNextFocusLeftId(R.id.view1); in testFocusHandling()
88 v2.setNextFocusDownId(R.id.view4); in testFocusHandling()
100 assertEquals(R.id.view1, v2.getNextFocusLeftId()); in testFocusHandling()
101 assertEquals(R.id.view4, v2.getNextFocusDownId()); in testFocusHandling()
110 assertSame(v2, v1.focusSearch(View.FOCUS_RIGHT)); in testFocusHandling()
[all …]
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/packed_switch/d/
DT_packed_switch_2.d37 const/4 v2, -1
38 return v2
40 const/4 v2, 2
41 return v2
43 const/16 v2, 20
44 return v2
DT_packed_switch_3.d37 const/4 v2, -1
38 return v2
40 const/4 v2, 2
41 return v2
43 const/16 v2, 20
44 return v2
DT_packed_switch_4.d37 const/4 v2, -1
38 return v2
40 const/4 v2, 2
41 return v2
43 const/16 v2, 20
44 return v2
DT_packed_switch_5.d37 const/4 v2, -1
38 return v2
40 const/4 v2, 2
41 return v2
43 const/16 v2, 20
44 return v2
DT_packed_switch_6.d37 const/4 v2, -1
38 return v2
40 const/4 v2, 2
41 return v2
43 const/16 v2, 20
44 return v2
DT_packed_switch_7.d37 const/4 v2, -1
38 return v2
40 const/4 v2, 2
41 return v2
43 const/16 v2, 20
44 return v2
DT_packed_switch_8.d37 const v2, -1
38 return v2
40 const v2, 2
41 return v2
43 const v2, 20
44 return v2
DT_packed_switch_9.d37 const/4 v2, -1
38 return v2
40 const/4 v2, 2
41 return v2
43 const/16 v2, 20
44 return v2
DT_packed_switch_1.d37 const/4 v2, -1
38 return v2
40 const/4 v2, 2
41 return v2
43 const/16 v2, 20
44 return v2
DT_packed_switch_11.d37 const/4 v2, -1
38 return v2
40 const/4 v2, 2
41 return v2
43 const/16 v2, 20
44 return v2
DT_packed_switch_12.d39 const/4 v2, -1
40 return v2
42 const/4 v2, 2
43 return v2
45 const/16 v2, 20
46 return v2
DT_packed_switch_13.d38 const/4 v2, -1
39 return v2
41 const/4 v2, 2
42 return v2
44 const/16 v2, 20
45 return v2
/cts/tools/dasm/src/dasm/
DDAsm.java619 void addOpcode(String name, String v1, String v2) throws DasmError { in addOpcode() argument
621 System.out.println("addOpcode(" + name + ", " + v1 + ", " + v2 in addOpcode()
637 reg2_num = getRegNumberFromString(v2); in addOpcode()
640 + v2 + ")"); in addOpcode()
660 LabelTableEntry lte = labels_table.get(v2); in addOpcode()
665 labels_table.put(v2, lte); in addOpcode()
683 Constant constant = new CstString(v2); in addOpcode()
700 type = Type.intern(v2); in addOpcode()
702 type = Type.internClassName(v2); in addOpcode()
743 type = Type.intern(v2); in addOpcode()
[all …]
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_exit/d/
DT_monitor_exit_1.d26 const/4 v2, 1
27 iput-boolean v2, v3, dot.junit.opcodes.monitor_exit.d.T_monitor_exit_1.result Z
35 new-instance v2, java/lang/Object
36 invoke-direct {v2}, java/lang/Object/<init>()V
37 monitor-enter v2
/cts/tests/tests/jni/src/android/jni/cts/
DInstanceNonce.java66 public native boolean takeIntLong(int v1, long v2); in takeIntLong() argument
67 public native boolean takeLongInt(long v1, int v2); in takeLongInt() argument
68 public native boolean takeOneOfEach(boolean v0, byte v1, short v2, in takeOneOfEach() argument
72 int v1, int v2, int v3, int v4, in takeCoolHandLuke() argument
DStaticNonce.java67 public static native boolean takeIntLong(int v1, long v2); in takeIntLong() argument
68 public static native boolean takeLongInt(long v1, int v2); in takeLongInt() argument
69 public static native boolean takeOneOfEach(boolean v0, byte v1, short v2, in takeOneOfEach() argument
73 int v1, int v2, int v3, int v4, in takeCoolHandLuke() argument
DInstanceFromNative.java75 public boolean takeOneOfEach(double v0, float v1, long v2, int v3, in takeOneOfEach() argument
77 return (v0 == 0.0) && (v1 == 1.0f) && (v2 == 2L) && (v3 == 3) in takeOneOfEach()
83 int v1, int v2, int v3, int v4, in takeCoolHandLuke() argument
94 return (v1 == 1) && (v2 == 2) && (v3 == 3) && in takeCoolHandLuke()
DStaticFromNative.java72 public static boolean takeOneOfEach(double v0, float v1, long v2, int v3, in takeOneOfEach() argument
74 return (v0 == 0.0) && (v1 == 1.0f) && (v2 == 2L) && (v3 == 3) in takeOneOfEach()
80 int v1, int v2, int v3, int v4, in takeCoolHandLuke() argument
91 return (v1 == 1) && (v2 == 2) && (v3 == 3) && in takeCoolHandLuke()
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget_wide/d/
DT_iget_wide_1.d27 invoke-direct {v2}, java/lang/Object/<init>()V
30 iput-wide v0, v2, dot.junit.opcodes.iget_wide.d.T_iget_wide_1.i1 J
33 iput-wide v0, v2, dot.junit.opcodes.iget_wide.d.T_iget_wide_1.p1 J
36 iput-wide v0, v2, dot.junit.opcodes.iget_wide.d.T_iget_wide_1.pvt1 J
44 iget-wide v1, v2, dot.junit.opcodes.iget_wide.d.T_iget_wide_1.i1 J
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_wide_16/d/
DT_move_wide_16_1.d30 const-wide v2, 5678
33 move-wide/16 v4002, v2
40 move-wide/16 v2, v4002
44 cmp-long v10, v2, v4
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/return_object/d/
DT_return_object_8.d30 new-instance v2, java/lang/Object
31 invoke-direct {v2}, java/lang/Object/<init>()V
32 monitor-enter v2
41 invoke-direct {v2}, dot/junit/opcodes/return_object/d/T_return_object_8/test()Ljava/lang/String;

12345678910>>...24