Home | History | Annotate | Download | only in Frontend

Lines Matching refs:Visited

311     getInliningModeForFunction(const Decl *D, const SetOfConstDecls &Visited);
314 /// use it to define the order in which the functions should be visited.
421 const SetOfConstDecls &Visited,
436 // Otherwise, if we visited the function before, do not reanalyze it.
437 return Visited.count(D);
442 const SetOfConstDecls &Visited) {
446 if (Visited.count(D)) {
469 // the previously processed functions. Use external Visited set to identify
473 SetOfConstDecls Visited;
489 if (shouldSkipFunction(D, Visited, VisitedAsTopLevel))
495 HandleCode(D, AM_Path, getInliningModeForFunction(D, Visited),
498 // Add the visited callees to the global visited set.
501 Visited.insert(*I);
680 SetOfConstDecls *Visited) {
684 ActionExprEngine(D, false, IMode, Visited);
688 ActionExprEngine(D, true, IMode, Visited);
692 ActionExprEngine(D, false, IMode, Visited);
693 ActionExprEngine(D, true, IMode, Visited);