/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
D | ArrayTypeImpl.java | 133 boolean isAssignableTo(ReferenceType destType) { in isAssignableTo() argument 134 if (destType instanceof ArrayType) { in isAssignableTo() 136 Type destComponentType = ((ArrayType)destType).componentType(); in isAssignableTo() 143 } else if (destType instanceof InterfaceType) { in isAssignableTo() 145 return destType.name().equals("java.lang.Cloneable"); in isAssignableTo() 148 return destType.name().equals("java.lang.Object"); in isAssignableTo()
|
D | ObjectReferenceImpl.java | 608 ReferenceType destType = (ReferenceTypeImpl)destination.type(); in validateAssignment() local 610 if (!myType.isAssignableTo(destType)) { in validateAssignment() 611 JNITypeParser parser = new JNITypeParser(destType.signature()); in validateAssignment()
|
/external/swiftshader/src/Reactor/ |
D | Nucleus.hpp | 106 static Value *createTrunc(Value *V, Type *destType); 107 static Value *createZExt(Value *V, Type *destType); 108 static Value *createSExt(Value *V, Type *destType); 109 static Value *createFPToSI(Value *V, Type *destType); 110 static Value *createSIToFP(Value *V, Type *destType); 111 static Value *createFPTrunc(Value *V, Type *destType); 112 static Value *createFPExt(Value *V, Type *destType); 113 static Value *createBitCast(Value *V, Type *destType);
|
D | SubzeroReactor.cpp | 1013 static Value *createCast(Ice::InstCast::OpKind op, Value *v, Type *destType) in createCast() argument 1015 if(v->getType() == T(destType)) in createCast() 1020 Ice::Variable *result = ::function->makeVariable(T(destType)); in createCast() 1027 Value *Nucleus::createTrunc(Value *v, Type *destType) in createTrunc() argument 1029 return createCast(Ice::InstCast::Trunc, v, destType); in createTrunc() 1032 Value *Nucleus::createZExt(Value *v, Type *destType) in createZExt() argument 1034 return createCast(Ice::InstCast::Zext, v, destType); in createZExt() 1037 Value *Nucleus::createSExt(Value *v, Type *destType) in createSExt() argument 1039 return createCast(Ice::InstCast::Sext, v, destType); in createSExt() 1042 Value *Nucleus::createFPToSI(Value *v, Type *destType) in createFPToSI() argument [all …]
|
D | LLVMReactor.cpp | 1257 Value *Nucleus::createTrunc(Value *v, Type *destType) in createTrunc() argument 1259 return V(::builder->CreateTrunc(V(v), T(destType))); in createTrunc() 1262 Value *Nucleus::createZExt(Value *v, Type *destType) in createZExt() argument 1264 return V(::builder->CreateZExt(V(v), T(destType))); in createZExt() 1267 Value *Nucleus::createSExt(Value *v, Type *destType) in createSExt() argument 1269 return V(::builder->CreateSExt(V(v), T(destType))); in createSExt() 1272 Value *Nucleus::createFPToSI(Value *v, Type *destType) in createFPToSI() argument 1274 return V(::builder->CreateFPToSI(V(v), T(destType))); in createFPToSI() 1277 Value *Nucleus::createSIToFP(Value *v, Type *destType) in createSIToFP() argument 1279 return V(::builder->CreateSIToFP(V(v), T(destType))); in createSIToFP() [all …]
|
/external/libusb/msvc/ |
D | ddk_build.cmd | 42 set destType=Win32 variable 45 set destType=x64 variable 50 set dstPath=%destType%\Debug 52 set dstPath=%destType%\Release 55 if exist %destType% goto md2 56 mkdir %destType%
|
/external/swiftshader/src/Common/ |
D | Math.hpp | 77 template <typename destType, typename sourceType> 78 destType bit_cast(const sourceType &source) in bit_cast() 83 destType d; in bit_cast()
|
/external/swiftshader/src/System/ |
D | Math.hpp | 77 template <typename destType, typename sourceType> 78 destType bit_cast(const sourceType &source) in bit_cast() 83 destType d; in bit_cast()
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
D | ExpressionTranslator.java | 356 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()
|
D | JavaExpression.java | 163 public JavaExpression cast(Type destType) { 164 return (type != destType) ? destType.cast(this) : this;
|
/external/clang/lib/Sema/ |
D | SemaCast.cpp | 51 CastOperation(Sema &S, QualType destType, ExprResult src) in CastOperation() 52 : Self(S), SrcExpr(src), DestType(destType), in CastOperation() 53 ResultType(destType.getNonLValueExprType(S.Context)), in CastOperation() 54 ValueKind(Expr::getValueKindForType(destType)), in CastOperation() 309 QualType destType, in tryDiagnoseOverloadedCast() argument 326 if (!destType->isRecordType() && !srcType->isRecordType()) in tryDiagnoseOverloadedCast() 329 InitializedEntity entity = InitializedEntity::InitializeTemporary(destType); in tryDiagnoseOverloadedCast() 374 << CT << srcType << destType in tryDiagnoseOverloadedCast() 384 SourceRange opRange, Expr *src, QualType destType, in diagnoseBadCast() argument 387 tryDiagnoseOverloadedCast(S, castType, opRange, src, destType, in diagnoseBadCast() [all …]
|
D | SemaExpr.cpp | 6343 QualType destType = S.Context.getPointerType(S.Context.VoidTy); in checkConditionalBlockPointerCompatibility() local 6344 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast); in checkConditionalBlockPointerCompatibility() 6345 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast); in checkConditionalBlockPointerCompatibility() 6346 return destType; in checkConditionalBlockPointerCompatibility() 6376 QualType destType = S.Context.getPointerType(destPointee); in checkConditionalObjectPointersCompatibility() local 6378 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_NoOp); in checkConditionalObjectPointersCompatibility() 6380 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast); in checkConditionalObjectPointersCompatibility() 6381 return destType; in checkConditionalObjectPointersCompatibility() 6386 QualType destType = S.Context.getPointerType(destPointee); in checkConditionalObjectPointersCompatibility() local 6388 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_NoOp); in checkConditionalObjectPointersCompatibility() [all …]
|
D | SemaExprObjC.cpp | 1439 void Sema::EmitRelatedResultTypeNoteForReturn(QualType destType) { in EmitRelatedResultTypeNoteForReturn() argument 1444 Context.hasSameUnqualifiedType(destType, MD->getReturnType())) in EmitRelatedResultTypeNoteForReturn()
|
D | SemaInit.cpp | 6993 QualType destType = entity.getType(); in emitBadConversionNotes() local 6994 if (destType.getNonReferenceType()->isObjCObjectPointerType() && in emitBadConversionNotes() 7004 S.EmitRelatedResultTypeNoteForReturn(destType); in emitBadConversionNotes()
|
/external/bcc/src/cc/frontends/p4/compiler/ |
D | ebpfParser.py | 382 destType = dest.type 383 assert isinstance(destType, ebpfStructType.EbpfStructType) 384 destField = destType.getField(field.name)
|
/external/mesa3d/src/mesa/swrast/ |
D | s_drawpix.c | 268 const GLenum destType = GL_UNSIGNED_BYTE; in draw_stencil_pixels() local 283 _mesa_unpack_stencil_span(ctx, width, destType, values, in draw_stencil_pixels()
|
/external/deqp-deps/glslang/SPIRV/ |
D | GlslangToSpv.cpp | 5565 …SpvTraverser::createConversion(glslang::TOperator op, OpDecorations& decorations, spv::Id destType, argument 5572 int vectorSize = builder.isVectorType(destType) ? builder.getNumTypeComponents(destType) : 0; 5579 return builder.createBinOp(spv::OpINotEqual, destType, operand, zero); 5584 return builder.createBinOp(spv::OpINotEqual, destType, operand, zero); 5589 return builder.createBinOp(spv::OpINotEqual, destType, operand, zero); 5594 return builder.createBinOp(spv::OpINotEqual, destType, operand, zero); 5599 return builder.createBinOp(spv::OpFOrdNotEqual, destType, operand, zero); 5604 return builder.createBinOp(spv::OpFOrdNotEqual, destType, operand, zero); 5609 return builder.createBinOp(spv::OpFOrdNotEqual, destType, operand, zero); 5720 if (builder.isMatrixType(destType)) [all …]
|
/external/clang/lib/CodeGen/ |
D | CGExprConstant.cpp | 651 llvm::Type *destType = ConvertType(E->getType()); in VisitCastExpr() local 666 unsigned TotalSize = CGM.getDataLayout().getTypeAllocSize(destType); in VisitCastExpr() 684 return llvm::ConstantExpr::getAddrSpaceCast(C, destType); in VisitCastExpr()
|
D | CGCall.cpp | 3027 llvm::PointerType *destType = in emitWritebackArg() local 3032 args.add(RValue::get(llvm::ConstantPointerNull::get(destType)), in emitWritebackArg() 3038 Address temp = CGF.CreateTempAlloca(destType->getElementType(), in emitWritebackArg() 3052 cast<llvm::PointerType>(destType->getElementType())); in emitWritebackArg() 3070 llvm::ConstantPointerNull::get(destType), in emitWritebackArg() 3093 src = CGF.Builder.CreateBitCast(src, destType->getElementType(), in emitWritebackArg()
|
D | CGExpr.cpp | 50 llvm::PointerType *destType = Int8PtrTy; in EmitCastToVoidPtr() local 52 destType = llvm::Type::getInt8PtrTy(getLLVMContext(), addressSpace); in EmitCastToVoidPtr() 54 if (value->getType() == destType) return value; in EmitCastToVoidPtr() 55 return Builder.CreateBitCast(value, destType); in EmitCastToVoidPtr()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_cb_drawpixels.c | 816 GLenum destType = GL_UNSIGNED_BYTE; in draw_stencil_pixels() local 821 _mesa_unpack_stencil_span(ctx, width, destType, sValues, in draw_stencil_pixels()
|
/external/error_prone/checkerframework/ |
D | dataflow-2.5.3.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/checkerframework/
org/ ... |
/external/mesa3d/src/mesa/drivers/common/ |
D | meta.c | 3002 GLenum destFormat, GLenum destType, in decompress_texture_image() argument 3227 _mesa_ReadPixels(0, 0, width, height, destFormat, destType, dest); in decompress_texture_image()
|
/external/guice/extensions/persist/lib/ |
D | javassist.jar | META-INF/
META-INF/MANIFEST.MF
javassist/
javassist/ByteArrayClassPath.class
ByteArrayClassPath ... |
/external/clang/include/clang/Sema/ |
D | Sema.h | 4022 CastKind PrepareScalarCast(ExprResult &src, QualType destType); 8838 bool areLaxCompatibleVectorTypes(QualType srcType, QualType destType); 8839 bool isLaxVectorConversion(QualType srcType, QualType destType); 8969 void EmitRelatedResultTypeNoteForReturn(QualType destType);
|