HomeSort by: relevance | last modified time | path
    Searched refs:getLikelihood (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp 134 getLikelihood(ArrayRef<const Attr *> Attrs) {
146 static std::pair<Stmt::Likelihood, const Attr *> getLikelihood(const Stmt *S) {
148 return getLikelihood(AS->getAttrs());
153 Stmt::Likelihood Stmt::getLikelihood(ArrayRef<const Attr *> Attrs) {
154 return ::getLikelihood(Attrs).first;
157 Stmt::Likelihood Stmt::getLikelihood(const Stmt *S) {
158 return ::getLikelihood(S).first;
162 return ::getLikelihood(S).second;
165 Stmt::Likelihood Stmt::getLikelihood(const Stmt *Then, const Stmt *Else) {
166 Likelihood LHT = ::getLikelihood(Then).first
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmt.cpp 757 LH = Stmt::getLikelihood(S.getThen(), S.getElse());
843 BoolCondVal, Stmt::getLikelihood(S.getBody()));
1023 BoolCondVal, Stmt::getLikelihood(S.getBody()));
1108 BoolCondVal, Stmt::getLikelihood(S.getBody()));
1326 Stmt::Likelihood LH = Stmt::getLikelihood(Attrs);
1414 SwitchLikelihood->push_back(Stmt::getLikelihood(Attrs));
1502 SwitchLikelihood->front() = Stmt::getLikelihood(Attrs);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 1181 static Likelihood getLikelihood(ArrayRef<const Attr *> Attrs);
1184 static Likelihood getLikelihood(const Stmt *S);
1192 static Likelihood getLikelihood(const Stmt *Then, const Stmt *Else);

Completed in 21 milliseconds