Searched refs:AddStmtChoice (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/Analysis/
H A DCFG.cpp52 /// might not normally need to be. AddStmtChoice records this
53 /// contextual information. If AddStmtChoice is 'NotAlwaysAdd', then
57 class AddStmtChoice { class in namespace:__anon17770
61 AddStmtChoice(Kind a_kind = NotAlwaysAdd) : kind(a_kind) {} function in class:__anon17770::AddStmtChoice
68 AddStmtChoice withAlwaysAdd(bool alwaysAdd) const {
69 return AddStmtChoice(alwaysAdd ? AlwaysAdd : NotAlwaysAdd);
352 CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc);
353 CFGBlock *VisitBinaryOperator(BinaryOperator *B, AddStmtChoice asc);
355 CFGBlock *VisitCallExpr(CallExpr *C, AddStmtChoice asc);
357 CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice as
[all...]

Completed in 37 milliseconds