Lines Matching defs:indexInSort
18 int indexInSort() const { SkASSERT(fIndexInSort >= 0); return fIndexInSort; }
42 REPORTER_ASSERT(reporter, dependedOn->indexInSort() < this->indexInSort());
45 REPORTER_ASSERT(reporter, this->indexInSort() < dependent->indexInSort());
51 return a->indexInSort() > b->indexInSort();
65 void setIndexInSort(int indexInSort) { fIndexInSort = indexInSort; }
130 if ((*dependedOn)[i]->indexInSort() < dependent->indexInSort()) {
154 if ((*dependedOn)[i]->indexInSort() < lowerBound) {
159 this->dfs(dependent, (*dependedOn)[i]->indexInSort());
162 lowerBound = std::min(dependent->indexInSort(), lowerBound);
213 REPORTER_ASSERT(fReporter, fNodes[i]->indexInSort() == i);
232 SkASSERT(dependent->indexInSort() != upperBound); // this would be a cycle
234 if (!dependent->visited() && dependent->indexInSort() < upperBound) {