Searched defs:equals (Results 26 - 50 of 72) sorted by relevance

123

/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstMemberRef.java50 public final boolean equals(Object other) { method in class:CstMemberRef
56 return definingClass.equals(otherRef.definingClass) &&
57 nat.equals(otherRef.nat);
H A DCstArray.java45 public boolean equals(Object other) { method in class:CstArray
50 return list.equals(((CstArray) other).list);
H A DCstNat.java61 public boolean equals(Object other) { method in class:CstNat
67 return name.equals(otherNat.name) &&
68 descriptor.equals(otherNat.descriptor);
150 * {@code getName().getString().equals("<init>")}.
156 return name.getString().equals("<init>");
162 * {@code getName().getString().equals("<clinit>")}.
168 return name.getString().equals("<clinit>");
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DCatchHandlerList.java111 return last.getExceptionType().equals(CstType.OBJECT);
201 public boolean equals(Object other) { method in class:CatchHandlerList.Entry
H A DCatchTable.java140 public boolean equals(Object other) { method in class:CatchTable.Entry
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DEncodedField.java63 public boolean equals(Object other) { method in class:EncodedField
H A DEncodedMethod.java73 public boolean equals(Object other) { method in class:EncodedMethod
H A DOffsettedItem.java91 public final boolean equals(Object other) { method in class:OffsettedItem
H A DStringIdItem.java53 public boolean equals(Object other) { method in class:StringIdItem
59 return value.equals(otherString.value);
/dalvik/dexgen/src/com/android/dexgen/rop/annotation/
H A DAnnotation.java75 public boolean equals(Object other) { method in class:Annotation
82 if (! (type.equals(otherAnnotation.type)
87 return elements.equals(otherAnnotation.elements);
H A DAnnotations.java98 public boolean equals(Object other) { method in class:Annotations
105 return annotations.equals(otherAnnotations.annotations);
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DCstArray.java47 public boolean equals(Object other) { method in class:CstArray
52 return list.equals(((CstArray) other).list);
H A DCstNat.java61 public boolean equals(Object other) { method in class:CstNat
67 return name.equals(otherNat.name) &&
68 descriptor.equals(otherNat.descriptor);
150 * {@code getName().getString().equals("<init>")}.
156 return name.getString().equals("<init>");
162 * {@code getName().getString().equals("<clinit>")}.
168 return name.getString().equals("<clinit>");
H A DCstUtf8.java205 public boolean equals(Object other) { method in class:CstUtf8
210 return string.equals(((CstUtf8) other).string);
/dalvik/dexgen/src/com/android/dexgen/util/
H A DFixedSizeList.java47 public boolean equals(Object other) { method in class:FixedSizeList
59 return Arrays.equals(arr, list.arr);
/dalvik/dx/src/com/android/dx/dex/code/
H A DCatchHandlerList.java111 return last.getExceptionType().equals(CstType.OBJECT);
201 public boolean equals(Object other) { method in class:CatchHandlerList.Entry
H A DCatchTable.java139 public boolean equals(Object other) { method in class:CatchTable.Entry
/dalvik/dx/src/com/android/dx/dex/file/
H A DEncodedField.java62 public boolean equals(Object other) { method in class:EncodedField
H A DEncodedMethod.java72 public boolean equals(Object other) { method in class:EncodedMethod
H A DOffsettedItem.java91 public final boolean equals(Object other) { method in class:OffsettedItem
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DAnnotation.java66 public boolean equals(Object other) { method in class:Annotation
73 if (! (type.equals(otherAnnotation.type)
78 return elements.equals(otherAnnotation.elements);
H A DAnnotations.java97 public boolean equals(Object other) { method in class:Annotations
104 return annotations.equals(otherAnnotations.annotations);
/dalvik/dx/src/com/android/dx/util/
H A DFixedSizeList.java47 public boolean equals(Object other) { method in class:FixedSizeList
59 return Arrays.equals(arr, list.arr);
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DBasicBlock.java119 * {@code x.equals(y)} is only true if {@code x == y}.
122 public boolean equals(Object other) { method in class:BasicBlock
130 * since instances of this class compare by identity (see {@link #equals}).
H A DRegisterSpecSet.java56 public boolean equals(Object other) { method in class:RegisterSpecSet
77 if ((s1 == null) || !s1.equals(s2)) {
229 if ((spec != null) && local.equals(spec.getLocalItem())) {

Completed in 250 milliseconds

123