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

/external/clang/lib/Analysis/
H A DCFG.cpp50 /// might not normally need to be. AddStmtChoice records this
51 /// contextual information. If AddStmtChoice is 'NotAlwaysAdd', then
55 class AddStmtChoice { class in namespace:__anon3094
59 AddStmtChoice(Kind a_kind = NotAlwaysAdd) : kind(a_kind) {} function in class:__anon3094::AddStmtChoice
66 AddStmtChoice withAlwaysAdd(bool alwaysAdd) const {
67 return AddStmtChoice(alwaysAdd ? AlwaysAdd : NotAlwaysAdd);
312 CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc);
313 CFGBlock *VisitBinaryOperator(BinaryOperator *B, AddStmtChoice asc);
317 AddStmtChoice asc);
322 AddStmtChoice as
[all...]

Completed in 45 milliseconds