Home
last modified time | relevance | path

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

/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/lang/
DSystem.java48 Class<?> destType = dest.getClass(); in arraycopy() local
49 if (!srcType.isArray() || !destType.isArray()) { in arraycopy()
54 Class<?> destComp = destType.getComponentType(); in arraycopy()
71 && !srcType.equals(destType)) { in arraycopy()
/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.cpp50 CastOperation(Sema &S, QualType destType, ExprResult src) in CastOperation()
51 : Self(S), SrcExpr(src), DestType(destType), in CastOperation()
52 ResultType(destType.getNonLValueExprType(S.Context)), in CastOperation()
53 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
386 tryDiagnoseOverloadedCast(S, castType, opRange, src, destType, in diagnoseBadCast()
[all …]
DSemaExpr.cpp5983 QualType destType = S.Context.getPointerType(S.Context.VoidTy); in checkConditionalBlockPointerCompatibility() local
5984 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast); in checkConditionalBlockPointerCompatibility()
5985 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast); in checkConditionalBlockPointerCompatibility()
5986 return destType; in checkConditionalBlockPointerCompatibility()
6016 QualType destType = S.Context.getPointerType(destPointee); in checkConditionalObjectPointersCompatibility() local
6018 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_NoOp); in checkConditionalObjectPointersCompatibility()
6020 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast); in checkConditionalObjectPointersCompatibility()
6021 return destType; in checkConditionalObjectPointersCompatibility()
6026 QualType destType = S.Context.getPointerType(destPointee); in checkConditionalObjectPointersCompatibility() local
6028 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_NoOp); in checkConditionalObjectPointersCompatibility()
[all …]
DSemaExprObjC.cpp1442 void Sema::EmitRelatedResultTypeNoteForReturn(QualType destType) { in EmitRelatedResultTypeNoteForReturn() argument
1447 Context.hasSameUnqualifiedType(destType, MD->getReturnType())) in EmitRelatedResultTypeNoteForReturn()
DSemaInit.cpp6828 QualType destType = entity.getType(); in emitBadConversionNotes() local
6829 if (destType.getNonReferenceType()->isObjCObjectPointerType() && in emitBadConversionNotes()
6839 S.EmitRelatedResultTypeNoteForReturn(destType); in emitBadConversionNotes()
/external/mesa3d/src/mesa/swrast/
Ds_drawpix.c266 const GLenum destType = GL_UNSIGNED_BYTE; in draw_stencil_pixels() local
281 _mesa_unpack_stencil_span(ctx, width, destType, values, in draw_stencil_pixels()
/external/clang/lib/CodeGen/
DCGExprConstant.cpp645 llvm::Type *destType = ConvertType(E->getType()); in VisitCastExpr() local
660 unsigned TotalSize = CGM.getDataLayout().getTypeAllocSize(destType); in VisitCastExpr()
678 return llvm::ConstantExpr::getAddrSpaceCast(C, destType); in VisitCastExpr()
DCGCall.cpp2684 llvm::PointerType *destType = in emitWritebackArg() local
2689 args.add(RValue::get(llvm::ConstantPointerNull::get(destType)), in emitWritebackArg()
2695 Address temp = CGF.CreateTempAlloca(destType->getElementType(), in emitWritebackArg()
2709 cast<llvm::PointerType>(destType->getElementType())); in emitWritebackArg()
2727 llvm::ConstantPointerNull::get(destType), in emitWritebackArg()
2750 src = CGF.Builder.CreateBitCast(src, destType->getElementType(), in emitWritebackArg()
DCGExpr.cpp47 llvm::PointerType *destType = Int8PtrTy; in EmitCastToVoidPtr() local
49 destType = llvm::Type::getInt8PtrTy(getLLVMContext(), addressSpace); in EmitCastToVoidPtr()
51 if (value->getType() == destType) return value; in EmitCastToVoidPtr()
52 return Builder.CreateBitCast(value, destType); in EmitCastToVoidPtr()
/external/mesa3d/src/mesa/state_tracker/
Dst_cb_drawpixels.c886 GLenum destType = GL_UNSIGNED_BYTE; in draw_stencil_pixels() local
891 _mesa_unpack_stencil_span(ctx, width, destType, sValues, in draw_stencil_pixels()
/external/mesa3d/src/mesa/drivers/common/
Dmeta.c3601 GLenum destFormat, GLenum destType, in decompress_texture_image() argument
3786 _mesa_ReadPixels(0, 0, width, height, destFormat, destType, dest); in decompress_texture_image()
/external/clang/include/clang/Sema/
DSema.h3931 CastKind PrepareScalarCast(ExprResult &src, QualType destType);
8534 bool areLaxCompatibleVectorTypes(QualType srcType, QualType destType);
8535 bool isLaxVectorConversion(QualType srcType, QualType destType);
8660 void EmitRelatedResultTypeNoteForReturn(QualType destType);