Home
last modified time | relevance | path

Searched refs:isAggregate (Results 1 – 25 of 41) sorted by relevance

12

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dopover.d305 AggregateDeclaration ad = isAggregate(t1b); in visitUna()
376 AggregateDeclaration ad = isAggregate(e.e1.type); in visitUna()
445 AggregateDeclaration ad = isAggregate(t1b); in visitArray()
553 AggregateDeclaration ad = isAggregate(e.e1.type); in visitCast()
605 AggregateDeclaration ad1 = isAggregate(e.e1.type); in visitBin()
606 AggregateDeclaration ad2 = isAggregate(e.e2.type); in visitBin()
1120 AggregateDeclaration ad = isAggregate(t1b); in visitBinAssign()
1205 AggregateDeclaration ad1 = isAggregate(e.e1.type); in visitBinAssign()
1277 return checkAliasThisForRhs(isAggregate(e.e2.type), sc, e); in visitBinAssign()
1310 AggregateDeclaration ad1 = isAggregate(e.e1.type); in compare_overload()
[all …]
H A Daliasthis.d89 for (AggregateDeclaration ad = isAggregate(e.type); ad;)
H A Dmtype.h933 AggregateDeclaration *isAggregate(Type *t);
H A Ddcast.d83 auto ad = isAggregate(e.type); in implicitCastTo()
95 if (ad != isAggregate(tob)) in implicitCastTo()
1616 if (AggregateDeclaration t1ad = isAggregate(t1b)) in visit()
1618 AggregateDeclaration toad = isAggregate(tob); in visit()
H A Dexpressionsem.d211 AggregateDeclaration ad = isAggregate(ae.e1.type); in resolveOpDollar()
5860 if (auto ad = isAggregate(exp.e1.type)) in visit()
7604 if (auto ad = isAggregate(t1b)) in visit()
7830 if (auto ad = isAggregate(tp.next.toBasetype())) in visit()
8130 if (isAggregate(exp.e1.type)) in visit()
8754 AggregateDeclaration ad = isAggregate(t1b); in visit()
9215 AggregateDeclaration ad2 = isAggregate(e2x.type); in visit()
9300 AggregateDeclaration ad2 = isAggregate(e2x.type); in visit()
10173 AggregateDeclaration ad1 = isAggregate(exp.e1.type); in visit()
10192 AggregateDeclaration ad2 = isAggregate(exp.e2.type); in visit()
[all …]
H A Dsemantic3.d867 AggregateDeclaration aggDecl = isAggregate(exp.type); in visit()
H A Dmtype.d2005 auto ad = isAggregate(this); in hasDeprecatedAliasThis()
2011 auto ad = isAggregate(this); in aliasthisOf()
7181 extern (C++) AggregateDeclaration isAggregate(Type t) in isAggregate() function
H A Dtraits.d1893 AggregateDeclaration ad = t ? isAggregate(t) : null; in semanticTraits()
H A Ddsymbol.d2032 AggregateDeclaration ad = isAggregate(t);
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dopover.c159 AggregateDeclaration *isAggregate(Type *t) in isAggregate() function
263 AggregateDeclaration *ad = isAggregate(t1b); in op_overload()
344 AggregateDeclaration *ad = isAggregate(e->e1->type); in op_overload()
421 AggregateDeclaration *ad = isAggregate(t1b); in op_overload()
534 AggregateDeclaration *ad = isAggregate(e->e1->type); in op_overload()
586 AggregateDeclaration *ad1 = isAggregate(e->e1->type); in op_overload()
587 AggregateDeclaration *ad2 = isAggregate(e->e2->type); in op_overload()
1164 AggregateDeclaration *ad = isAggregate(t1b); in op_overload()
1264 AggregateDeclaration *ad1 = isAggregate(e->e1->type); in op_overload()
1364 AggregateDeclaration *ad2 = isAggregate(e->e2->type); in op_overload()
[all …]
H A Daliasthis.c27 AggregateDeclaration *ad = isAggregate(e->type); in resolveAliasThis()
H A Ddsymbol.c1706 AggregateDeclaration *ad = isAggregate(t); in search()
H A Dexpressionsem.c878 if (fdthis && ad && isAggregate(fdthis->vthis->type) == ad && in visit()
890 if (fdthis && ad && isAggregate(fdthis->vthis->type) == ad) in visit()
4787 if (isAggregate(exp->e1->type)) in visit()
5232 AggregateDeclaration *ad = isAggregate(t1b); in visit()
5712 AggregateDeclaration *ad2 = isAggregate(e2x->type); in visit()
8605 AggregateDeclaration *ad = isAggregate(t1bn); in semanticY()
H A Ddcast.c1406 if (AggregateDeclaration *t1ad = isAggregate(t1b)) in castTo()
1408 AggregateDeclaration *toad = isAggregate(tob); in castTo()
H A Dexpression.h82 AggregateDeclaration *isAggregate(Type *t);
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGValue.h54 bool isAggregate() const { return V1.getInt() == Aggregate; } in isAggregate() function
72 assert(isAggregate() && "Not an aggregate!"); in getAggregateAddress()
77 assert(isAggregate() && "Not an aggregate!"); in getAggregatePointer()
H A DCGCall.h257 bool isAggregate() const { return HasLV || RV.isAggregate(); } in isAggregate() function
H A DCGAtomic.cpp1616 if (rvalue.isAggregate()) { in emitCopyIntoMemory()
1649 if (rvalue.isAggregate()) in materializeRValue()
2002 assert(!rvalue.isAggregate() || in EmitAtomicStore()
2073 assert(!Expected.isAggregate() || in EmitAtomicCompareExchange()
2076 assert(!Desired.isAggregate() || in EmitAtomicCompareExchange()
H A DCGCleanup.cpp29 if (rv.isAggregate()) in needsSaving()
60 assert(rv.isAggregate()); in save()
H A DCGCall.cpp4725 if (I->isAggregate()) { in EmitCall()
4778 if (!I->isAggregate()) { in EmitCall()
4877 if (!I->isAggregate()) in EmitCall()
4920 if (!I->isAggregate()) { in EmitCall()
4988 if (I->isAggregate()) { in EmitCall()
H A DCGExprAgg.cpp316 assert(src.isAggregate() && "value must be aggregate value!"); in EmitFinalDestCopy()
1025 if (RV.isAggregate()) in VisitBinCmp()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaFixItUtils.cpp213 if (RD->isAggregate()) in getFixItZeroInitializerForType()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclCXX.h1097 bool isAggregate() const { return data().Aggregate; } in isAggregate() function
1404 (isAggregate() || isLambda() || in isLiteral()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DJSONNodeDumper.cpp449 FIELD1(isAggregate); in createCXXRecordDefinitionData()
H A DTextNodeDumper.cpp1874 FLAG(isAggregate, aggregate); in VisitCXXRecordDecl()

12