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

12

/external/libusb/msvc/
H A 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/
H A DJavaExpression.java163 public JavaExpression cast(Type destType) { argument
164 return (type != destType) ? destType.cast(this) : this;
H A DExpressionTranslator.java356 private JavaExpression infix(Type destType, Type srcType, String infix, PExpression leftNode, argument
360 return JavaExpression.infix(destType, infix, left, right);
363 private JavaExpression prefix(Type destType, Type srcType, String prefix, PExpression node) { argument
364 return JavaExpression.prefix(destType, prefix, cast(srcType, node));
/external/javassist/src/main/javassist/compiler/
H A DJvstTypeChecker.java117 int destType = MemberResolver.descToType(pt.getDescriptor());
118 exprType = destType;
H A DCodeGen.java898 int destType, int destDim, String destClass,
904 else if (destDim == 0 && destType == CLASS
1408 void atNumCastExpr(int srcType, int destType) argument
1411 if (srcType == destType)
1416 int dtype = typePrecedence(destType);
1422 if (destType == DOUBLE)
1424 else if (destType == FLOAT)
1426 else if (destType == LONG)
1428 else if (destType == SHORT)
1430 else if (destType
897 invalidDim(int srcType, int srcDim, String srcClass, int destType, int destDim, String destClass, boolean isCast) argument
[all...]
H A DJvstCodeGen.java190 int destType = MemberResolver.descToType(pt.getDescriptor());
191 atNumCastExpr(exprType, destType);
192 exprType = destType;
/external/clang/lib/Sema/
H A DSemaCast.cpp51 CastOperation(Sema &S, QualType destType, ExprResult src) argument
52 : Self(S), SrcExpr(src), DestType(destType),
53 ResultType(destType.getNonLValueExprType(S.Context)),
54 ValueKind(Expr::getValueKindForType(destType)),
309 QualType destType,
326 if (!destType->isRecordType() && !srcType->isRecordType())
329 InitializedEntity entity = InitializedEntity::InitializeTemporary(destType);
374 << CT << srcType << destType
384 SourceRange opRange, Expr *src, QualType destType,
387 tryDiagnoseOverloadedCast(S, castType, opRange, src, destType,
307 tryDiagnoseOverloadedCast(Sema &S, CastType CT, SourceRange range, Expr *src, QualType destType, bool listInitialization) argument
383 diagnoseBadCast(Sema &S, unsigned msg, CastType castType, SourceRange opRange, Expr *src, QualType destType, bool listInitialization) argument
[all...]
H A DSemaExpr.cpp6343 QualType destType = S.Context.getPointerType(S.Context.VoidTy); local
6344 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast);
6345 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast);
6346 return destType;
6376 QualType destType = S.Context.getPointerType(destPointee); local
6378 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_NoOp);
6380 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast);
6381 return destType;
6386 QualType destType = S.Context.getPointerType(destPointee); local
6388 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_NoO
6857 QualType destType = Context.getPointerType(destPointee); local
6877 QualType destType = Context.getPointerType(destPointee); local
[all...]
H A DSemaExprObjC.cpp1439 void Sema::EmitRelatedResultTypeNoteForReturn(QualType destType) { argument
1444 Context.hasSameUnqualifiedType(destType, MD->getReturnType()))
H A DSemaInit.cpp6993 QualType destType = entity.getType(); local
6994 if (destType.getNonReferenceType()->isObjCObjectPointerType() &&
7004 S.EmitRelatedResultTypeNoteForReturn(destType);
/external/mesa3d/src/mesa/swrast/
H A Ds_drawpix.c266 const GLenum destType = GL_UNSIGNED_BYTE; local
281 _mesa_unpack_stencil_span(ctx, width, destType, values,
/external/swiftshader/src/Reactor/
H A DNucleus.cpp463 Value *Nucleus::createTrunc(Value *V, Type *destType) argument
465 return builder->CreateTrunc(V, destType);
468 Value *Nucleus::createZExt(Value *V, Type *destType) argument
470 return builder->CreateZExt(V, destType);
473 Value *Nucleus::createSExt(Value *V, Type *destType) argument
475 return builder->CreateSExt(V, destType);
478 Value *Nucleus::createFPToUI(Value *V, Type *destType) argument
480 return builder->CreateFPToUI(V, destType);
483 Value *Nucleus::createFPToSI(Value *V, Type *destType) argument
485 return builder->CreateFPToSI(V, destType);
488 createUIToFP(Value *V, Type *destType) argument
493 createSIToFP(Value *V, Type *destType) argument
498 createFPTrunc(Value *V, Type *destType) argument
503 createFPExt(Value *V, Type *destType) argument
508 createPtrToInt(Value *V, Type *destType) argument
513 createIntToPtr(Value *V, Type *destType) argument
518 createBitCast(Value *V, Type *destType) argument
523 createIntCast(Value *V, Type *destType, bool isSigned) argument
[all...]
H A 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...]
/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp651 llvm::Type *destType = ConvertType(E->getType());
666 unsigned TotalSize = CGM.getDataLayout().getTypeAllocSize(destType);
684 return llvm::ConstantExpr::getAddrSpaceCast(C, destType);
H A DCGCall.cpp3027 llvm::PointerType *destType =
3032 args.add(RValue::get(llvm::ConstantPointerNull::get(destType)),
3038 Address temp = CGF.CreateTempAlloca(destType->getElementType(),
3052 cast<llvm::PointerType>(destType->getElementType()));
3070 llvm::ConstantPointerNull::get(destType),
3093 src = CGF.Builder.CreateBitCast(src, destType->getElementType(),
H A DCGExpr.cpp50 llvm::PointerType *destType = Int8PtrTy; local
52 destType = llvm::Type::getInt8PtrTy(getLLVMContext(), addressSpace);
54 if (value->getType() == destType) return value;
55 return Builder.CreateBitCast(value, destType);
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_drawpixels.c886 GLenum destType = GL_UNSIGNED_BYTE; local
891 _mesa_unpack_stencil_span(ctx, width, destType, sValues,
/external/guice/extensions/persist/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/mesa3d/src/mesa/drivers/common/
H A Dmeta.c3593 * \param destType type, ala glReadPixels
3601 GLenum destFormat, GLenum destType,
3786 _mesa_ReadPixels(0, 0, width, height, destFormat, destType, dest);
3598 decompress_texture_image(struct gl_context *ctx, struct gl_texture_image *texImage, GLuint slice, GLenum destFormat, GLenum destType, GLvoid *dest) argument
/external/clang/include/clang/Sema/
H A 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/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
H A Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/core/ org/eclipse/jdt/core/compiler/ org/ ...
/external/robolectric/v1/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/testng/ant/3rdparty/
H A Ddoclava-1.0.3.jarMETA-INF/MANIFEST.MF assets/html/index.html assets/templates/data.hdf assets/templates/assets/ ...
/external/dexmaker/lib/
H A Ddalvik-dx-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/dx/ com/android/dx/cf/ ...

Completed in 1138 milliseconds

12