HomeSort by relevance Sort by last modified time
    Searched full:equals (Results 401 - 425 of 5662) sorted by null

<<11121314151617181920>>

  /cts/tests/tests/media/src/android/media/cts/
MediaScannerNotificationTest.java 83 if (intent.getAction().equals(mAction)) {
84 if (mAction.equals(Intent.ACTION_MEDIA_SCANNER_STARTED)) {
86 } else if (mAction.equals(Intent.ACTION_MEDIA_SCANNER_FINISHED)) {
  /cts/tests/tests/telephony/src/android/telephony/gsm/cts/
GsmCellLocationTest.java 83 method = "equals",
108 assertFalse(gsmCellLocation.equals(testGCSEquals));
110 assertTrue(gsmCellLocation.equals(testGCSEquals));
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
NameValuePair.java 68 public boolean equals(Object other) { method in class:NameValuePair
75 return name.equals(otherPair.name)
76 && value.equals(otherPair.value);
  /dalvik/dx/src/com/android/dx/rop/annotation/
NameValuePair.java 62 public boolean equals(Object other) { method in class:NameValuePair
69 return name.equals(otherPair.name)
70 && value.equals(otherPair.value);
  /development/samples/Home/src/com/example/android/home/
ApplicationInfo.java 62 public boolean equals(Object o) { method in class:ApplicationInfo
71 return title.equals(that.title) &&
72 intent.getComponent().getClassName().equals(
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanismExceptionTest.java 71 assertTrue(createErr(tE, e), tE.equals(e));
90 assertTrue(createErr(tE, e), tE.equals(e));
108 assertTrue(createErr(tE, e), tE.equals(e));
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LevelTest.java 219 * Test equals when two objects are equal.
229 * Test equals when two objects are not equal.
234 assertFalse(l1.equals(l2));
235 assertFalse(l2.equals(l1));
239 * Test equals when the other object is null.
242 assertFalse(Level.ALL.equals(null));
246 * Test equals when the other object is not an instance of Level.
249 assertFalse(Level.ALL.equals(new Object()));
253 * Test equals when the other object is itself.
256 assertTrue(Level.ALL.equals(Level.ALL))
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLDecoderTest.java 45 URLEncoder.encode(URL)).equals(URL));
47 URLEncoder.encode(URL2)).equals(URL2));
49 URLEncoder.encode(URL3)).equals(URL3));
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyFactory2Test.java 72 if (alg.equals("RSA")) {
112 boolean samePrivate = Arrays.equals(keys.getPrivate()
152 boolean samePublic = Arrays.equals(keys.getPublic()
178 fact.getAlgorithm().equals(keyfactAlgs[i]));
264 boolean samePublic = Arrays.equals(keys.getPublic()
266 boolean samePrivate = Arrays.equals(keys.getPrivate()
277 encodedSpec.getClass().equals(X509EncodedKeySpec.class));
282 .equals(PKCS8EncodedKeySpec.class));
384 if (algName.equals("RSA")) {
387 if (algName.equals("DSA"))
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/generators/
DHParametersHelper.java 76 // while (g.modPow(TWO, p).equals(ONE) || g.modPow(q, p).equals(ONE));
88 while (g.equals(ONE));
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCERSAPrivateKey.java 87 public boolean equals(Object o) method in class:JCERSAPrivateKey
101 return getModulus().equals(key.getModulus())
102 && getPrivateExponent().equals(key.getPrivateExponent());
JCERSAPublicKey.java 105 public boolean equals(Object o) method in class:JCERSAPublicKey
119 return getModulus().equals(key.getModulus())
120 && getPublicExponent().equals(key.getPublicExponent());
  /external/guava/src/com/google/common/base/
Predicate.java 54 * returns exactly the same value. Thus, {@code predicate1.equals(predicate2)}
60 * {@link Object#equals}.
62 boolean equals(@Nullable Object obj); method in interface:Predicate
  /external/guava/src/com/google/common/collect/
SingletonImmutableSet.java 61 return element.equals(target);
85 @Override public boolean equals(@Nullable Object object) { method in class:SingletonImmutableSet
91 return that.size() == 1 && element.equals(that.iterator().next());
  /external/javassist/src/main/javassist/bytecode/stackmap/
TypeData.java 49 public abstract boolean equals(Object obj); method in class:TypeData
87 public boolean equals(Object obj) { method in class:TypeData.BasicType
188 public boolean equals(Object obj) { method in class:TypeData.TypeName
192 return getExpected().equals(tn.getExpected());
244 else if (!origName.equals(td.getName()))
258 else if (oldName.equals(typeName))
261 && oldName.equals("[Ljava.lang.Object;")) {
356 if ("null".equals(getExpected()))
367 if ("null".equals(type))
458 public boolean equals(Object obj) method in class:TypeData.UninitData
503 public boolean equals(Object obj) { method in class:TypeData.UninitThis
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PUserDatabase.java 64 if((databaseName==null)||(databaseName.equals(" ")))
88 public boolean equals(Object other) method in class:PUserDatabase
90 return (other instanceof PUserDatabaseHeader) && super.equals(other);
  /external/proguard/src/proguard/classfile/attribute/preverification/
SameOneFrame.java 91 public boolean equals(Object object) method in class:SameOneFrame
93 if (!super.equals(object))
101 this.stackItem.equals(other.stackItem);
  /external/protobuf/examples/
AddPerson.java 43 if (type.equals("mobile")) {
45 } else if (type.equals("home")) {
47 } else if (type.equals("work")) {
  /frameworks/base/cmds/svc/src/com/android/commands/svc/
DataCommand.java 48 if ("enable".equals(args[1])) {
51 } else if ("disable".equals(args[1])) {
54 } else if ("prefer".equals(args[1])) {
WifiCommand.java 48 if ("enable".equals(args[1])) {
51 } else if ("disable".equals(args[1])) {
54 } else if ("prefer".equals(args[1])) {
  /frameworks/base/core/java/com/android/internal/util/
Objects.java 32 * equal according to {@link Object#equals(Object)}.
37 * to the {@code equals()} contract.
40 return a == b || (a != null && a.equals(b));
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalReceiver.java 36 if (BroadcastTest.BROADCAST_FAIL_REGISTER.equals(intent.getAction())) {
45 } else if (BroadcastTest.BROADCAST_FAIL_BIND.equals(intent.getAction())) {
61 } else if (LaunchpadActivity.BROADCAST_REPEAT.equals(intent.getAction())) {
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
ListTestCaseNames.java 84 public boolean equals(Object otherObj) { method in class:ListTestCaseNames.TestDescriptor
87 return otherDesc.getClassName().equals(this.getClassName()) &&
88 otherDesc.getTestName().equals(this.getTestName());
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
LayoutTestsAutoRunner.java 70 this.mRebaseline = (r != null && r.toLowerCase().equals("true"));
74 && logtime.toLowerCase().equals("true"));
78 && drawTime.toLowerCase().equals("true"));
  /frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
TestAppWidgetProvider.java 40 if (AppWidgetManager.ACTION_APPWIDGET_ENABLED.equals(action)) {
43 else if (AppWidgetManager.ACTION_APPWIDGET_DISABLED.equals(action)) {
46 else if (AppWidgetManager.ACTION_APPWIDGET_UPDATE.equals(action)) {

Completed in 660 milliseconds

<<11121314151617181920>>