HomeSort by relevance Sort by last modified time
    Searched full:otherset (Results 1 - 5 of 5) sorted by null

  /external/antlr/src/org/antlr/runtime/
BitSet.java 199 BitSet otherSet = (BitSet)other;
201 int n = Math.min(this.bits.length, otherSet.bits.length);
205 if (this.bits[i] != otherSet.bits[i]) {
219 else if (otherSet.bits.length > n) {
220 for (int i = n+1; i<otherSet.bits.length; i++) {
221 if (otherSet.bits[i] != 0) {
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationSetItem.java 97 AnnotationSetItem otherSet = (AnnotationSetItem) other;
99 return annotations.compareTo(otherSet.annotations);
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationSetItem.java 97 AnnotationSetItem otherSet = (AnnotationSetItem) other;
99 return annotations.compareTo(otherSet.annotations);
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegisterSpecSet.java 61 RegisterSpecSet otherSet = (RegisterSpecSet) other;
62 RegisterSpec[] otherSpecs = otherSet.specs;
65 if ((len != otherSpecs.length) || (size() != otherSet.size())) {
  /dalvik/dx/src/com/android/dx/rop/code/
RegisterSpecSet.java 60 RegisterSpecSet otherSet = (RegisterSpecSet) other;
61 RegisterSpec[] otherSpecs = otherSet.specs;
64 if ((len != otherSpecs.length) || (size() != otherSet.size())) {

Completed in 53 milliseconds