Home
last modified time | relevance | path

Searched refs:ExplicitResultType (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaLambda.cpp463 bool ExplicitResultType, in buildLambdaScope() argument
477 if (ExplicitResultType) { in buildLambdaScope()
849 bool ExplicitResultType = true; in ActOnStartOfLambdaDefinition() local
874 ExplicitResultType = false; in ActOnStartOfLambdaDefinition()
894 ExplicitResultType = FTI.hasTrailingReturnType(); in ActOnStartOfLambdaDefinition()
937 ExplicitParams, ExplicitResultType, !Method->isConst()); in ActOnStartOfLambdaDefinition()
1513 bool ExplicitResultType; in BuildLambdaExpr() local
1522 ExplicitResultType = !LSI->HasImplicitReturnType; in BuildLambdaExpr()
1656 ExplicitParams, ExplicitResultType, in BuildLambdaExpr()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DExprCXX.cpp1089 bool ExplicitResultType, ArrayRef<Expr *> CaptureInits, in LambdaExpr() argument
1097 ExplicitParams(ExplicitParams), ExplicitResultType(ExplicitResultType), in LambdaExpr()
1132 bool ExplicitParams, bool ExplicitResultType, ArrayRef<Expr *> CaptureInits, in Create() argument
1142 Captures, ExplicitParams, ExplicitResultType, CaptureInits, in Create()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DExprCXX.h1669 unsigned ExplicitResultType : 1; variable
1685 bool ExplicitParams, bool ExplicitResultType,
1693 ExplicitResultType(false) { in LambdaExpr()
1711 bool ExplicitResultType, ArrayRef<Expr *> CaptureInits,
1851 bool hasExplicitResultType() const { return ExplicitResultType; } in hasExplicitResultType()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriterStmt.cpp1358 Record.push_back(E->ExplicitResultType); in VisitLambdaExpr()
H A DASTReaderStmt.cpp1395 E->ExplicitResultType = Record.readInt(); in VisitLambdaExpr()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h5584 bool ExplicitResultType,