Home
last modified time | relevance | path

Searched refs:Pack (Results 1 – 25 of 163) sorted by relevance

1234567

/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dmeta.d328 static assert(Pack!(Erase!(int,
332 static assert(Pack!(Erase!(1,
360 static assert(Pack!(EraseAll!(int,
364 static assert(Pack!(EraseAll!(1,
427 Pack!(
496 static assert(Pack!(Replace!(byte, ubyte,
500 static assert(Pack!(Replace!(1111, byte,
504 static assert(Pack!(Replace!(byte, 1111,
508 static assert(Pack!(Replace!(1111, "11",
540 static assert(Pack!(ReplaceAll!(byte, ubyte,
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dmeta.d395 static assert(Pack!(Erase!(int,
399 static assert(Pack!(Erase!(1,
458 static assert(Pack!(EraseAll!(int,
462 static assert(Pack!(EraseAll!(1,
521 Pack!(
590 static assert(Pack!(Replace!(byte, ubyte,
594 static assert(Pack!(Replace!(1111, byte,
598 static assert(Pack!(Replace!(byte, 1111,
602 static assert(Pack!(Replace!(1111, "11",
670 static assert(Pack!(ReplaceAll!(byte, ubyte,
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp303 for (auto &Pack : Unexpanded) { in DiagnoseUnexpandedParameterPacks() local
305 if (auto *TTPT = Pack.first.dyn_cast<const TemplateTypeParmType *>()) { in DiagnoseUnexpandedParameterPacks()
309 return declaresSameEntity(Pack.first.get<NamedDecl *>(), LocalPack); in DiagnoseUnexpandedParameterPacks()
313 LambdaParamPackReferences.push_back(Pack); in DiagnoseUnexpandedParameterPacks()
1106 case TemplateArgument::Pack: in getTemplateArgumentPackExpansionPattern()
1122 TemplateArgument Pack; in getFullyPackExpandedSize() local
1126 Pack = Subst->getArgumentPack(); in getFullyPackExpandedSize()
1134 Pack = Subst->getArgumentPack(); in getFullyPackExpandedSize()
1147 Pack = Subst->getArgumentPack(); in getFullyPackExpandedSize()
1156 case TemplateArgument::Pack: in getFullyPackExpandedSize()
[all …]
H A DSemaTemplateDeduction.cpp356 case TemplateArgument::Pack: { in checkDeducedTemplateArguments()
357 if (Y.getKind() != TemplateArgument::Pack || in checkDeducedTemplateArguments()
711 DeducedPack Pack(Index); in addPack() local
712 Pack.Saved = Deduced[Index]; in addPack()
722 Packs.push_back(Pack); in addPack()
809 for (auto &Pack : Packs) { in finishConstruction() local
810 if (Info.PendingDeducedPacks.size() > Pack.Index) in finishConstruction()
811 Pack.Outer = Info.PendingDeducedPacks[Pack.Index]; in finishConstruction()
813 Info.PendingDeducedPacks.resize(Pack.Index + 1); in finishConstruction()
814 Info.PendingDeducedPacks[Pack.Index] = &Pack; in finishConstruction()
[all …]
H A DSemaTemplateInstantiate.cpp965 void ExpandingFunctionParameterPack(ParmVarDecl *Pack) { in ExpandingFunctionParameterPack() argument
966 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(Pack); in ExpandingFunctionParameterPack()
1233 assert(Arg.getKind() == TemplateArgument::Pack && in TransformDecl()
1274 assert(Arg.getKind() == TemplateArgument::Pack && in TransformFirstQualifierInScope()
1374 if (Arg.getKind() == TemplateArgument::Pack) { in TransformTemplateName()
1385 assert(Arg.getKind() == TemplateArgument::Pack && in TransformTemplateName()
1447 if (Arg.getKind() == TemplateArgument::Pack) { in TransformTemplateParmRefExpr()
1460 assert(Arg.getKind() == TemplateArgument::Pack && in TransformTemplateParmRefExpr()
1685 if (DeclArgumentPack *Pack = Found->dyn_cast<DeclArgumentPack *>()) { in TransformFunctionParmPackRefExpr() local
1693 E->getExprLoc(), *Pack); in TransformFunctionParmPackRefExpr()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DTemplateBase.cpp228 case Pack: in getDependence()
249 case Pack: in isPackExpansion()
285 case TemplateArgument::Pack: in getNonTypeTemplateArgumentType()
351 case Pack: in Profile()
380 case Pack: in structurallyEquals()
406 case Pack: in getPackExpansionPattern()
470 case Pack: in print()
531 case TemplateArgument::Pack: in getSourceRange()
578 case TemplateArgument::Pack: { in DiagTemplateArg()
H A DDeclPrinter.cpp121 void printDeclType(QualType T, StringRef DeclName, bool Pack = false);
276 void DeclPrinter::printDeclType(QualType T, StringRef DeclName, bool Pack) { in printDeclType() argument
281 Pack = true; in printDeclType()
284 T.print(Out, Policy, (Pack ? "..." : "") + DeclName, Indentation); in printDeclType()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DTemplateBase.h101 Pack
230 this->Args.Kind = Pack;
353 assert(getKind() == Pack);
360 assert(getKind() == Pack);
373 assert(getKind() == Pack);
379 assert(getKind() == Pack);
H A DTemplateArgumentVisitor.h43 DISPATCH(Pack); in Visit()
65 VISIT_METHOD(Pack);
H A DExprCXX.h4156 NamedDecl *Pack = nullptr; variable
4160 SizeOfPackExpr(QualType SizeType, SourceLocation OperatorLoc, NamedDecl *Pack, in SizeOfPackExpr() argument
4166 Length(Length ? *Length : PartialArgs.size()), Pack(Pack) { in SizeOfPackExpr()
4181 NamedDecl *Pack, SourceLocation PackLoc,
4198 NamedDecl *getPack() const { return Pack; } in getPack()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/common/
H A DREADME.md5 | [bitfields.d](https://github.com/dlang/dmd/blob/master/src/dmd/common/bitfields.d) | Pack multipl…
/netbsd-src/common/dist/zlib/contrib/dotzlib/DotZLib/
H A DDotZLib.cs29 [StructLayoutAttribute(LayoutKind.Sequential, Pack=4, Size=0, CharSet=CharSet.Ansi)]
/netbsd-src/external/gpl3/binutils/dist/zlib/contrib/dotzlib/DotZLib/
H A DDotZLib.cs29 [StructLayoutAttribute(LayoutKind.Sequential, Pack=4, Size=0, CharSet=CharSet.Ansi)]
/netbsd-src/external/gpl3/binutils.old/dist/zlib/contrib/dotzlib/DotZLib/
H A DDotZLib.cs29 [StructLayoutAttribute(LayoutKind.Sequential, Pack=4, Size=0, CharSet=CharSet.Ansi)]
/netbsd-src/external/gpl3/gdb.old/dist/zlib/contrib/dotzlib/DotZLib/
H A DDotZLib.cs29 [StructLayoutAttribute(LayoutKind.Sequential, Pack=4, Size=0, CharSet=CharSet.Ansi)]
/netbsd-src/external/gpl3/gdb/dist/zlib/contrib/dotzlib/DotZLib/
H A DDotZLib.cs29 [StructLayoutAttribute(LayoutKind.Sequential, Pack=4, Size=0, CharSet=CharSet.Ansi)]
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/
H A DPKCS12_pack_p7encdata.pod5 PKCS12_pack_p7encdata, PKCS12_pack_p7encdata_ex - Pack a set of PKCS#12 safeBags
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/VE/
H A DVEInstrIntrinsicVL.td8 // Pack patterns.
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h1739 const Node *Pack; variable
1743 : Node(KSizeofParamPackExpr), Pack(Pack_) {} in SizeofParamPackExpr()
1745 template<typename Fn> void match(Fn F) const { F(Pack); } in match()
1749 ParameterPackExpansion PPE(Pack); in printLeft()
1972 const Node *Pack, *Init; variable
1979 : Node(KFoldExpr), Pack(Pack_), Init(Init_), OperatorName(OperatorName_), in FoldExpr()
1983 F(IsLeftFold, OperatorName, Pack, Init); in match()
1989 ParameterPackExpansion(Pack).print(S); in printLeft()
4444 Node *Pack = getDerived().parseExpr(), *Init = nullptr; in parseFoldExpr() local
4445 if (Pack == nullptr) in parseFoldExpr()
[all …]
/netbsd-src/sys/arch/mvme68k/docs/
H A DTODO15 3. Support for "Industry Pack" modules (4)
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/frv/
H A Dfrv.opt203 Pack VLIW instructions.
/netbsd-src/external/gpl3/gcc/dist/gcc/config/frv/
H A Dfrv.opt203 Pack VLIW instructions.
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DTemplate.h439 void SetPartiallySubstitutedPack(NamedDecl *Pack,
/netbsd-src/external/gpl3/gcc/dist/libgfortran/m4/
H A Dpack.m437 Description: Pack an array into an array of rank one under the
/netbsd-src/external/gpl3/gcc.old/dist/libgfortran/m4/
H A Dpack.m437 Description: Pack an array into an array of rank one under the

1234567