OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isPackExpansion
(Results
1 - 25
of
25
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/include/clang/AST/
LambdaCapture.h
129
bool
isPackExpansion
() const { return EllipsisLoc.isValid(); }
134
assert(
isPackExpansion
() && "No ellipsis location for a non-expansion");
Attr.h
54
unsigned
IsPackExpansion
: 1;
82
IsPackExpansion
(false), Implicit(false), IsLateParsed(IsLateParsed),
102
void setPackExpansion(bool PE) {
IsPackExpansion
= PE; }
103
bool
isPackExpansion
() const { return
IsPackExpansion
; }
TemplateBase.h
266
bool
isPackExpansion
() const;
DeclCXX.h
206
bool
isPackExpansion
() const { return EllipsisLoc.isValid(); }
2273
bool
isPackExpansion
() const {
2279
if (!
isPackExpansion
())
3658
bool
isPackExpansion
() const {
3748
bool
isPackExpansion
() const {
DeclTemplate.h
1300
bool
isPackExpansion
() const {
1501
bool
isPackExpansion
() const {
1672
bool
isPackExpansion
() const {
ExprObjC.h
278
bool
isPackExpansion
() const { return EllipsisLoc.isValid(); }
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateVariadic.cpp
119
if (Element.
isPackExpansion
())
174
if (A->
isPackExpansion
())
191
if (D->
isPackExpansion
())
199
if (D->
isPackExpansion
())
207
if (Arg.
isPackExpansion
())
215
if (ArgLoc.getArgument().
isPackExpansion
())
223
if (Base.
isPackExpansion
())
231
if (Init->
isPackExpansion
())
265
if (C->
isPackExpansion
())
1059
assert(Argument.
isPackExpansion
());
[
all
...]
SemaTemplateDeduction.cpp
2318
if (Arg.
isPackExpansion
())
2458
if (A.
isPackExpansion
())
2485
if (!Params[ParamIdx].
isPackExpansion
()) {
2497
if (Args[ArgIdx].
isPackExpansion
())
2567
if (PackExpansionMatchesPack && X.
isPackExpansion
() && !Y.
isPackExpansion
())
5670
assert(Arg.pack_size() == 1 && Arg.pack_begin()->
isPackExpansion
());
SemaTemplateInstantiateDecl.cpp
85
const AlignedAttr *Aligned, Decl *New, bool
IsPackExpansion
) {
92
S.AddAlignedAttr(New, *Aligned, Result.getAs<Expr>(),
IsPackExpansion
);
98
S.AddAlignedAttr(New, *Aligned, Result,
IsPackExpansion
);
105
if (!Aligned->
isPackExpansion
()) {
726
assert(!TmplAttr->
isPackExpansion
());
2589
if (D->
isPackExpansion
() && !D->isExpandedParameterPack()) {
2704
} else if (D->
isPackExpansion
()) {
2870
} else if (D->
isPackExpansion
()) {
3105
if (D->
isPackExpansion
() && !InstantiatingPackElement) {
5407
if (Init->
isPackExpansion
()) {
[
all
...]
SemaTemplateInstantiate.cpp
1211
if (Arg.
isPackExpansion
())
1375
assert(Arg.pack_size() == 1 && Arg.pack_begin()->
isPackExpansion
() &&
1448
assert(Arg.pack_size() == 1 && Arg.pack_begin()->
isPackExpansion
() &&
1789
assert(Arg.pack_size() == 1 && Arg.pack_begin()->
isPackExpansion
() &&
2507
if (Base.
isPackExpansion
()) {
SemaTemplate.cpp
2765
if (!NewNonTypeParm->
isPackExpansion
())
2808
if (!NewTemplateParm->
isPackExpansion
())
4162
!Arg.pack_begin()->
isPackExpansion
())
5717
NewArgs[ArgIdx].getArgument().
isPackExpansion
() &&
5893
while (ArgIdx < NumArgs && NewArgs[ArgIdx].getArgument().
isPackExpansion
())
TreeTransform.h
4497
if (In.getArgument().
isPackExpansion
()) {
5702
bool
IsPackExpansion
= false;
5769
IsPackExpansion
= true;
5779
if (
IsPackExpansion
)
12844
if (C->
isPackExpansion
()) {
13280
if (!Arg.
isPackExpansion
()) {
13340
if (Loc.getArgument().
isPackExpansion
())
13591
if (OrigElement.
isPackExpansion
()) {
SemaDeclAttr.cpp
3868
if (AL.
isPackExpansion
() && !E->containsUnexpandedParameterPack()) {
3874
if (!AL.
isPackExpansion
() && S.DiagnoseUnexpandedParameterPack(E))
3877
S.AddAlignedAttr(D, AL, E, AL.
isPackExpansion
());
3881
bool
IsPackExpansion
) {
3936
AA->setPackExpansion(
IsPackExpansion
);
3986
AA->setPackExpansion(
IsPackExpansion
);
3991
TypeSourceInfo *TS, bool
IsPackExpansion
) {
3995
AA->setPackExpansion(
IsPackExpansion
);
SemaDecl.cpp
14117
/*EllipsisLoc*/C.
isPackExpansion
()
/src/external/apache2/llvm/dist/clang/lib/AST/
TemplateBase.cpp
244
bool TemplateArgument::
isPackExpansion
() const {
392
assert(
isPackExpansion
());
DeclPrinter.cpp
364
if (BMInitializer->
isPackExpansion
())
1025
if (Base->
isPackExpansion
())
StmtPrinter.cpp
1995
if (C->
isPackExpansion
())
2414
if (Element.
isPackExpansion
())
JSONNodeDumper.cpp
494
if (BS.
isPackExpansion
())
495
Ret["
isPackExpansion
"] = true;
TextNodeDumper.cpp
1991
if (I.
isPackExpansion
())
ASTImporter.cpp
967
if (From.
isPackExpansion
())
2007
if (Base1.
isPackExpansion
()) {
8290
To->setPackExpansion(From->
isPackExpansion
());
8940
if (From->
isPackExpansion
())
StmtProfile.cpp
1924
ID.AddBoolean(C->
isPackExpansion
());
ItaniumMangle.cpp
5197
if (Arg.
isPackExpansion
() &&
ASTContext.cpp
4711
if (Arg.
isPackExpansion
())
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
ParsedAttr.h
462
bool
isPackExpansion
() const { return EllipsisLoc.isValid(); }
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriter.cpp
5472
AddSourceLocation(Base.
isPackExpansion
()? Base.getEllipsisLoc()
5596
AddSourceLocation(Capture.
isPackExpansion
() ? Capture.getEllipsisLoc()
Completed in 126 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026