| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaTemplate.cpp | 1147 TemplateArgument Converted; in ActOnNonTypeTemplateParameter() local 2978 assert(Converted.size() == 2 && in checkBuiltinTemplateIdType() 2982 TemplateArgument IndexArg = Converted[0], Ts = Converted[1]; in checkBuiltinTemplateIdType() 3936 Converted)) in CheckVarTemplateId() 3943 Converted, InsertPos)) { in CheckVarTemplateId() 4802 Converted.push_back(Result); in CheckTemplateArgument() 5070 Converted.push_back( in CheckTemplateArgumentList() 5131 Converted.insert(Converted.end(), in CheckTemplateArgumentList() 5150 Converted.push_back( in CheckTemplateArgumentList() 5168 Converted.push_back( in CheckTemplateArgumentList() [all …]
|
| H A D | SemaExceptionSpec.cpp | 83 ExprResult Converted = CheckBooleanCondition(NoexceptLoc, NoexceptExpr); in ActOnNoexceptSpec() local 84 if (Converted.isInvalid()) in ActOnNoexceptSpec() 85 return Converted; in ActOnNoexceptSpec() 87 if (Converted.get()->isValueDependent()) { in ActOnNoexceptSpec() 89 return Converted; in ActOnNoexceptSpec() 93 Converted = VerifyIntegerConstantExpression( in ActOnNoexceptSpec() 94 Converted.get(), &Result, in ActOnNoexceptSpec() 97 if (!Converted.isInvalid()) in ActOnNoexceptSpec() 99 return Converted; in ActOnNoexceptSpec()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 201 if (Converted.isInvalid()) in instantiateDependentFunctionAttrCondition() 203 Cond = Converted.get(); in instantiateDependentFunctionAttrCondition() 2990 SmallVector<TemplateArgument, 4> Converted; in VisitClassTemplateSpecializationDecl() local 3107 SmallVector<TemplateArgument, 4> Converted; in VisitVarTemplateSpecializationDecl() local 3111 Converted)) in VisitVarTemplateSpecializationDecl() 3118 Converted, InsertPos)) in VisitVarTemplateSpecializationDecl() 3129 ArrayRef<TemplateArgument> Converted) { in VisitVarTemplateSpecializationDecl() argument 3273 SmallVector<TemplateArgument, 4> Converted; in InstantiateClassTemplatePartialSpecialization() local 3284 Converted)) in InstantiateClassTemplatePartialSpecialization() 3408 Converted)) in InstantiateVarTemplatePartialSpecialization() [all …]
|
| H A D | SemaExprMember.cpp | 963 ExprResult Converted = TemporaryMaterializationConversion(BaseExpr); in BuildMemberReferenceExpr() local 964 if (Converted.isInvalid()) in BuildMemberReferenceExpr() 966 BaseExpr = Converted.get(); in BuildMemberReferenceExpr()
|
| H A D | SemaStmt.cpp | 433 ExprResult Converted = CorrectDelayedTyposInExpr(Val, CheckAndFinish); in ActOnCaseExpr() local 434 if (Converted.get() == Val.get()) in ActOnCaseExpr() 435 Converted = CheckAndFinish(Val.get()); in ActOnCaseExpr() 436 if (Converted.isInvalid()) in ActOnCaseExpr() 438 Val = Converted; in ActOnCaseExpr()
|
| H A D | SemaOverload.cpp | 261 static const Expr *IgnoreNarrowingConversion(const Expr *Converted) { in IgnoreNarrowingConversion() argument 262 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Converted)) { in IgnoreNarrowingConversion() 272 Converted = ICE->getSubExpr(); in IgnoreNarrowingConversion() 276 return Converted; in IgnoreNarrowingConversion() 280 return Converted; in IgnoreNarrowingConversion() 295 ASTContext &Ctx, const Expr *Converted, APValue &ConstantValue, in getNarrowingKind() argument 336 const Expr *Initializer = IgnoreNarrowingConversion(Converted); in getNarrowingKind() 374 const Expr *Initializer = IgnoreNarrowingConversion(Converted); in getNarrowingKind() 420 const Expr *Initializer = IgnoreNarrowingConversion(Converted); in getNarrowingKind()
|
| H A D | SemaExprObjC.cpp | 857 ExprResult Converted = CheckObjCCollectionLiteralElement(*this, in BuildObjCArrayLiteral() local 860 if (Converted.isInvalid()) in BuildObjCArrayLiteral() 863 ElementsBuffer[I] = Converted.get(); in BuildObjCArrayLiteral()
|
| H A D | SemaDeclCXX.cpp | 13909 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr); in BuildStaticAssertDeclaration() local 13910 if (Converted.isInvalid()) in BuildStaticAssertDeclaration() 13913 Converted = ConstantExpr::Create(Context, Converted.get()); in BuildStaticAssertDeclaration() 13916 if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond, in BuildStaticAssertDeclaration() 13930 findFailedBooleanCondition(Converted.get()); in BuildStaticAssertDeclaration()
|
| H A D | SemaDeclAttr.cpp | 999 ExprResult Converted = S.PerformContextuallyConvertToBool(Cond); in checkFunctionConditionAttr() local 1000 if (Converted.isInvalid()) in checkFunctionConditionAttr() 1002 Cond = Converted.get(); in checkFunctionConditionAttr()
|
| H A D | SemaExpr.cpp | 14248 ExprResult Converted; in VerifyIntegerConstantExpression() local 14293 Converted = PerformContextualImplicitConversion(DiagLoc, E, in VerifyIntegerConstantExpression() 14295 if (Converted.isInvalid()) in VerifyIntegerConstantExpression() 14296 return Converted; in VerifyIntegerConstantExpression() 14297 E = Converted.get(); in VerifyIntegerConstantExpression()
|
| H A D | SemaDecl.cpp | 16237 ExprResult Converted = in CheckEnumConstant() local 16240 if (Converted.isInvalid()) in CheckEnumConstant() 16243 Val = Converted.get(); in CheckEnumConstant()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/ |
| H A D | AArch64PromoteConstant.cpp | 350 auto Converted = PromotionCache.insert( in shouldConvert() local 352 if (Converted.second) in shouldConvert() 353 Converted.first->second.ShouldConvert = shouldConvertImpl(&C); in shouldConvert() 354 return Converted.first->second.ShouldConvert; in shouldConvert()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/ |
| H A D | YAMLOutputStyle.cpp | 260 auto Converted = in dumpDbiStream() local 262 if (!Converted) in dumpDbiStream() 263 return Converted.takeError(); in dumpDbiStream() 264 DMI.Subsections.push_back(*Converted); in dumpDbiStream()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/ |
| H A D | SIPeepholeSDWA.cpp | 1129 bool Converted = false; in convertToSDWA() local 1143 Converted |= Operand->convertToSDWA(*SDWAInst, TII); in convertToSDWA() 1145 if (Converted) { in convertToSDWA()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | Template.h | 548 ArrayRef<TemplateArgument> Converted);
|
| H A D | Overload.h | 334 getNarrowingKind(ASTContext &Context, const Expr *Converted,
|
| H A D | Sema.h | 6393 &Converted, 6418 SmallVectorImpl<TemplateArgument> &Converted, 6450 SmallVectorImpl<TemplateArgument> &Converted, 6455 SmallVectorImpl<TemplateArgument> &Converted); 6461 TemplateArgument &Converted, 7914 SmallVectorImpl<TemplateArgument> &Converted,
|
| /freebsd-12.1/contrib/llvm/lib/TableGen/ |
| H A D | Record.cpp | 1388 if (Init *Converted = convertInitializerTo(Ty)) { in getCastTo() local 1389 assert(!isa<TypedInit>(Converted) || in getCastTo() 1390 cast<TypedInit>(Converted)->getType()->typeIsA(Ty)); in getCastTo() 1391 return Converted; in getCastTo()
|
| /freebsd-12.1/contrib/byacc/package/debian/ |
| H A D | changelog | 338 * Converted to new source format (Fixes #8085).
|
| /freebsd-12.1/contrib/binutils/gas/ |
| H A D | NEWS | 324 * Converted this directory to use an autoconf-generated configure script.
|
| /freebsd-12.1/contrib/atf/ |
| H A D | NEWS | 539 * Converted all plain-text distribution documents to a Docbook canonical
|
| /freebsd-12.1/contrib/ntp/ |
| H A D | ChangeLog | 812 * Converted from gtest to Unity: tests/bug-2803/. Damir Tomić 813 * Converted from gtest to Unity: tests/libntp/ a_md5encrypt, atoint.c, 819 * Converted from gtest to Unity: sntp/tests/ kodDatabase.c, kodFile.c, 822 * Converted from gtest to Unity: sntp/tests/ caltontp.c, humandate.c,
|
| H A D | NEWS | 2746 * Converted from gtest to Unity: tests/bug-2803/. Damir Tomić 2747 * Converted from gtest to Unity: tests/libntp/ a_md5encrypt, atoint.c, 2753 * Converted from gtest to Unity: sntp/tests/ kodDatabase.c, kodFile.c,
|
| /freebsd-12.1/contrib/tcpdump/ |
| H A D | CHANGES | 578 Converted print-isakmp.c to NETDISSECT
|
| /freebsd-12.1/contrib/flex/ |
| H A D | ChangeLog | 3770 * faq.texi: Converted faqs 34-41 to texinfo. 4311 * tests/Makefile.in: Converted test script to portable /bin/sh.
|