Searched refs:equals (Results 1 - 25 of 2848) sorted by relevance

1234567891011>>

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHttpMethod.java27 return method.equals("POST")
28 || method.equals("PATCH")
29 || method.equals("PUT")
30 || method.equals("DELETE");
34 return method.equals("POST")
35 || method.equals("PUT")
36 || method.equals("PATCH")
37 || method.equals("DELETE"); // Permitted as spec is ambiguous.
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_NetworkInterface.java35 .equals("Teredo Tunneling Pseudo-Interface"))
37 .equals("6to4 Tunneling Pseudo-Interface"))
39 .equals("Automatic Tunneling Pseudo-Interface"))
41 .equals("Loopback Pseudo-Interface"))
42 || (theInterface.getDisplayName().equals("MS TCP Loopback interface"))) {
48 if ((theInterface.getDisplayName().equals("lo"))
49 || (theInterface.getDisplayName().equals("teredo"))) {
/external/chromium_org/third_party/WebKit/Tools/qunit/test/
H A Dsame.js5 equals(QUnit.equiv(null, null), true, "null");
6 equals(QUnit.equiv(null, {}), false, "null");
7 equals(QUnit.equiv(null, undefined), false, "null");
8 equals(QUnit.equiv(null, 0), false, "null");
9 equals(QUnit.equiv(null, false), false, "null");
10 equals(QUnit.equiv(null, ''), false, "null");
11 equals(QUnit.equiv(null, []), false, "null");
13 equals(QUnit.equiv(undefined, undefined), true, "undefined");
14 equals(QUnit.equiv(undefined, null), false, "undefined");
15 equals(QUni
[all...]
/external/jdiff/src/jdiff/
H A DOptions.java39 if (opt.equals("-authorid")) return 2;
40 if (opt.equals("-versionid")) return 2;
41 if (opt.equals("-d")) return 2;
42 if (opt.equals("-classlist")) return 1;
43 if (opt.equals("-title")) return 2;
44 if (opt.equals("-docletid")) return 1;
45 if (opt.equals("-evident")) return 2;
46 if (opt.equals("-skippkg")) return 2;
47 if (opt.equals("-skipclass")) return 2;
48 if (opt.equals("
[all...]
/external/nist-sip/java/gov/nist/javax/sip/
H A DLogRecord.java12 public abstract boolean equals(Object other); method in interface:LogRecord
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DCollectionEqualsTester.java22 * Tests {@link java.util.Collection#equals}.
31 collection.equals(collection));
37 collection.equals(null));
44 collection.equals("huh?"));
/external/proguard/src/proguard/evaluation/value/
H A DConvertedByteValue.java45 public boolean equals(Object object) method in class:ConvertedByteValue
48 super.equals(object) &&
49 this.value.equals(((ConvertedByteValue)object).value);
H A DConvertedCharacterValue.java45 public boolean equals(Object object) method in class:ConvertedCharacterValue
48 super.equals(object) &&
49 this.value.equals(((ConvertedCharacterValue)object).value);
H A DConvertedDoubleValue.java45 public boolean equals(Object object) method in class:ConvertedDoubleValue
48 super.equals(object) &&
49 this.value.equals(((ConvertedDoubleValue)object).value);
H A DConvertedFloatValue.java45 public boolean equals(Object object) method in class:ConvertedFloatValue
48 super.equals(object) &&
49 this.value.equals(((ConvertedFloatValue)object).value);
H A DConvertedIntegerValue.java45 public boolean equals(Object object) method in class:ConvertedIntegerValue
48 super.equals(object) &&
49 this.value.equals(((ConvertedIntegerValue)object).value);
H A DConvertedLongValue.java45 public boolean equals(Object object) method in class:ConvertedLongValue
48 super.equals(object) &&
49 this.value.equals(((ConvertedLongValue)object).value);
H A DConvertedShortValue.java45 public boolean equals(Object object) method in class:ConvertedShortValue
48 super.equals(object) &&
49 this.value.equals(((ConvertedShortValue)object).value);
H A DIdentifiedDoubleValue.java46 public boolean equals(Object object) method in class:IdentifiedDoubleValue
49 super.equals(object) &&
50 this.valuefactory.equals(((IdentifiedDoubleValue)object).valuefactory) &&
H A DIdentifiedFloatValue.java46 public boolean equals(Object object) method in class:IdentifiedFloatValue
49 super.equals(object) &&
50 this.valuefactory.equals(((IdentifiedFloatValue)object).valuefactory) &&
H A DIdentifiedIntegerValue.java46 public boolean equals(Object object) method in class:IdentifiedIntegerValue
49 super.equals(object) &&
50 this.valuefactory.equals(((IdentifiedIntegerValue)object).valuefactory) &&
H A DIdentifiedLongValue.java46 public boolean equals(Object object) method in class:IdentifiedLongValue
49 super.equals(object) &&
50 this.valuefactory.equals(((IdentifiedLongValue)object).valuefactory) &&
H A DNegatedDoubleValue.java52 public boolean equals(Object object) method in class:NegatedDoubleValue
55 super.equals(object) &&
56 this.doubleValue.equals(((NegatedDoubleValue)object).doubleValue);
H A DNegatedFloatValue.java52 public boolean equals(Object object) method in class:NegatedFloatValue
55 super.equals(object) &&
56 this.floatValue.equals(((NegatedFloatValue)object).floatValue);
H A DNegatedIntegerValue.java52 public boolean equals(Object object) method in class:NegatedIntegerValue
55 super.equals(object) &&
56 this.integerValue.equals(((NegatedIntegerValue)object).integerValue);
/external/chromium_org/chrome/browser/resources/print_preview/data/
H A Dprintable_area.js53 equals: function(other) {
55 this.origin_.equals(other.origin_) &&
56 this.size_.equals(other.size_);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DUtils.java65 if (XMPConst.X_DEFAULT.equals(value))
165 if (NS_DC.equals(schema))
167 if ("dc:format".equals(prop) || "dc:language".equals(prop))
172 else if (NS_XMP.equals(schema))
174 if ("xmp:BaseURL".equals(prop) || "xmp:CreatorTool".equals(prop)
175 || "xmp:Format".equals(prop) || "xmp:Locale".equals(prop)
176 || "xmp:MetadataDate".equals(pro
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DDHPrivateKeyParameters.java29 public boolean equals( method in class:DHPrivateKeyParameters
39 return other.getX().equals(this.x) && super.equals(obj);
H A DDHPublicKeyParameters.java29 public boolean equals( method in class:DHPublicKeyParameters
39 return other.getY().equals(y) && super.equals(obj);
/external/chromium_org/base/android/java/src/org/chromium/base/
H A DLocaleUtils.java32 if ("iw".equals(language)) {
34 } else if ("in".equals(language)) {
36 } else if ("tl".equals(language)) {

Completed in 5982 milliseconds

1234567891011>>