Home
last modified time | relevance | path

Searched refs:destType (Results 1 – 12 of 12) sorted by relevance

/external/libusb_aah/msvc/
Dddk_build.cmd31 set destType=Win32 variable
34 set destType=x64 variable
39 set dstPath=%destType%\Debug
41 set dstPath=%destType%\Release
44 if exist %destType% goto md2
45 mkdir %destType%
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DExpressionTranslator.java356 private JavaExpression infix(Type destType, Type srcType, String infix, PExpression leftNode, in infix() argument
360 return JavaExpression.infix(destType, infix, left, right); in infix()
363 private JavaExpression prefix(Type destType, Type srcType, String prefix, PExpression node) { in prefix() argument
364 return JavaExpression.prefix(destType, prefix, cast(srcType, node)); in prefix()
DJavaExpression.java163 public JavaExpression cast(Type destType) {
164 return (type != destType) ? destType.cast(this) : this;
/external/javassist/src/main/javassist/compiler/
DCodeGen.java898 int destType, int destDim, String destClass, in invalidDim() argument
904 else if (destDim == 0 && destType == CLASS in invalidDim()
1408 void atNumCastExpr(int srcType, int destType) in atNumCastExpr() argument
1411 if (srcType == destType) in atNumCastExpr()
1416 int dtype = typePrecedence(destType); in atNumCastExpr()
1422 if (destType == DOUBLE) in atNumCastExpr()
1424 else if (destType == FLOAT) in atNumCastExpr()
1426 else if (destType == LONG) in atNumCastExpr()
1428 else if (destType == SHORT) in atNumCastExpr()
1430 else if (destType == CHAR) in atNumCastExpr()
[all …]
DJvstTypeChecker.java117 int destType = MemberResolver.descToType(pt.getDescriptor()); in atCastToRtype() local
118 exprType = destType; in atCastToRtype()
DJvstCodeGen.java190 int destType = MemberResolver.descToType(pt.getDescriptor()); in atCastToRtype() local
191 atNumCastExpr(exprType, destType); in atCastToRtype()
192 exprType = destType; in atCastToRtype()
/external/clang/lib/Sema/
DSemaCast.cpp48 CastOperation(Sema &S, QualType destType, ExprResult src) in CastOperation()
49 : Self(S), SrcExpr(src), DestType(destType), in CastOperation()
50 ResultType(destType.getNonLValueExprType(S.Context)), in CastOperation()
51 ValueKind(Expr::getValueKindForType(destType)), in CastOperation()
308 QualType destType, in tryDiagnoseOverloadedCast() argument
325 if (!destType->isRecordType() && !srcType->isRecordType()) in tryDiagnoseOverloadedCast()
328 InitializedEntity entity = InitializedEntity::InitializeTemporary(destType); in tryDiagnoseOverloadedCast()
373 << CT << srcType << destType in tryDiagnoseOverloadedCast()
383 SourceRange opRange, Expr *src, QualType destType, in diagnoseBadCast() argument
391 tryDiagnoseOverloadedCast(S, castType, opRange, src, destType, in diagnoseBadCast()
[all …]
DSemaExpr.cpp4954 QualType destType = S.Context.getPointerType(S.Context.VoidTy); in checkConditionalBlockPointerCompatibility() local
4955 LHS = S.ImpCastExprToType(LHS.take(), destType, CK_BitCast); in checkConditionalBlockPointerCompatibility()
4956 RHS = S.ImpCastExprToType(RHS.take(), destType, CK_BitCast); in checkConditionalBlockPointerCompatibility()
4957 return destType; in checkConditionalBlockPointerCompatibility()
4987 QualType destType = S.Context.getPointerType(destPointee); in checkConditionalObjectPointersCompatibility() local
4989 LHS = S.ImpCastExprToType(LHS.take(), destType, CK_NoOp); in checkConditionalObjectPointersCompatibility()
4991 RHS = S.ImpCastExprToType(RHS.take(), destType, CK_BitCast); in checkConditionalObjectPointersCompatibility()
4992 return destType; in checkConditionalObjectPointersCompatibility()
4997 QualType destType = S.Context.getPointerType(destPointee); in checkConditionalObjectPointersCompatibility() local
4999 RHS = S.ImpCastExprToType(RHS.take(), destType, CK_NoOp); in checkConditionalObjectPointersCompatibility()
[all …]
/external/clang/lib/CodeGen/
DCGCall.cpp1801 llvm::PointerType *destType = in emitWritebackArg() local
1806 args.add(RValue::get(llvm::ConstantPointerNull::get(destType)), in emitWritebackArg()
1815 llvm::Value *temp = CGF.CreateTempAlloca(destType->getElementType(), in emitWritebackArg()
1828 cast<llvm::PointerType>(destType->getElementType())); in emitWritebackArg()
1844 llvm::ConstantPointerNull::get(destType), in emitWritebackArg()
1865 src = CGF.Builder.CreateBitCast(src, destType->getElementType(), in emitWritebackArg()
DCGExprConstant.cpp654 llvm::Type *destType = ConvertType(E->getType()); in VisitCastExpr() local
669 unsigned TotalSize = CGM.getDataLayout().getTypeAllocSize(destType); in VisitCastExpr()
DCGExpr.cpp43 llvm::PointerType *destType = Int8PtrTy; in EmitCastToVoidPtr() local
45 destType = llvm::Type::getInt8PtrTy(getLLVMContext(), addressSpace); in EmitCastToVoidPtr()
47 if (value->getType() == destType) return value; in EmitCastToVoidPtr()
48 return Builder.CreateBitCast(value, destType); in EmitCastToVoidPtr()
/external/clang/include/clang/Sema/
DSema.h3226 CastKind PrepareScalarCast(ExprResult &src, QualType destType);