Home
last modified time | relevance | path

Searched refs:toSort (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/mlir/lib/Analysis/
DSliceAnalysis.cpp168 : toSort(set), topologicalCounts(), seen() {} in DFSState()
169 const SetVector<Operation *> &toSort; member
185 if (state->toSort.count(current) > 0) { in DFSPostorder()
192 mlir::topologicalSort(const SetVector<Operation *> &toSort) { in topologicalSort() argument
193 if (toSort.empty()) { in topologicalSort()
194 return toSort; in topologicalSort()
198 DFSState state(toSort); in topologicalSort()
199 for (auto *s : toSort) { in topologicalSort()
200 assert(toSort.count(s) == 1 && "NYI: multi-sets not supported"); in topologicalSort()
/external/icu/icu4c/source/test/intltest/
Dthcoll.cpp367 UChar *toSort[LINES]; in TestInvalidThai() local
385 toSort[i] = strings[i]; in TestInvalidThai()
388 qsort (toSort, LINES, sizeof (UChar *), StrCmp); in TestInvalidThai()
394 if (ucol_strcoll (thaiColl, toSort[i], -1, toSort[j], -1) == UCOL_GREATER) in TestInvalidThai()
400 iteratorText.setTo(toSort[i]); in TestInvalidThai()
/external/llvm-project/mlir/include/mlir/Analysis/
DSliceAnalysis.h202 topologicalSort(const llvm::SetVector<Operation *> &toSort);