Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Djson.c466 if (d->type != d->originalType && d->originalType) in jsonProperties()
468 const char *ostr = d->originalType->toChars(); in jsonProperties()
H A Ddeclaration.c76 originalType = NULL; in Declaration()
927 originalType = type->syntaxCopy(); in semantic()
931 if (!originalType) in semantic()
932 originalType = type->syntaxCopy(); in semantic()
H A Ddoc.c1056 Type *origType = d->originalType ? d->originalType : d->type; in toDocBuffer()
2147 Type *t = f->originalType ? f->originalType : f->type; in isTypeFunction()
H A Ddmangle.c377 TypeFunction *tfo = (TypeFunction *)fd->originalType; in mangleFunc()
H A Ddeclaration.h121 Type *originalType; // before semantic analysis variable
H A Dfunc.c518 if (!originalType) in semantic()
519 originalType = type->syntaxCopy(); in semantic()
703 TypeFunction *tfo = originalType->toTypeFunction(); in semantic()
2380 if (!originalType) // semantic not yet run in functionSemantic()
H A Doptimize.c38 if (!v->originalType && v->semanticRun < PASSsemanticdone) // semantic() not yet run in expandVar()
H A Ddtemplate.c961 fd->originalType = fd->type; // for mangling in matchWithInstance()
2722 fd->originalType = fd->type; // for mangling in doHeaderInstantiation()
H A Ddinterpret.c2095 if (!v->originalType && v->semanticRun < PASSsemanticdone) // semantic() not yet run in getVarExp()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddtoh.d886 if (vd.originalType && vd.type == AST.Type.tsize_t)
887 origType = vd.originalType;
1052 if (ad.originalType && ad.type.ty == AST.Tpointer &&
1055 origType = ad.originalType;
2255 auto originalType = cast(AST.TypeFunction)fd.originalType;
2276 tf.next == AST.Type.tsize_t ? originalType.next.accept(this) : tf.next.accept(this);
2288 if (fparam.type == AST.Type.tsize_t && originalType)
2290 fparam = originalType.parameterList[i];
H A Djson.d452 if (d.type != d.originalType && d.originalType) in jsonProperties()
454 auto ostr = d.originalType.toString(); in jsonProperties()
H A Dfunc.d411 if (!originalType) // semantic not yet run in functionSemantic()
2486 auto fo = cast(TypeFunction)(originalType ? originalType : f); in buildEnsureRequire()
2529 auto fo = cast(TypeFunction)(originalType ? originalType : f); in buildEnsureRequire()
3253 tf = fd.originalType.toTypeFunction(); in resolveFuncCall()
H A Ddsymbolsem.d432 dsym.originalType = dsym.type.syntaxCopy(); in visit()
436 if (!dsym.originalType) in visit()
437 dsym.originalType = dsym.type.syntaxCopy(); in visit()
3055 if (!funcdecl.originalType) in funcDeclarationSemantic()
3056 funcdecl.originalType = funcdecl.type.syntaxCopy(); in funcDeclarationSemantic()
3086 funcdecl.originalType = tjf2; in funcDeclarationSemantic()
3223 TypeFunction tfo = funcdecl.originalType.toTypeFunction(); in funcDeclarationSemantic()
6442 if (!ds.originalType && ds.type) in aliasSemantic()
6443 ds.originalType = ds.type.syntaxCopy(); in aliasSemantic()
H A Ddeclaration.h115 Type *originalType; // before semantic analysis variable
H A Ddoc.d1310 Type origType = d.originalType ? d.originalType : d.type; in toDocBuffer()
2654 Type t = f.originalType ? f.originalType : f.type; in isTypeFunction()
H A Ddmangle.d522 TypeFunction tfo = fd.originalType.isTypeFunction(); in mangleFunc()
H A Doptimize.d76 if (!v.originalType && v.semanticRun < PASS.semanticdone) // semantic() not yet run in expandVar()
H A Ddeclaration.d221 Type originalType; // before semantic analysis variable
H A Dcppmangle.d1166 TypeFunction preSemantic = cast(TypeFunction)d.originalType; in mangleTemplatedFunction()
H A Ddtemplate.d1192 fd.originalType = fd.type; // for mangling in matchWithInstance()
2445 fd.originalType = fd.type; // for mangling in doHeaderInstantiation()
H A Dexpressionsem.d5227 if (!v.originalType) in visit()
5228 v.originalType = v.type.syntaxCopy(); in visit()
H A Ddinterpret.d2060 if (!v.originalType && v.semanticRun < PASS.semanticdone) // semantic() not yet run in getVarExp()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DTypeProperties.td29 def : Property<"originalType", QualType> {
36 def : Creator<[{ return ctx.getAdjustedType(originalType, adjustedType); }]>;
46 def : Creator<[{ return ctx.getAdjustedParameterType(originalType); }]>;
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DType.cpp1097 QualType originalType = recurse(T->getOriginalType()); in SUGARED_TYPE_CLASS() local
1098 if (originalType.isNull()) in SUGARED_TYPE_CLASS()
1105 if (originalType.getAsOpaquePtr() in SUGARED_TYPE_CLASS()
1110 return Ctx.getAdjustedType(originalType, adjustedType); in SUGARED_TYPE_CLASS()
1114 QualType originalType = recurse(T->getOriginalType()); in VisitDecayedType() local
1115 if (originalType.isNull()) in VisitDecayedType()
1118 if (originalType.getAsOpaquePtr() in VisitDecayedType()
1122 return Ctx.getDecayedType(originalType); in VisitDecayedType()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSValBuilder.h123 QualType originalType);