Lines Matching refs:Bounds
867 SourceRange Bounds; // Half-open, restricts reported targets. member in clang::clangd::__anon7033247a0b11::FindControlFlow
890 if (SM.isBeforeInTranslationUnit(Loc, Bounds.getBegin()) || in found()
891 SM.isBeforeInTranslationUnit(Bounds.getEnd(), Loc)) in found()
897 FindControlFlow(SourceRange Bounds, std::vector<SourceLocation> &Result, in FindControlFlow() argument
899 : Bounds(Bounds), Result(Result), SM(SM) {} in FindControlFlow()
938 if (SM.isBeforeInTranslationUnit(LD->getLocation(), Bounds.getBegin()) || in VisitGotoStmt()
939 SM.isBeforeInTranslationUnit(Bounds.getEnd(), LD->getLocation())) in VisitGotoStmt()
1015 SourceRange Bounds; in relatedControlFlow() local
1044 Bounds = findCaseBounds(*SS, N.ASTNode.getSourceRange().getBegin(), SM); in relatedControlFlow()
1053 if (!Bounds.isValid()) in relatedControlFlow()
1054 Bounds = Root->getSourceRange(); in relatedControlFlow()
1055 FindControlFlow(Bounds, Result, SM).TraverseStmt(const_cast<Stmt *>(Root)); in relatedControlFlow()