Lines Matching refs:Level
111 enum class Level { Same, Above, Below };
258 static Optional<Level> getIndexRelation(const StratifiedSets<Value *> &Sets,
262 return Level::Same;
267 return Level::Below;
274 return Level::Above;
654 // Gets the "Level" that one should travel in StratifiedSets
656 static Level directionOfEdgeType(EdgeType);
770 static Level directionOfEdgeType(EdgeType Weight) {
773 return Level::Above;
775 return Level::Below;
777 return Level::Same;
951 case Level::Above:
954 case Level::Below:
957 case Level::Same: