/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
H A D | denum.c | 499 EnumMember::EnumMember(Loc loc, Identifier *id, Expression *value, Type *origType) in EnumMember() argument 504 this->origType = origType; in EnumMember() 517 origType ? origType->syntaxCopy() : NULL); in syntaxCopy() 561 if (origType) in semantic() 563 origType = origType->semantic(loc, sc); in semantic() 564 type = origType; in semantic() 594 if (!em || em == this || em->semanticRun < PASSsemanticdone || em->origType) in semantic() 614 if (ed->memtype && !origType) in semantic() 628 else if (origType) in semantic() 630 e = e->implicitCastTo(sc, origType); in semantic() [all …]
|
H A D | enum.h | 83 Type *origType; variable 87 EnumMember(Loc loc, Identifier *id, Expression *value, Type *origType);
|
H A D | doc.c | 1056 Type *origType = d->originalType ? d->originalType : d->type; in toDocBuffer() local 1057 if (origType->ty == Tfunction) in toDocBuffer() 1059 functionToBufferFull((TypeFunction *)origType, buf, d->ident, &hgs, td); in toDocBuffer() 1062 ::toCBuffer(origType, buf, d->ident, &hgs); in toDocBuffer()
|
H A D | dstruct.c | 1371 Type *origType = t; in fit() local 1404 t = origType; // restore type for better diagnostic in fit()
|
H A D | dinterpret.c | 5725 Type *origType = ie->e1->type->nextOf(); in visit() local 5737 origType = ((IndexExp *)xx)->e1->type->nextOf(); in visit() 5739 origType= ((AddrExp *)xx)->e1->type; in visit() 5741 origType = ((VarExp *)xx)->var->type; in visit() 5745 if (!isSafePointerCast(origType, pointee)) in visit() 5747 …ng void* to reinterpret cast from %s* to %s* is not supported in CTFE", origType->toChars(), point… in visit() 5760 Type *origType = ae->e1->type; in visit() local 5761 if (isSafePointerCast(origType, pointee)) in visit() 5786 Type *origType = ((SymbolExp *)e1)->var->type; in visit() local 5787 if (castBackFromVoid && !isSafePointerCast(origType, pointee)) in visit() [all …]
|
H A D | json.c | 841 property("type", "deco", s->origType); in visit()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | denum.d | 268 Type origType; variable 272 extern (D) this(const ref Loc loc, Identifier id, Expression value, Type origType) in this() argument 276 this.origType = origType; in this() 294 origType ? origType.syntaxCopy() : null, in syntaxCopy()
|
H A D | enum.h | 77 Type *origType; variable
|
H A D | dtoh.d | 269 AST.Type origType; 887 origType = vd.originalType; 888 scope(exit) origType = null; 1055 origType = ad.originalType; 1057 scope(exit) origType = null; 1060 typeToBuffer(origType !is null ? origType : t, ad); 1708 auto type = origType !is null ? origType : t;
|
H A D | dinterpret.d | 5879 Type origType = ie.e1.type.nextOf(); in visit() local 5890 origType = iex.e1.type.nextOf(); in visit() 5892 origType = ae.e1.type; in visit() 5894 origType = ve.var.type; in visit() 5898 if (!isSafePointerCast(origType, pointee)) in visit() 5900 …id*` to reinterpret cast from `%s*` to `%s*` is not supported in CTFE", origType.toChars(), pointe… in visit() 5913 Type origType = ae.e1.type; in visit() local 5914 if (isSafePointerCast(origType, pointee)) in visit() 5941 Type origType = (cast(SymbolExp)e1).var.type; in visit() local 5942 if (castBackFromVoid && !isSafePointerCast(origType, pointee)) in visit() [all …]
|
H A D | dsymbolsem.d | 2283 if (em.origType) in visit() 2285 em.origType = em.origType.typeSemantic(em.loc, sc); in visit() 2286 em.type = em.origType; in visit() 2317 … if (!enm || enm == em || enm.semanticRun < PASS.semanticdone || enm.origType) in visit() 2338 if (em.ed.memtype && !em.origType) in visit() 2352 else if (em.origType) in visit() 2354 e = e.implicitCastTo(sc, em.origType); in visit() 2468 if (!em.origType) in visit()
|
H A D | json.d | 779 property("type", "deco", s.origType); in visit()
|
H A D | doc.d | 1310 Type origType = d.originalType ? d.originalType : d.type; in toDocBuffer() local 1311 if (origType.ty == Tfunction) in toDocBuffer() 1313 functionToBufferFull(cast(TypeFunction)origType, buf, d.ident, &hgs, td); in toDocBuffer() 1316 .toCBuffer(origType, buf, d.ident, &hgs); in toDocBuffer()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | CGObjC.cpp | 2125 llvm::Type *origType = returnType ? returnType : value->getType(); in emitARCValueOperation() local 2133 return CGF.Builder.CreateBitCast(call, origType); in emitARCValueOperation() 2147 llvm::Type *origType = addr.getElementType(); in emitARCLoadOperation() local 2154 if (origType != CGF.Int8PtrTy) in emitARCLoadOperation() 2155 result = CGF.Builder.CreateBitCast(result, origType); in emitARCLoadOperation() 2174 llvm::Type *origType = value->getType(); in emitARCStoreOperation() local 2184 return CGF.Builder.CreateBitCast(result, origType); in emitARCStoreOperation() 2229 llvm::Type *origType = returnType ? returnType : value->getType(); in emitObjCValueOperation() local 2242 return CGF.Builder.CreateBitCast(Inst, origType); in emitObjCValueOperation() 2539 llvm::Type *origType = value->getType(); in EmitARCRetainAutorelease() local [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/ |
H A D | ELFObjectWriter.cpp | 474 static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) { in mergeTypeForSet() argument 482 switch (origType) { in mergeTypeForSet()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaType.cpp | 6674 QualType origType = type; in handleObjCOwnershipTypeAttr() local 6683 origType, type); in handleObjCOwnershipTypeAttr() 6779 QualType origType = type; in handleObjCGCTypeAttr() local 6780 type = S.Context.getObjCGCQualType(origType, GCAttr); in handleObjCGCTypeAttr() 6785 ::new (S.Context) ObjCGCAttr(S.Context, attr, II), origType, type); in handleObjCGCTypeAttr() 7434 QualType origType = type; in handleFunctionTypeAttr() local 7442 origType, type); in handleFunctionTypeAttr()
|
H A D | SemaExprObjC.cpp | 1431 QualType origType = T; in stripObjCInstanceType() local 1440 return origType; in stripObjCInstanceType() 1446 return origType; in stripObjCInstanceType()
|
/netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/ |
H A D | jquery.js | 2 …origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(… property
|
/netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/ |
H A D | jquery.js | 2 …origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(… property
|
/netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/ |
H A D | jquery.js | 2 …origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(… property
|
/netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/ |
H A D | jquery.js | 2 …origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(… property
|
/netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/ |
H A D | jquery.js | 2 …origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(… property
|
/netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/ |
H A D | jquery.js | 2 …origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(… property
|
/netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/ |
H A D | jquery.js | 2 …origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(… property
|
/netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/ |
H A D | jquery.js | 2 …origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(… property
|