Lines Matching defs:getLikelihood
144 getLikelihood(ArrayRef<const Attr *> Attrs) {
156 static std::pair<Stmt::Likelihood, const Attr *> getLikelihood(const Stmt *S) {
158 return getLikelihood(AS->getAttrs());
163 Stmt::Likelihood Stmt::getLikelihood(ArrayRef<const Attr *> Attrs) {
164 return ::getLikelihood(Attrs).first;
167 Stmt::Likelihood Stmt::getLikelihood(const Stmt *S) {
168 return ::getLikelihood(S).first;
172 return ::getLikelihood(S).second;
175 Stmt::Likelihood Stmt::getLikelihood(const Stmt *Then, const Stmt *Else) {
176 Likelihood LHT = ::getLikelihood(Then).first;
177 Likelihood LHE = ::getLikelihood(Else).first;
194 std::pair<Likelihood, const Attr *> LHT = ::getLikelihood(Then);
195 std::pair<Likelihood, const Attr *> LHE = ::getLikelihood(Else);