/cts/hostsidetests/api/src/com/android/cts/api/ |
D | DefinedField.java | 50 public int compareTo(DefinedField o) { in compareTo() argument 51 if (o != null) { in compareTo() 52 return getFullSignature().compareTo(o.getFullSignature()); in compareTo() 67 public boolean equals(Object o) { in equals() argument 68 if (o != null && o instanceof DefinedField) { in equals() 69 return getFullSignature().equals(((DefinedField) o).getFullSignature()); in equals()
|
D | DefinedMethod.java | 50 public int compareTo(DefinedMethod o) { in compareTo() argument 51 if (o != null) { in compareTo() 52 return getFullSignature().compareTo(o.getFullSignature()); in compareTo() 67 public boolean equals(Object o) { in equals() argument 68 if (o != null && o instanceof DefinedMethod) { in equals() 69 return getFullSignature().equals(((DefinedMethod) o).getFullSignature()); in equals()
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_exit/ |
D | Test_monitor_exit.java | 32 final Object o = new Object(); in testE1() local 34 Runnable r = new TestRunnable(t, o); in testE1() 35 synchronized (o) { in testE1() 100 private Object o; field in TestRunnable 102 public TestRunnable(T_monitor_exit_1 t, Object o) { in TestRunnable() argument 104 this.o = o; in TestRunnable() 109 t.run(o); in run()
|
/cts/tests/tests/jni/libjnitest/ |
D | macroized_tests.c | 191 jobject o = getStandardInstance(env); in help_CallBooleanMethod() local 204 result = CALL(CallBooleanMethod, o, method); in help_CallBooleanMethod() 208 result = CALL(CallBooleanMethodA, o, method, NULL); in help_CallBooleanMethod() 212 result = CALL(CallBooleanMethodV, o, method, args); in help_CallBooleanMethod() 216 result = CALL(CallNonvirtualBooleanMethod, o, InstanceFromNative, in help_CallBooleanMethod() 221 result = CALL(CallNonvirtualBooleanMethodA, o, InstanceFromNative, in help_CallBooleanMethod() 226 result = CALL(CallNonvirtualBooleanMethodV, o, InstanceFromNative, in help_CallBooleanMethod() 296 jobject o = getStandardInstance(env); in help_CallByteMethod() local 309 result = CALL(CallByteMethod, o, method); in help_CallByteMethod() 313 result = CALL(CallByteMethodA, o, method, NULL); in help_CallByteMethod() [all …]
|
/cts/tests/tests/net/src/android/net/wifi/aware/cts/ |
D | TestUtils.java | 51 public boolean equals(Object o) { in equals() argument 52 if (this == o) { in equals() 56 if (!(o instanceof MacWrapper)) { in equals() 60 MacWrapper lhs = (MacWrapper) o; in equals()
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/if_eqz/d/ |
D | T_if_eqz_3.java | 5 public int run(float o) { in run() argument 6 return o == 0 ? 1 : 1234; in run()
|
D | T_if_eqz_2.java | 5 public int run(String o) { in run() argument 6 return o == null ? 1 : 1234; in run()
|
D | T_if_eqz_4.java | 5 public int run(Object o) { in run() argument 6 return o == null ? 1 : 1234; in run()
|
/cts/hostsidetests/jvmti/base/run-test-based-app/src/art/ |
D | Main.java | 23 public static native void setTag(Object o, long tag); in setTag() argument 25 public static native long getTag(Object o); in getTag() argument
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/if_nez/d/ |
D | T_if_nez_2.java | 5 public int run(String o) { in run() argument 6 return o != null ? 1 : 1234; in run()
|
D | T_if_nez_4.java | 5 public int run(Object o) { in run() argument 6 return o != null ? 1 : 1234; in run()
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_exit/d/ |
D | T_monitor_exit_1.java | 23 public void run(Object o) { in run() argument 24 synchronized(o) { in run()
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_enter/d/ |
D | T_monitor_enter_4.java | 22 Object o = null; in run() local 23 synchronized(o) { in run()
|
D | T_monitor_enter_3.java | 22 Object o = null; in run() local 23 synchronized(o) { in run()
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/instance_of/d/ |
D | T_instance_of_1.java | 21 public boolean run(Object o) { in run() argument 22 return o instanceof String; in run()
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/check_cast/d/ |
D | T_check_cast_1.java | 21 public String run(Object o) { in run() argument 22 return (String)o; in run()
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_interface_range/d/ |
D | T_invoke_interface_range_1.java | 21 public int run(Comparable c, Object o) { in run() argument 22 return c.compareTo(o); in run()
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_interface/d/ |
D | T_invoke_interface_1.java | 21 public int run(Comparable c, Object o) { in run() argument 22 return c.compareTo(o); in run()
|
/cts/hostsidetests/jvmti/redefining/app/src/art/ |
D | Main.java | 28 public static native void setTag(Object o, long tag); in setTag() argument 30 public static native long getTag(Object o); in getTag() argument
|
/cts/hostsidetests/jvmti/tagging/app/src/art/ |
D | Main.java | 28 public static native void setTag(Object o, long tag); in setTag() argument 30 public static native long getTag(Object o); in getTag() argument
|
/cts/hostsidetests/jvmti/allocation-tracking/app/src/art/ |
D | Main.java | 28 public static native void setTag(Object o, long tag); in setTag() argument 30 public static native long getTag(Object o); in getTag() argument
|
/cts/tests/camera/utils/src/android/hardware/camera2/cts/helpers/ |
D | InMatcher.java | 46 public boolean matches(Object o) { in matches() argument 47 T obj = (T) o; in matches() 49 if (Objects.equals(o, elem)) { in matches()
|
/cts/tests/tests/media/assets/ |
D | segment000000.ts | 11 �����"�_Q��!�A���q;���3�j:PK~.o'�"il���+��G��7ͩqg�w�N�~q�D�� � 16 ��s�~�}�� ��p��?�ߥDWs1�o��=��|;I<|m_A��Ԑ��A㞁��+��k����� 37 …~��������*TP/�&��H��m5=1�2�k�ﭟ�h¹0� >o2��f�0�>�Ͻ`C��G<s7�%B�����<��kJ�=o����>���F 38 ;�ߕ^���~�$I��Q�V��̫����xA #;y&�a�ڣ£~o�v{���U��>�0J��j���� 39 �ՃC�)�%� /�zJ��2����d���d�EQ�)��@2�7�9os'9Bː�-*ݫ2C�.2Q�(WGg���&E��R��������ۮ;�¹��6��,�… 44 ��.�>�����S}�������tM���T+�+H�`G#o'��Z���y'�'������㤯!q- ��pJ�߈H�N���p��·�������V… 57 …��_Ǵ���9V�j�ό\}G��¸k�`c�y�s�w�e��C���w�V�0��+�&���&z�`��ظWk�:���0'�k� I��~���o�� /�, 97 …��uzO_��;2��������+��h!˛ɣb�D��s�z���L�����g�\͂�X�0��:����;����!���y�G�ohl�<st��K�!F8p[cf��… 144 …���"A/����\e�4� +a(y< M�z�n��)kG �Em�}�y��{j�Y���hg2��U��� �".Q`o��Ꮾ��AT�aU���,���醸�z… 146 …B#$[��U� A_�䱺�\ �\�R��ʐ5t����W/��RR@l�J���߄�5_��������:�����+�'��o��u��Uqo{�Jf��U��… [all …]
|
/cts/tests/security/src/android/keystore/cts/ |
D | AttestationPackageInfo.java | 79 public boolean equals(Object o) { in equals() argument 80 return (o instanceof AttestationPackageInfo) in equals() 81 && (0 == compareTo((AttestationPackageInfo) o)); in equals()
|
/cts/libs/view/src/com/android/view/ |
D | Position.java | 93 public boolean equals(Object o) { in equals() argument 94 if (!(o instanceof Position)) { in equals() 97 Position other = (Position) o; in equals()
|