Home
last modified time | relevance | path

Searched refs:DirectInit (Results 1 – 11 of 11) sorted by relevance

/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DInitialization.h711 static InitializationKind CreateForInit(SourceLocation Loc, bool DirectInit, in CreateForInit() argument
714 if (!DirectInit) in CreateForInit()
H A DDeclSpec.h2734 DirectInit, //!< [a(b)] enumerator
H A DSema.h2925 bool DeduceVariableDeclarationType(VarDecl *VDecl, bool DirectInit,
3028 void AddInitializerToDecl(Decl *dcl, Expr *init, bool DirectInit);
7129 bool DirectInit, Expr *&Init);
9115 SourceRange Range, bool DirectInit,
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDeclOpenMP.h177 DirectInit, // omp_priv(<expr>) enumerator
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DDeclPrinter.cpp1730 case OMPDeclareReductionDecl::DirectInit: in VisitOMPDeclareReductionDecl()
1740 if (D->getInitializerKind() == OMPDeclareReductionDecl::DirectInit) in VisitOMPDeclareReductionDecl()
H A DTextNodeDumper.cpp1894 case OMPDeclareReductionDecl::DirectInit: in VisitOMPDeclareReductionDecl()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaDecl.cpp12519 bool DirectInit) { in CheckSelfReference() argument
12529 if (!DirectInit && !cast<VarDecl>(OrigDecl)->getType()->isRecordType()) in CheckSelfReference()
12557 SourceRange Range, bool DirectInit, in deduceVarTypeFromInitializer() argument
12587 if (DirectInit) { in deduceVarTypeFromInitializer()
12596 VDecl->getLocation(), DirectInit, Init); in deduceVarTypeFromInitializer()
12603 if (DirectInit) { in deduceVarTypeFromInitializer()
12628 if (DirectInit && isa<InitListExpr>(DeduceInit)) { in deduceVarTypeFromInitializer()
12693 bool Sema::DeduceVariableDeclarationType(VarDecl *VDecl, bool DirectInit, in DeduceVariableDeclarationType() argument
12698 VDecl->getSourceRange(), DirectInit, Init); in DeduceVariableDeclarationType()
13003 void Sema::AddInitializerToDecl(Decl *RealDecl, Expr *Init, bool DirectInit) { in AddInitializerToDecl() argument
[all …]
H A DSemaLambda.cpp1147 case LambdaCaptureInitKind::DirectInit: in ActOnStartOfLambdaDefinition()
H A DSemaTemplateInstantiateDecl.cpp5358 bool DirectInit = OldVar->isDirectInit(); in InstantiateVariableInitializer() local
5359 AddInitializerToDecl(Var, InitExpr, DirectInit); in InstantiateVariableInitializer()
H A DSemaOpenMP.cpp22285 ? OMPDeclareReductionDecl::DirectInit in ActOnOpenMPDeclareReductionInitializerEnd()
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseExprCXX.cpp981 InitKind = LambdaCaptureInitKind::DirectInit; in ParseLambdaIntroducer()