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

  /src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp 513 bool HasFunctionName = SL != nullptr;
514 PredefinedExprBits.HasFunctionName = HasFunctionName;
516 if (HasFunctionName)
521 PredefinedExpr::PredefinedExpr(EmptyShell Empty, bool HasFunctionName)
523 PredefinedExprBits.HasFunctionName = HasFunctionName;
529 bool HasFunctionName = SL != nullptr;
530 void *Mem = Ctx.Allocate(totalSizeToAlloc<Stmt *>(HasFunctionName),
536 bool HasFunctionName) {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 586 bool HasFunctionName = Record.readInt();
587 E->PredefinedExprBits.HasFunctionName = HasFunctionName;
590 if (HasFunctionName)
2808 /*HasFunctionName*/ Record[ASTStmtReader::NumExprFields]);
ASTWriterStmt.cpp 586 bool HasFunctionName = E->getFunctionName() != nullptr;
587 Record.push_back(HasFunctionName);
590 if (HasFunctionName)
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 1957 // hasFunctionName() is true and is always a "StringLiteral *".
1977 explicit PredefinedExpr(EmptyShell Empty, bool HasFunctionName);
1980 bool hasFunctionName() const { return PredefinedExprBits.HasFunctionName; }
1983 assert(hasFunctionName() &&
1995 bool HasFunctionName);
2005 return hasFunctionName()
2011 return hasFunctionName()
2033 getTrailingObjects<Stmt *>() + hasFunctionName());
2038 getTrailingObjects<Stmt *>() + hasFunctionName());
    [all...]
Stmt.h 360 unsigned HasFunctionName : 1;

Completed in 59 milliseconds