| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | YAMLOutputStyle.cpp | 256 auto Converted = in dumpDbiStream() local 258 if (!Converted) in dumpDbiStream() 259 return Converted.takeError(); in dumpDbiStream() 260 DMI.Subsections.push_back(*Converted); in dumpDbiStream()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64PromoteConstant.cpp | 364 auto Converted = PromotionCache.insert( in shouldConvert() local 366 if (Converted.second) in shouldConvert() 367 Converted.first->second.ShouldConvert = shouldConvertImpl(&C); in shouldConvert() 368 return Converted.first->second.ShouldConvert; in shouldConvert()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaExceptionSpec.cpp | 92 ExprResult Converted = CheckConvertedConstantExpression( in ActOnNoexceptSpec() local 95 if (Converted.isInvalid()) { in ActOnNoexceptSpec() 105 if (Converted.get()->isValueDependent()) { in ActOnNoexceptSpec() 107 return Converted; in ActOnNoexceptSpec() 110 if (!Converted.isInvalid()) in ActOnNoexceptSpec() 112 return Converted; in ActOnNoexceptSpec()
|
| H A D | SemaConcept.cpp | 429 llvm::SmallVectorImpl<Expr *> &Converted, in CheckConstraintSatisfaction() argument 460 Converted.push_back(Res.get()); in CheckConstraintSatisfaction() 464 Converted.append(ConstraintExprs.size() - Converted.size(), nullptr); in CheckConstraintSatisfaction() 925 llvm::SmallVector<Expr *, 1> Converted; in CheckInstantiatedFunctionTemplateConstraints() local 926 return CheckConstraintSatisfaction(Template, TemplateAC, Converted, *MLTAL, in CheckInstantiatedFunctionTemplateConstraints()
|
| H A D | SemaExprMember.cpp | 1003 ExprResult Converted = TemporaryMaterializationConversion(BaseExpr); in BuildMemberReferenceExpr() local 1004 if (Converted.isInvalid()) in BuildMemberReferenceExpr() 1006 BaseExpr = Converted.get(); in BuildMemberReferenceExpr()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 243 ExprResult Converted = S.PerformContextuallyConvertToBool(Cond); in instantiateDependentFunctionAttrCondition() local 244 if (Converted.isInvalid()) in instantiateDependentFunctionAttrCondition() 246 Cond = Converted.get(); in instantiateDependentFunctionAttrCondition() 3980 ArrayRef<TemplateArgument> Converted, in VisitVarTemplateSpecializationDecl() argument 3999 VarTemplate, DI->getType(), DI, D->getStorageClass(), Converted); in VisitVarTemplateSpecializationDecl() 4003 VarTemplate->findSpecialization(Converted, InsertPos); in VisitVarTemplateSpecializationDecl() 5216 SmallVectorImpl<TemplateArgument> &Converted, in BuildVarTemplateInstantiation() argument 5258 VarTemplate, FromVar, TemplateArgsInfo, Converted)); in BuildVarTemplateInstantiation()
|
| H A D | SemaOverload.cpp | 286 const Expr *Converted) { in IgnoreNarrowingConversion() argument 289 if (auto *EWC = dyn_cast<ExprWithCleanups>(Converted)) { in IgnoreNarrowingConversion() 296 while (auto *ICE = dyn_cast<ImplicitCastExpr>(Converted)) { in IgnoreNarrowingConversion() 306 Converted = ICE->getSubExpr(); in IgnoreNarrowingConversion() 310 return Converted; in IgnoreNarrowingConversion() 314 return Converted; in IgnoreNarrowingConversion() 329 ASTContext &Ctx, const Expr *Converted, APValue &ConstantValue, in getNarrowingKind() argument 368 const Expr *Initializer = IgnoreNarrowingConversion(Ctx, Converted); in getNarrowingKind() 6529 ExprResult Converted = DefaultLvalueConversion(From); in PerformContextualImplicitConversion() local 6530 QualType T = Converted.isUsable() ? Converted.get()->getType() : QualType(); in PerformContextualImplicitConversion() [all …]
|
| H A D | SemaTemplate.cpp | 3764 ArrayRef<TemplateArgument> Converted, in checkBuiltinTemplateIdType() argument 3774 QualType OrigType = Converted[1].getAsType(); in checkBuiltinTemplateIdType() 3783 TemplateArgument NumArgsArg = Converted[2]; in checkBuiltinTemplateIdType() 3786 Converted); in checkBuiltinTemplateIdType() 3814 return SemaRef.CheckTemplateIdType(Converted[0].getAsTemplate(), in checkBuiltinTemplateIdType() 3822 assert(Converted.size() == 2 && in checkBuiltinTemplateIdType() 3825 TemplateArgument IndexArg = Converted[0], Ts = Converted[1]; in checkBuiltinTemplateIdType() 3828 Converted); in checkBuiltinTemplateIdType()
|
| H A D | SemaStmt.cpp | 502 ExprResult Converted = CorrectDelayedTyposInExpr( in ActOnCaseExpr() local 505 if (Converted.get() == Val.get()) in ActOnCaseExpr() 506 Converted = CheckAndFinish(Val.get()); in ActOnCaseExpr() 507 return Converted; in ActOnCaseExpr()
|
| H A D | SemaExprObjC.cpp | 880 ExprResult Converted = CheckObjCCollectionLiteralElement(*this, in BuildObjCArrayLiteral() local 883 if (Converted.isInvalid()) in BuildObjCArrayLiteral() 886 ElementsBuffer[I] = Converted.get(); in BuildObjCArrayLiteral()
|
| H A D | SemaDeclCXX.cpp | 13807 ExprResult Converted = CheckConvertedConstantExpression( in tryResolveExplicitSpecifier() local 13809 ExplicitSpec.setExpr(Converted.get()); in tryResolveExplicitSpecifier() 13810 if (Converted.isUsable() && !Converted.get()->isValueDependent()) { in tryResolveExplicitSpecifier() 17433 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr); in BuildStaticAssertDeclaration() local 17434 if (Converted.isInvalid()) in BuildStaticAssertDeclaration() 17438 ActOnFinishFullExpr(Converted.get(), StaticAssertLoc, in BuildStaticAssertDeclaration() 17492 findFailedBooleanCondition(Converted.get()); in BuildStaticAssertDeclaration()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclTemplate.cpp | 1082 ArrayRef<TemplateArgument> Converted) { in setTemplateArguments() argument 1083 assert(Converted.size() == NumTemplateArgs); in setTemplateArguments() 1084 std::uninitialized_copy(Converted.begin(), Converted.end(), in setTemplateArguments()
|
| H A D | Type.cpp | 4029 const TemplateArgumentListInfo &Args, ArrayRef<TemplateArgument> Converted) { in anyDependentTemplateArguments() argument 4030 return anyDependentTemplateArguments(Args.arguments(), Converted); in anyDependentTemplateArguments() 4034 ArrayRef<TemplateArgumentLoc> Args, ArrayRef<TemplateArgument> Converted) { in anyDependentTemplateArguments() argument 4035 for (const TemplateArgument &Arg : Converted) in anyDependentTemplateArguments()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIPeepholeSDWA.cpp | 1125 bool Converted = false; in convertToSDWA() local 1139 Converted |= Operand->convertToSDWA(*SDWAInst, TII); in convertToSDWA() 1141 if (Converted) { in convertToSDWA()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Lex/ |
| H A D | LiteralSupport.cpp | 580 bool Converted = in DiagnoseInvalidUnicodeCharacterName() local 582 (void)Converted; in DiagnoseInvalidUnicodeCharacterName() 583 assert(Converted && "Found a match wich is not a unicode character"); in DiagnoseInvalidUnicodeCharacterName()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Basic/Targets/ |
| H A D | X86.cpp | 1703 std::string Converted = "{" + std::string(Constraint, Len) + "}"; in convertConstraint() local 1705 return Converted; in convertConstraint()
|
| H A D | AArch64.cpp | 1316 std::string Converted = "{" + std::string(Constraint, Len) + "}"; in convertConstraint() local 1318 return Converted; in convertConstraint()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Template.h | 710 ArrayRef<TemplateArgument> Converted,
|
| H A D | Overload.h | 365 getNarrowingKind(ASTContext &Context, const Expr *Converted,
|
| /freebsd-14.2/contrib/byacc/package/debian/ |
| H A D | changelog | 513 * Converted to new source format (Fixes #8085).
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/TableGen/ |
| H A D | Record.cpp | 2144 if (Init *Converted = convertInitializerTo(Ty)) { in getCastTo() local 2145 assert(!isa<TypedInit>(Converted) || in getCastTo() 2146 cast<TypedInit>(Converted)->getType()->typeIsA(Ty)); in getCastTo() 2147 return Converted; in getCastTo()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMISelDAGToDAG.cpp | 3233 APSInt Converted(64, false); in transformFixedFloatingPointConversion() local 3235 ToConvert.convertToInteger(Converted, llvm::RoundingMode::NearestTiesToEven, in transformFixedFloatingPointConversion() 3237 if (!IsExact || !Converted.isPowerOf2()) in transformFixedFloatingPointConversion() 3240 unsigned FracBits = Converted.logBase2(); in transformFixedFloatingPointConversion()
|
| /freebsd-14.2/contrib/kyua/ |
| H A D | NEWS.md | 128 * Converted the `INSTALL`, `NEWS`, and `README` distribution documents to
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclTemplate.h | 3244 void setTemplateArguments(ArrayRef<TemplateArgument> Converted);
|
| H A D | Type.h | 5593 ArrayRef<TemplateArgument> Converted); 5596 ArrayRef<TemplateArgument> Converted);
|