Home | History | Annotate | Download | only in Frontend

Lines Matching defs:Visited

291   getInliningModeForFunction(const Decl *D, SetOfConstDecls Visited);
294 /// use it to define the order in which the functions should be visited.
393 SetOfConstDecls Visited,
408 // Otherwise, if we visited the function before, do not reanalyze it.
409 return Visited.count(D);
414 SetOfConstDecls Visited) {
418 if (Visited.count(D)) {
441 // the previously processed functions. Use external Visited set to identify
445 SetOfConstDecls Visited;
461 if (shouldSkipFunction(D, Visited, VisitedAsTopLevel))
467 HandleCode(D, AM_Path, getInliningModeForFunction(D, Visited),
470 // Add the visited callees to the global visited set.
473 Visited.insert(*I);
644 SetOfConstDecls *Visited) {
648 ActionExprEngine(D, false, IMode, Visited);
652 ActionExprEngine(D, true, IMode, Visited);
656 ActionExprEngine(D, false, IMode, Visited);
657 ActionExprEngine(D, true, IMode, Visited);