Searched refs:other (Results 1 - 25 of 175) sorted by relevance

1234567

/dalvik/tests/075-verification-error/src/other/
H A DInaccessibleMethod.java17 package other; package
H A DInaccessibleClass.java17 package other; package
/dalvik/tests/075-verification-error/src2/other/
H A DInaccessibleMethod.java17 package other; package
H A DInaccessibleClass.java17 package other; package
H A DMutant.java17 package other; package
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstLiteral32.java38 public final boolean equals(Object other) { argument
39 return (other != null) &&
40 (getClass() == other.getClass()) &&
41 bits == ((CstLiteral32) other).bits;
52 protected int compareTo0(Constant other) { argument
53 int otherBits = ((CstLiteral32) other).bits;
H A DCstLiteral64.java38 public final boolean equals(Object other) { argument
39 return (other != null) &&
40 (getClass() == other.getClass()) &&
41 bits == ((CstLiteral64) other).bits;
52 protected int compareTo0(Constant other) { argument
53 long otherBits = ((CstLiteral64) other).bits;
H A DConstant.java48 public final int compareTo(Constant other) { argument
50 Class otherClazz = other.getClass();
56 return compareTo0(other);
63 * @param other {@code non-null;} the instance to compare to
67 protected abstract int compareTo0(Constant other); argument
H A DCstAnnotation.java45 public boolean equals(Object other) { argument
46 if (! (other instanceof CstAnnotation)) {
50 return annotation.equals(((CstAnnotation) other).annotation);
61 protected int compareTo0(Constant other) { argument
62 return annotation.compareTo(((CstAnnotation) other).annotation);
H A DCstString.java53 public boolean equals(Object other) { argument
54 if (!(other instanceof CstString)) {
58 return string.equals(((CstString) other).string);
69 protected int compareTo0(Constant other) { argument
70 return string.compareTo(((CstString) other).string);
H A DCstKnownNull.java38 public boolean equals(Object other) { argument
39 return (other instanceof CstKnownNull);
50 protected int compareTo0(Constant other) { argument
/dalvik/tests/060-reflection-security/src/other/
H A DBlort.java1 package other; package
/dalvik/tests/064-field-access/src/other/
H A DOtherPackage.java3 package other; package
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/params/
H A DDHValidationParameters.java24 DHValidationParameters other = (DHValidationParameters)o;
26 if (other.counter != this.counter)
31 if (other.seed.length != this.seed.length)
36 for (int i = 0; i != other.seed.length; i++)
38 if (other.seed[i] != this.seed[i])
H A DDSAValidationParameters.java34 DSAValidationParameters other = (DSAValidationParameters)o;
36 if (other.counter != this.counter)
41 if (other.seed.length != this.seed.length)
46 for (int i = 0; i != other.seed.length; i++)
48 if (other.seed[i] != this.seed[i])
/dalvik/dx/src/com/android/dx/rop/code/
H A DSourcePosition.java97 public boolean equals(Object other) { argument
98 if (!(other instanceof SourcePosition)) {
102 if (this == other) {
106 SourcePosition pos = (SourcePosition) other;
121 * @param other {@code non-null;} the instance to compare to
124 public boolean sameLine(SourcePosition other) { argument
125 return (line == other.line);
132 * @param other {@code non-null;} the instance to compare to
135 public boolean sameLineAndFile(SourcePosition other) { argument
136 return (line == other
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DCatchTable.java64 public int compareTo(CatchTable other) { argument
65 if (this == other) {
71 int otherSize = other.size();
76 Entry otherEntry = other.get(i);
140 public boolean equals(Object other) { argument
141 if (other instanceof Entry) {
142 return (compareTo((Entry) other) == 0);
149 public int compareTo(Entry other) { argument
150 if (start < other.start) {
152 } else if (start > other
[all...]
/dalvik/libcore/security/src/main/java/java/security/spec/
H A DECPoint.java85 * @param other
90 public boolean equals(Object other) { argument
91 if (this == other) {
94 if (other instanceof ECPoint) {
96 ECPoint otherPoint = (ECPoint)other;
101 return other == POINT_INFINITY;
/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_GetPutFields.java71 SimpleClass other = (SimpleClass) obj;
72 return (a == other.getA() && b.equals(other.getB()));
93 Support_GetPutFields other = (Support_GetPutFields) obj;
94 return (booleanValue == other.booleanValue &&
95 byteValue == other.byteValue &&
96 charValue == other.charValue &&
97 doubleValue == other.doubleValue &&
98 floatValue == other.floatValue &&
99 longValue == other
[all...]
H A DSupport_GetPutFieldsDefaulted.java82 SimpleClass other = (SimpleClass) obj;
83 return (a == other.getA() && b.equals(other.getB()));
104 Support_GetPutFieldsDefaulted other = (Support_GetPutFieldsDefaulted) obj;
105 return (booleanValue == other.booleanValue &&
106 byteValue == other.byteValue &&
107 charValue == other.charValue &&
108 doubleValue == other.doubleValue &&
109 floatValue == other.floatValue &&
110 longValue == other
[all...]
H A DSupport_GetPutFieldsDeprecated.java73 SimpleClass other = (SimpleClass) obj;
74 return (a == other.getA() && b.equals(other.getB()));
95 Support_GetPutFields other = (Support_GetPutFields) obj;
96 return (booleanValue == other.booleanValue &&
97 byteValue == other.byteValue &&
98 charValue == other.charValue &&
99 doubleValue == other.doubleValue &&
100 floatValue == other.floatValue &&
101 longValue == other
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/cms/
H A DKEKIdentifier.java18 private OtherKeyAttribute other; field in class:KEKIdentifier
23 OtherKeyAttribute other)
27 this.other = other;
46 other = OtherKeyAttribute.getInstance(seq.getObjectAt(1));
51 other = OtherKeyAttribute.getInstance(seq.getObjectAt(2));
108 return other;
117 * other OtherKeyAttribute OPTIONAL
132 if (other != null)
134 v.add(other);
20 KEKIdentifier( byte[] keyIdentifier, DERGeneralizedTime date, OtherKeyAttribute other) argument
[all...]
H A DRecipientKeyIdentifier.java17 private OtherKeyAttribute other; field in class:RecipientKeyIdentifier
22 OtherKeyAttribute other)
26 this.other = other;
46 other = OtherKeyAttribute.getInstance(seq.getObjectAt(2));
51 other = OtherKeyAttribute.getInstance(seq.getObjectAt(2));
105 return other;
115 * other OtherKeyAttribute OPTIONAL
132 if (other != null)
134 v.add(other);
19 RecipientKeyIdentifier( ASN1OctetString subjectKeyIdentifier, DERGeneralizedTime date, OtherKeyAttribute other) argument
[all...]
/dalvik/dx/src/com/android/dx/util/
H A DIntSet.java47 * Merges {@code other} into this set, so this set becomes the
50 * @param other {@code non-null;} other set to merge with.
52 void merge(IntSet other); argument
/dalvik/libcore/security/src/main/java/java/security/cert/
H A DX509CRLEntry.java43 * @param other
48 public boolean equals(Object other) { argument
49 if (other == this) {
52 if (!(other instanceof X509CRLEntry)) {
55 X509CRLEntry obj = (X509CRLEntry) other;

Completed in 682 milliseconds

1234567