Home
last modified time | relevance | path

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

12

/external/libusb/msvc/
Dddk_build.cmd42 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/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.cpp51 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 …]
DSemaExpr.cpp6343 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 …]
DSemaExprObjC.cpp1439 void Sema::EmitRelatedResultTypeNoteForReturn(QualType destType) { in EmitRelatedResultTypeNoteForReturn() argument
1444 Context.hasSameUnqualifiedType(destType, MD->getReturnType())) in EmitRelatedResultTypeNoteForReturn()
DSemaInit.cpp6993 QualType destType = entity.getType(); in emitBadConversionNotes() local
6994 if (destType.getNonReferenceType()->isObjCObjectPointerType() && in emitBadConversionNotes()
7004 S.EmitRelatedResultTypeNoteForReturn(destType); in emitBadConversionNotes()
/external/swiftshader/src/Reactor/
DNucleus.hpp134 static llvm::Value *createTrunc(llvm::Value *V, llvm::Type *destType);
135 static llvm::Value *createZExt(llvm::Value *V, llvm::Type *destType);
136 static llvm::Value *createSExt(llvm::Value *V, llvm::Type *destType);
137 static llvm::Value *createFPToUI(llvm::Value *V, llvm::Type *destType);
138 static llvm::Value *createFPToSI(llvm::Value *V, llvm::Type *destType);
139 static llvm::Value *createUIToFP(llvm::Value *V, llvm::Type *destType);
140 static llvm::Value *createSIToFP(llvm::Value *V, llvm::Type *destType);
141 static llvm::Value *createFPTrunc(llvm::Value *V, llvm::Type *destType);
142 static llvm::Value *createFPExt(llvm::Value *V, llvm::Type *destType);
143 static llvm::Value *createPtrToInt(llvm::Value *V, llvm::Type *destType);
[all …]
DNucleus.cpp463 Value *Nucleus::createTrunc(Value *V, Type *destType) in createTrunc() argument
465 return builder->CreateTrunc(V, destType); in createTrunc()
468 Value *Nucleus::createZExt(Value *V, Type *destType) in createZExt() argument
470 return builder->CreateZExt(V, destType); in createZExt()
473 Value *Nucleus::createSExt(Value *V, Type *destType) in createSExt() argument
475 return builder->CreateSExt(V, destType); in createSExt()
478 Value *Nucleus::createFPToUI(Value *V, Type *destType) in createFPToUI() argument
480 return builder->CreateFPToUI(V, destType); in createFPToUI()
483 Value *Nucleus::createFPToSI(Value *V, Type *destType) in createFPToSI() argument
485 return builder->CreateFPToSI(V, destType); in createFPToSI()
[all …]
/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.cpp651 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()
DCGCall.cpp3027 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()
DCGExpr.cpp50 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/
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/guice/extensions/persist/lib/
Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath ...
/external/clang/include/clang/Sema/
DSema.h4022 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);
/external/guice/extensions/struts2/lib/
Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath ...
Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse ...
/external/robolectric/v1/lib/main/
Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/ ...
/external/testng/ant/3rdparty/
Ddoclava-1.0.3.jarMETA-INF/MANIFEST.MF assets/html/index.html assets/templates/data ...
/external/dexmaker/lib/
Ddalvik-dx-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/ ...

12