Home
last modified time | relevance | path

Searched refs:Converted (Results 1 – 25 of 51) sorted by relevance

123

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaConcept.cpp401 llvm::SmallVectorImpl<Expr *> &Converted, in CheckConstraintSatisfaction() argument
432 Converted.push_back(Res.get()); in CheckConstraintSatisfaction()
436 Converted.append(ConstraintExprs.size() - Converted.size(), nullptr); in CheckConstraintSatisfaction()
651 llvm::SmallVector<Expr *, 1> Converted; in CheckFunctionConstraints() local
654 FD, {RC}, Converted, *MLTAL, in CheckFunctionConstraints()
663 assert(Converted.size() <= 1 && "Got more expressions converted?"); in CheckFunctionConstraints()
664 if (!Converted.empty() && Converted[0] != nullptr) in CheckFunctionConstraints()
665 const_cast<FunctionDecl *>(FD)->setTrailingRequiresClause(Converted[0]); in CheckFunctionConstraints()
828 llvm::SmallVector<Expr *, 1> Converted; in CheckInstantiatedFunctionTemplateConstraints() local
829 return CheckConstraintSatisfaction(Template, TemplateAC, Converted, *MLTAL, in CheckInstantiatedFunctionTemplateConstraints()
H A DSemaExceptionSpec.cpp92 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 DSemaExprMember.cpp970 ExprResult Converted = TemporaryMaterializationConversion(BaseExpr); in BuildMemberReferenceExpr() local
971 if (Converted.isInvalid()) in BuildMemberReferenceExpr()
973 BaseExpr = Converted.get(); in BuildMemberReferenceExpr()
H A DSemaTemplateInstantiateDecl.cpp239 ExprResult Converted = S.PerformContextuallyConvertToBool(Cond); in instantiateDependentFunctionAttrCondition() local
240 if (Converted.isInvalid()) in instantiateDependentFunctionAttrCondition()
242 Cond = Converted.get(); in instantiateDependentFunctionAttrCondition()
3915 ArrayRef<TemplateArgument> Converted, in VisitVarTemplateSpecializationDecl() argument
3934 VarTemplate, DI->getType(), DI, D->getStorageClass(), Converted); in VisitVarTemplateSpecializationDecl()
3938 VarTemplate->findSpecialization(Converted, InsertPos); in VisitVarTemplateSpecializationDecl()
5114 SmallVectorImpl<TemplateArgument> &Converted, in BuildVarTemplateInstantiation() argument
5156 VarTemplate, FromVar, TemplateArgsInfo, Converted)); in BuildVarTemplateInstantiation()
H A DSemaTemplate.cpp3595 ArrayRef<TemplateArgument> Converted, in checkBuiltinTemplateIdType() argument
3605 QualType OrigType = Converted[1].getAsType(); in checkBuiltinTemplateIdType()
3614 TemplateArgument NumArgsArg = Converted[2]; in checkBuiltinTemplateIdType()
3617 Converted); in checkBuiltinTemplateIdType()
3645 return SemaRef.CheckTemplateIdType(Converted[0].getAsTemplate(), in checkBuiltinTemplateIdType()
3653 assert(Converted.size() == 2 && in checkBuiltinTemplateIdType()
3656 TemplateArgument IndexArg = Converted[0], Ts = Converted[1]; in checkBuiltinTemplateIdType()
3659 Converted); in checkBuiltinTemplateIdType()
H A DSemaStmt.cpp501 ExprResult Converted = CorrectDelayedTyposInExpr( in ActOnCaseExpr() local
504 if (Converted.get() == Val.get()) in ActOnCaseExpr()
505 Converted = CheckAndFinish(Val.get()); in ActOnCaseExpr()
506 return Converted; in ActOnCaseExpr()
H A DSemaOverload.cpp272 const Expr *Converted) { in IgnoreNarrowingConversion() argument
275 if (auto *EWC = dyn_cast<ExprWithCleanups>(Converted)) { in IgnoreNarrowingConversion()
282 while (auto *ICE = dyn_cast<ImplicitCastExpr>(Converted)) { in IgnoreNarrowingConversion()
292 Converted = ICE->getSubExpr(); in IgnoreNarrowingConversion()
296 return Converted; in IgnoreNarrowingConversion()
300 return Converted; in IgnoreNarrowingConversion()
315 ASTContext &Ctx, const Expr *Converted, APValue &ConstantValue, in getNarrowingKind() argument
354 const Expr *Initializer = IgnoreNarrowingConversion(Ctx, Converted); in getNarrowingKind()
393 const Expr *Initializer = IgnoreNarrowingConversion(Ctx, Converted); in getNarrowingKind()
438 const Expr *Initializer = IgnoreNarrowingConversion(Ctx, Converted); in getNarrowingKind()
H A DSemaExprObjC.cpp880 ExprResult Converted = CheckObjCCollectionLiteralElement(*this, in BuildObjCArrayLiteral() local
883 if (Converted.isInvalid()) in BuildObjCArrayLiteral()
886 ElementsBuffer[I] = Converted.get(); in BuildObjCArrayLiteral()
/openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DYAMLOutputStyle.cpp256 auto Converted = in dumpDbiStream() local
258 if (!Converted) in dumpDbiStream()
259 return Converted.takeError(); in dumpDbiStream()
260 DMI.Subsections.push_back(*Converted); in dumpDbiStream()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64PromoteConstant.cpp364 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()
/openbsd-src/gnu/usr.bin/perl/dist/encoding-warnings/
H A DChanges3 - Converted Makefile.PL from using Module::Install to ExtUtils::MakeMaker
/openbsd-src/gnu/usr.bin/gcc/gcc/config/i960/
H A Di960-modes.def5 Converted to GCC 2.0 by Jim Wilson and Michael Tiemann, Cygnus Support.
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/
H A DUtil.t54 is(pkg_to_file('A::Package::Name'), 'A/Package/Name.pm', "Converted package to file");
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DDeclTemplate.cpp1085 ArrayRef<TemplateArgument> Converted) { in setTemplateArguments() argument
1086 assert(Converted.size() == NumTemplateArgs); in setTemplateArguments()
1087 std::uninitialized_copy(Converted.begin(), Converted.end(), in setTemplateArguments()
H A DType.cpp3758 const TemplateArgumentListInfo &Args, ArrayRef<TemplateArgument> Converted) { in anyDependentTemplateArguments() argument
3759 return anyDependentTemplateArguments(Args.arguments(), Converted); in anyDependentTemplateArguments()
3763 ArrayRef<TemplateArgumentLoc> Args, ArrayRef<TemplateArgument> Converted) { in anyDependentTemplateArguments() argument
3764 for (const TemplateArgument &Arg : Converted) in anyDependentTemplateArguments()
/openbsd-src/gnu/usr.bin/perl/dist/constant/
H A DChanges60 [DOC] Converted files to UTF-8.
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DSIPeepholeSDWA.cpp1121 bool Converted = false; in convertToSDWA() local
1135 Converted |= Operand->convertToSDWA(*SDWAInst, TII); in convertToSDWA()
1137 if (Converted) { in convertToSDWA()
/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DLiteralSupport.cpp518 bool Converted = in DiagnoseInvalidUnicodeCharacterName() local
520 (void)Converted; in DiagnoseInvalidUnicodeCharacterName()
521 assert(Converted && "Found a match wich is not a unicode character"); in DiagnoseInvalidUnicodeCharacterName()
/openbsd-src/gnu/llvm/clang/lib/Basic/Targets/
H A DX86.cpp1549 std::string Converted = "{" + std::string(Constraint, Len) + "}"; in convertConstraint() local
1551 return Converted; in convertConstraint()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DTemplate.h680 ArrayRef<TemplateArgument> Converted,
H A DOverload.h362 getNarrowingKind(ASTContext &Context, const Expr *Converted,
/openbsd-src/gnu/llvm/llvm/lib/TableGen/
H A DRecord.cpp1867 if (Init *Converted = convertInitializerTo(Ty)) { in getCastTo() local
1868 assert(!isa<TypedInit>(Converted) || in getCastTo()
1869 cast<TypedInit>(Converted)->getType()->typeIsA(Ty)); in getCastTo()
1870 return Converted; in getCastTo()
/openbsd-src/gnu/usr.bin/binutils/gas/
H A DNEWS246 * Converted this directory to use an autoconf-generated configure script.
/openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/
H A DChanges665 - Converted from ExtUtils::xsubpp in bleadperl
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/
H A DNEWS316 * Converted this directory to use an autoconf-generated configure script.

123