Home
last modified time | relevance | path

Searched refs:SecondParam (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/clang/lib/Serialization/
DASTReader.cpp10334 const auto *SecondParam = cast<TemplateTypeParmDecl>(SecondDecl); in diagnoseOdrViolations() local
10339 SecondParam->hasDefaultArgument() && in diagnoseOdrViolations()
10340 !SecondParam->defaultArgumentWasInherited(); in diagnoseOdrViolations()
10368 const auto *SecondParam = cast<NonTypeTemplateParmDecl>(SecondDecl); in diagnoseOdrViolations() local
10373 SecondParam->hasDefaultArgument() && in diagnoseOdrViolations()
10374 !SecondParam->defaultArgumentWasInherited(); in diagnoseOdrViolations()
10402 const auto *SecondParam = in diagnoseOdrViolations() local
10408 SecondParam->hasDefaultArgument() && in diagnoseOdrViolations()
10409 !SecondParam->defaultArgumentWasInherited(); in diagnoseOdrViolations()
10696 const ParmVarDecl *SecondParam = SecondMethod->getParamDecl(I); in diagnoseOdrViolations() local
[all …]
/external/llvm-project/clang/lib/AST/
DASTContext.cpp9865 FunctionProtoType::ExtParameterInfo FirstParam, SecondParam; in mergeExtParameterInfo() local
9869 SecondParam = SecondFnType->getExtParameterInfo(I); in mergeExtParameterInfo()
9872 if (FirstParam.withIsNoEscape(false) != SecondParam.withIsNoEscape(false)) in mergeExtParameterInfo()
9876 bool SecondNoEscape = SecondParam.isNoEscape(); in mergeExtParameterInfo()
/external/llvm-project/clang/lib/Sema/
DSemaDeclAttr.cpp3072 enum SecondParam { None, Architecture, Tune }; in checkTargetAttr() enum