Home | History | Annotate | Download | only in Frontend

Lines Matching refs:Mode

152   /// Mode of the analyzes while recursively visiting Decls.
247 void DisplayFunction(const Decl *D, AnalysisMode Mode,
257 if (Mode == AM_Syntax)
259 else if (Mode == AM_Path) {
272 assert(Mode == (AM_Syntax | AM_Path) && "Unexpected mode!");
307 /// \brief Determine which inlining mode should be used when this function is
318 /// \param Mode - determines if we are requesting syntax only or path
323 void HandleCode(Decl *D, AnalysisMode Mode,
339 AnalysisMode Mode = getModeForDecl(D, RecVisitorMode);
340 if (Mode & AM_Syntax)
388 AnalysisMode getModeForDecl(Decl *D, AnalysisMode Mode);
584 AnalysisConsumer::getModeForDecl(Decl *D, AnalysisMode Mode) {
602 return Mode & ~AM_Path;
605 return Mode;
608 void AnalysisConsumer::HandleCode(Decl *D, AnalysisMode Mode,
613 Mode = getModeForDecl(D, Mode);
614 if (Mode == AM_None)
617 DisplayFunction(D, Mode, IMode);
628 if (Mode & AM_Syntax)
630 if ((Mode & AM_Path) && checkerMgr->hasPathSensitiveCheckers()) {