Home
last modified time | relevance | path

Searched refs:thisIndex (Results 1 – 4 of 4) sorted by relevance

/external/proguard/src/proguard/classfile/editor/
DComparableConstant.java62 private final int thisIndex; field in ComparableConstant
72 this.thisIndex = index; in ComparableConstant()
79 return thisIndex; in getIndex()
101 int otherIndex = otherComparableConstant.thisIndex; in compareTo()
103 return thisIndex < otherIndex ? -1 : in compareTo()
104 thisIndex == otherIndex ? 0 : in compareTo()
/external/llvm/include/llvm/CodeGen/
DLiveInterval.h553 const SlotIndex &thisIndex = beginIndex(); variable
555 return thisIndex < otherIndex;
733 const SlotIndex &thisIndex = beginIndex(); variable
735 return std::tie(thisIndex, reg) < std::tie(otherIndex, other.reg);
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DLiveInterval.h526 const SlotIndex &thisIndex = beginIndex();
528 return (thisIndex < otherIndex ||
529 (thisIndex == otherIndex && reg < other.reg));
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DByteString.java1407 int thisIndex = getOffsetIntoBytes(), in equalsRange()
1409 (thisIndex < thisLimit); ++thisIndex, ++otherIndex) { in equalsRange()
1410 if (thisBytes[thisIndex] != otherBytes[otherIndex]) { in equalsRange()