HomeSort by relevance Sort by last modified time
    Searched refs:equals (Results 151 - 175 of 4449) sorted by null

1 2 3 4 5 67 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/
JTidyDOMImplementation.java 45 if (feature.equals("Core")) {
46 return version == null || version.equals("1.0") || version.equals("2.0");
  /libcore/luni/src/main/java/java/security/spec/
ECPoint.java 88 public boolean equals(Object other) { method in class:ECPoint
96 return this.affineX.equals(otherPoint.affineX) &&
97 this.affineY.equals(otherPoint.affineY);
  /libcore/luni/src/test/java/libcore/java/util/
OldFormattableTest.java 52 assertTrue(fmt.format("%1.1s", mf).toString().equals("single precision "));
53 assertTrue(fmt.format("%2.1s", mf).toString().equals("single precision single precision "));
54 assertTrue(fmt.format("%2.2s", mf).toString().equals("single precision single precision double precision "));
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URLEncoderTest.java 39 URLEncoder.encode(URL)).equals(URL));
41 URLEncoder.encode(URL2)).equals(URL2));
43 URLEncoder.encode(URL3)).equals(URL3));
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
FrontDoor.java 32 if ("com.android.loaderapp.FrontDoorNormal".equals(componentName)) {
35 } else if ("com.android.loaderapp.FrontDoorXLarge".equals(componentName)) {
38 } else if ("com.android.loaderapp.FrontDoorGroupsXLarge".equals(componentName)) {
  /packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/
Word.java 59 public boolean equals(Object o) { method in class:Word
62 return mFrequency == w.mFrequency && mWord.equals(w.mWord)
63 && mBigrams.equals(w.mBigrams);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/
TestIdentifier.java 60 public boolean equals(Object other) { method in class:TestIdentifier
65 return getClassName().equals(otherTest.getClassName()) &&
66 getTestName().equals(otherTest.getTestName());
  /frameworks/base/cmds/am/src/com/android/commands/am/
Am.java 106 if (op.equals("start")) {
108 } else if (op.equals("startservice")) {
110 } else if (op.equals("force-stop")) {
112 } else if (op.equals("kill")) {
114 } else if (op.equals("kill-all")) {
116 } else if (op.equals("instrument")) {
118 } else if (op.equals("broadcast")) {
120 } else if (op.equals("profile")) {
122 } else if (op.equals("dumpheap")) {
124 } else if (op.equals("set-debug-app"))
    [all...]
  /cts/tools/vm-tests/src/util/build/
JarBuildStep.java 42 if (!inputFile.fileName.equals(tempFile)) {
89 public boolean equals(Object obj) { method in class:JarBuildStep
90 if (super.equals(obj)) {
92 return inputFile.equals(other.inputFile)
93 && outputFile.equals(other.outputFile)
94 && destFileName.equals(other.destFileName);
  /cts/tools/vm-tests-tf/src/util/build/
JarBuildStep.java 42 if (!inputFile.fileName.equals(tempFile)) {
89 public boolean equals(Object obj) { method in class:JarBuildStep
90 if (super.equals(obj)) {
92 return inputFile.equals(other.inputFile)
93 && outputFile.equals(other.outputFile)
94 && destFileName.equals(other.destFileName);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertPathTest.java 73 assertTrue((cp1.hashCode() == cp2.hashCode()) && cp1.equals(cp2));
85 * Test #1 for <code>equals(Object)</code> method<br>
86 * Assertion: object equals to itself
90 assertTrue(cp1.equals(cp1));
94 * Test for <code>equals(Object)</code> method<br>
95 * Assertion: object equals to other <code>CertPath</code>
101 assertTrue(cp1.equals(cp2) && cp2.equals(cp1));
105 * Test for <code>equals(Object)</code> method<br>
106 * Assertion: object not equals to <code>null</code
    [all...]
X509CRLEntryTest.java 91 * equals(Object other) method testing. Tests the correctness of equal
116 tbt_crlentry.equals(tbt_crlentry));
118 assertEquals("The CRL Entries with equals encoded form should be equal",
122 tbt_crlentry_1.equals(tbt_crlentry));
124 assertEquals("The CRL Entries with equals encoded form should be equal",
128 tbt_crlentry.equals(tbt_crlentry_2));
131 tbt_crlentry.equals(null));
135 tbt_crlentry.equals(tbt_crlentry_3));
136 assertFalse("The CRL Entries should not be equals to the object "
138 tbt_crlentry.equals(new Object()))
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/javax/security/cert/
CertificateTest.java 74 * equals(Object obj) method testing. Tests the correctness of equal
105 tbt_cert.equals(tbt_cert));
111 tbt_cert_1.equals(tbt_cert));
117 tbt_cert.equals(tbt_cert_2));
120 tbt_cert.equals(null));
123 + "should not be equal", tbt_cert.equals(tbt_cert_3));
124 assertFalse("The Certificates should not be equals to the object "
126 tbt_cert.equals(new Object()));
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/
ProviderConfigurationPermission.java 66 if (s.equals(THREAD_LOCAL_EC_IMPLICITLY_CA_STR))
70 else if (s.equals(EC_IMPLICITLY_CA_STR))
74 else if (s.equals(ALL_STR))
101 if (!this.getName().equals(permission.getName()))
111 public boolean equals( method in class:ProviderConfigurationPermission
123 return this.permissionMask == other.permissionMask && this.getName().equals(other.getName());
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PServedUser.java 70 if(registrationState.equals("reg")||registrationState.equals("unreg"))
100 if((sessionCase.equals("orig"))||(sessionCase.equals("term")))
133 retval.append(SEMICOLON).append(ParameterNamesIms.REGISTRATION_STATE).append(EQUALS)
137 retval.append(SEMICOLON).append(ParameterNamesIms.SESSION_CASE).append(EQUALS)
148 public boolean equals(Object other) method in class:PServedUser
153 return this.getAddress().equals(((PServedUser) other).getAddress());
  /frameworks/base/drm/java/android/drm/
DrmRights.java 62 if (null != accountId && !accountId.equals("")) {
79 if (null != accountId && !accountId.equals("")) {
83 if (null != subscriptionId && !subscriptionId.equals("")) {
120 if (null != accountId && !accountId.equals("")) {
125 if (null != subscriptionId && !subscriptionId.equals("")) {
175 return (null != mMimeType && !mMimeType.equals("")
  /libcore/luni/src/test/java/tests/api/javax/security/cert/
CertificateTest.java 80 * equals(Object obj) method testing. Tests the correctness of equal
111 .equals(tbt_cert));
118 .equals(tbt_cert));
125 .equals(tbt_cert_2));
128 .equals(null));
131 + "should not be equal", tbt_cert.equals(tbt_cert_3));
132 assertFalse("The Certificates should not be equals to the object "
134 .equals(new Object()));
  /packages/apps/Contacts/src/com/android/contacts/
TypePrecedence.java 101 if (mimetype.equals(Phone.CONTENT_ITEM_TYPE)) {
103 } else if (mimetype.equals(Email.CONTENT_ITEM_TYPE)) {
105 } else if (mimetype.equals(StructuredPostal.CONTENT_ITEM_TYPE)) {
107 } else if (mimetype.equals(Im.CONTENT_ITEM_TYPE)) {
109 } else if (mimetype.equals(Constants.MIME_TYPE_VIDEO_CHAT)) {
111 } else if (mimetype.equals(Organization.CONTENT_ITEM_TYPE)) {
  /packages/apps/Contacts/src/com/android/contacts/calllog/
PhoneNumberHelper.java 40 || number.equals(CallerInfo.UNKNOWN_NUMBER)
41 || number.equals(CallerInfo.PRIVATE_NUMBER)
42 || number.equals(CallerInfo.PAYPHONE_NUMBER));
60 if (number.equals(CallerInfo.UNKNOWN_NUMBER)) {
63 if (number.equals(CallerInfo.PRIVATE_NUMBER)) {
66 if (number.equals(CallerInfo.PAYPHONE_NUMBER)) {
  /packages/apps/MusicFX/src/com/android/musicfx/
ControlPanelReceiver.java 64 if (action.equals(AudioEffect.ACTION_OPEN_AUDIO_EFFECT_CONTROL_SESSION)) {
76 if (action.equals(AudioEffect.ACTION_CLOSE_AUDIO_EFFECT_CONTROL_SESSION)) {
82 if (action.equals("AudioEffect.ACTION_SET_PARAM")) {
85 if (param.equals("GLOBAL_ENABLED")) {
93 if (action.equals("AudioEffect.ACTION_GET_PARAM")) {
96 if (param.equals("GLOBAL_ENABLED")) {
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
TypePrecedence.java 94 if (mimetype.equals(Phone.CONTENT_ITEM_TYPE)) {
96 } else if (mimetype.equals(Constants.MIME_SMS_ADDRESS)) {
98 } else if (mimetype.equals(Email.CONTENT_ITEM_TYPE)) {
100 } else if (mimetype.equals(StructuredPostal.CONTENT_ITEM_TYPE)) {
102 } else if (mimetype.equals(Im.CONTENT_ITEM_TYPE)) {
104 } else if (mimetype.equals(Organization.CONTENT_ITEM_TYPE)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
AttributeSortOrder.java 56 if (XMLNS.equals(attr1.getPrefix())) {
57 if (XMLNS.equals(attr2.getPrefix())) {
61 } else if (XMLNS.equals(attr2.getPrefix())) {
91 if (XMLNS.equals(attr1.getPrefix())) {
92 if (XMLNS.equals(attr2.getPrefix())) {
96 } else if (XMLNS.equals(attr2.getPrefix())) {
  /cts/tools/dasm/src/java_cup/
terminal_set.java 68 return equals(EMPTY);
110 return copy_other.equals(other._elements);
178 return !_elements.equals(copy);
198 return !copy.equals(other._elements);
204 public boolean equals(terminal_set other) method in class:terminal_set
209 return _elements.equals(other._elements);
215 public boolean equals(Object other) method in class:terminal_set
220 return equals((terminal_set)other);
  /cts/tools/signature-tools/src/signature/model/impl/
SigTypeVariableReference.java 39 public boolean equals(Object obj) { method in class:SigTypeVariableReference
41 return getTypeVariableDefinition().equals(
  /cts/tools/signature-tools/src/signature/model/util/
ModelUtil.java 46 if (qualifiedClassName.equals(clazz.getName())) {
56 if (qualifiedTypeName.equals(annotation.getType()
67 if (elementName.equals(element.getDeclaringField().getName())) {
76 if (fieldName.equals(field.getName())) {
86 if (fieldName.equals(field.getName())) {
105 if (packageName.equals(aPackage.getName())) {
165 if ("java.lang".equals(clazz.getPackageName())) {
166 return "Object".equals(clazz.getName());

Completed in 1840 milliseconds

1 2 3 4 5 67 8 91011>>