HomeSort by relevance Sort by last modified time
    Searched refs:otherIndex (Results 1 - 25 of 26) sorted by null

1 2

  /external/proguard/src/proguard/classfile/editor/
ComparableConstant.java 101 int otherIndex = otherComparableConstant.thisIndex;
103 return thisIndex < otherIndex ? -1 :
104 thisIndex == otherIndex ? 0 :
171 int otherIndex = otherInvokeDynamicConstant.getBootstrapMethodAttributeIndex();
173 result = index < otherIndex ? -1 :
174 index > otherIndex ? 1 :
  /external/chromium_org/third_party/skia/src/pathops/
SkOpContour.cpp 12 bool SkOpContour::addCoincident(int index, SkOpContour* other, int otherIndex,
26 coincidence.fSegments[1] = otherIndex;
69 int otherIndex = coincidence.fSegments[1];
70 SkOpSegment& other = otherContour->fSegments[otherIndex];
140 int otherIndex = coincidence.fSegments[1];
147 if (this == otherContour && otherIndex == innerThisIndex) {
155 if (otherContour == innerOtherContour && otherIndex == innerThisIndex) {
162 bool SkOpContour::addPartialCoincident(int index, SkOpContour* other, int otherIndex,
176 coincidence.fSegments[1] = otherIndex;
209 int otherIndex = coincidence.fSegments[1]
    [all...]
SkOpContour.h 44 bool addCoincident(int index, SkOpContour* other, int otherIndex,
67 void addOtherT(int segIndex, int tIndex, double otherT, int otherIndex) {
68 fSegments[segIndex].addOtherT(tIndex, otherT, otherIndex);
71 bool addPartialCoincident(int index, SkOpContour* other, int otherIndex,
80 int addT(int segIndex, SkOpContour* other, int otherIndex, const SkPoint& pt, double newT) {
82 return fSegments[segIndex].addT(&other->fSegments[otherIndex], pt, newT);
109 void alignTPt(int segmentIndex, const SkOpContour* other, int otherIndex,
SkIntersectionHelper.h 28 // FIXME: does it make sense to write otherIndex now if we're going to
30 void addOtherT(int index, double otherT, int otherIndex) {
31 fContour->addOtherT(fIndex, index, otherT, otherIndex);
SkPathOpsDebug.cpp 426 SkDebugf(" other=%d otherT=%1.9g otherIndex=%d windSum=",
525 int otherIndex = span.fOtherIndex;
528 const SkOpSpan& otherSpan = other->fTs[otherIndex];
SkOpSegment.h 278 void addOtherT(int index, double otherT, int otherIndex);
SkOpSegment.cpp 436 void SkOpSegment::addOtherT(int index, double otherT, int otherIndex) {
444 span.fOtherIndex = otherIndex;
    [all...]
  /external/skia/src/pathops/
SkOpContour.cpp 12 bool SkOpContour::addCoincident(int index, SkOpContour* other, int otherIndex,
26 coincidence.fSegments[1] = otherIndex;
69 int otherIndex = coincidence.fSegments[1];
70 SkOpSegment& other = otherContour->fSegments[otherIndex];
140 int otherIndex = coincidence.fSegments[1];
147 if (this == otherContour && otherIndex == innerThisIndex) {
155 if (otherContour == innerOtherContour && otherIndex == innerThisIndex) {
162 bool SkOpContour::addPartialCoincident(int index, SkOpContour* other, int otherIndex,
176 coincidence.fSegments[1] = otherIndex;
209 int otherIndex = coincidence.fSegments[1]
    [all...]
SkOpContour.h 44 bool addCoincident(int index, SkOpContour* other, int otherIndex,
67 void addOtherT(int segIndex, int tIndex, double otherT, int otherIndex) {
68 fSegments[segIndex].addOtherT(tIndex, otherT, otherIndex);
71 bool addPartialCoincident(int index, SkOpContour* other, int otherIndex,
80 int addT(int segIndex, SkOpContour* other, int otherIndex, const SkPoint& pt, double newT) {
82 return fSegments[segIndex].addT(&other->fSegments[otherIndex], pt, newT);
109 void alignTPt(int segmentIndex, const SkOpContour* other, int otherIndex,
SkIntersectionHelper.h 28 // FIXME: does it make sense to write otherIndex now if we're going to
30 void addOtherT(int index, double otherT, int otherIndex) {
31 fContour->addOtherT(fIndex, index, otherT, otherIndex);
SkPathOpsDebug.cpp 426 SkDebugf(" other=%d otherT=%1.9g otherIndex=%d windSum=",
525 int otherIndex = span.fOtherIndex;
528 const SkOpSpan& otherSpan = other->fTs[otherIndex];
SkOpSegment.h 278 void addOtherT(int index, double otherT, int otherIndex);
SkOpSegment.cpp 436 void SkOpSegment::addOtherT(int index, double otherT, int otherIndex) {
444 span.fOtherIndex = otherIndex;
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
LiteralByteString.java 219 for (int thisIndex = getOffsetIntoBytes(), otherIndex =
221 (thisIndex < thisLimit); ++thisIndex, ++otherIndex) {
222 if (thisBytes[thisIndex] != otherBytes[otherIndex]) {
  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 496 const SlotIndex &otherIndex = other.beginIndex();
497 return thisIndex < otherIndex;
554 const SlotIndex &otherIndex = other.beginIndex();
555 return std::tie(thisIndex, reg) < std::tie(otherIndex, other.reg);
  /external/chromium_org/third_party/skia/tests/
PathOpsDebug.cpp 157 int otherIndex = coin.fSegments[1];
158 const SkOpSegment& s2 = coin.fOther->fSegments[otherIndex];
  /external/skia/tests/
PathOpsDebug.cpp 157 int otherIndex = coin.fSegments[1];
158 const SkOpSegment& s2 = coin.fOther->fSegments[otherIndex];
  /external/chromium_org/third_party/skia/experimental/Intersection/
Simplify.cpp     [all...]
  /external/skia/experimental/Intersection/
Simplify.cpp     [all...]
  /external/icu/icu4c/source/i18n/
msgfmt.cpp     [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityManagerService.java     [all...]
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.10/
proguard-base-4.10.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.11/
proguard-base-4.11.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.9/
proguard-base-4.9.jar 

Completed in 403 milliseconds

1 2