Searched defs:resultType (Results 1 - 25 of 29) sorted by relevance

12

/external/skia/tools/
H A DPictureBenchmark.h51 void setTimerResultType(TimerData::Result resultType) { fTimerResult = resultType; } argument
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DSCCP.java363 * @param resultType basic type of the result
366 private Constant simulateMath(SsaInsn insn, int resultType) { argument
397 switch (resultType) {
/external/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp345 /// \param resultType - the result type to use if there's no method
349 QualType resultType,
367 CGM.getTypes().arrangeFreeFunctionCall(resultType, callArgs, einfo,
375 CGM.getTypes().arrangeFreeFunctionCall(resultType, callArgs,
348 getMessageSendInfo(const ObjCMethodDecl *method, QualType resultType, CallArgList &callArgs) argument
H A DCGAtomic.cpp285 QualType resultType,
288 CGF.CGM.getTypes().arrangeFreeFunctionCall(resultType, args,
283 emitAtomicLibcall(CodeGenFunction &CGF, StringRef fnName, QualType resultType, CallArgList &args) argument
H A DCGCall.cpp103 CanQualType resultType = FTP->getReturnType().getUnqualifiedType(); local
104 return CGT.arrangeLLVMFunctionInfo(resultType, instanceMethod,
218 CanQualType resultType = TheCXXABI.HasThisReturn(GD) local
223 return arrangeLLVMFunctionInfo(resultType, /*instanceMethod=*/true,
431 CodeGenTypes::arrangeFreeFunctionCall(QualType resultType, argument
440 GetReturnType(resultType), /*instanceMethod=*/false,
461 QualType resultType, const FunctionArgList &args,
471 GetReturnType(resultType), /*instanceMethod=*/false,
485 CodeGenTypes::arrangeLLVMFunctionInfo(CanQualType resultType, argument
499 resultType, argType
460 arrangeFreeFunctionDeclaration( QualType resultType, const FunctionArgList &args, const FunctionType::ExtInfo &info, bool isVariadic) argument
535 create(unsigned llvmCC, bool instanceMethod, bool chainCall, const FunctionType::ExtInfo &info, CanQualType resultType, ArrayRef<CanQualType> argTypes, RequiredArgs required) argument
[all...]
H A DCGExprCXX.cpp1344 llvm::Type *resultType = ConvertTypeForMem(E->getType()); local
1345 if (result->getType() != resultType)
1346 result = Builder.CreateBitCast(result, resultType);
H A DCGClass.cpp2317 QualType resultType = FPT->getReturnType(); local
2319 if (!resultType->isVoidType() &&
2322 returnSlot = ReturnValueSlot(ReturnValue, resultType.isVolatileQualified());
2333 if (!resultType->isVoidType() && returnSlot.isNull())
2334 EmitReturnOfRValue(RV, resultType);
H A DCGObjC.cpp2556 llvm::Type *resultType = nullptr; local
2573 if (resultType) {
2575 value = CGF.Builder.CreateBitCast(value, resultType);
2588 if (!resultType)
2589 resultType = CGF.ConvertType(ce->getType());
2598 if (resultType) result = CGF.Builder.CreateBitCast(result, resultType);
2622 if (resultType)
2623 result = CGF.Builder.CreateBitCast(result, resultType);
2632 if (resultType) resul
[all...]
H A DCGExpr.cpp1011 QualType resultType; local
1017 resultType = refExpr->getType();
1023 resultType = value->getType();
1035 llvm::Constant *C = CGM.EmitConstantValue(result.Val, resultType, this);
H A DCGObjCMac.cpp108 llvm::Type *resultType = local
111 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(resultType,
1581 RValue complete(CodeGenFunction &CGF, RValue result, QualType resultType, argument
1620 if (result.isScalar() && resultType->isVoidType()) {
1629 llvm::Constant *null = CGF.CGM.EmitNullConstant(resultType);
1648 CGF.EmitNullInitialization(result.getAggregateAddr(), resultType);
6472 QualType resultType,
6493 MessageSendInfo MSI = getMessageSendInfo(method, resultType, args);
6515 } else if (!isSuper && CGM.ReturnTypeUsesFPRet(resultType)) {
6576 return nullReturn.complete(CGF, result, resultType, formalArg
6470 EmitVTableMessageSend(CodeGenFunction &CGF, ReturnValueSlot returnSlot, QualType resultType, Selector selector, llvm::Value *arg0, QualType arg0Type, bool isSuper, const CallArgList &formalArgs, const ObjCMethodDecl *method) argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp344 QualType resultType = CastE->getType(); local
346 resultType = getContext().getPointerType(resultType);
371 svalBuilder.conjureSymbolVal(nullptr, CastE, LCtx, resultType,
396 QualType resultType = CastE->getType(); local
398 resultType = getContext().getPointerType(resultType);
400 resultType,
H A DExprEngine.cpp967 QualType resultType = Ex->getType(); local
974 resultType,
/external/skia/src/pathops/
H A DSkPathOpsCubic.cpp232 bool SkDCubic::ComplexBreak(const SkPoint pointsPtr[4], SkScalar* t, CubicType* resultType) { argument
249 *resultType = kSplitAtLoop_SkDCubicType;
281 *resultType = kSplitAtMaxCurvature_SkDCubicType;
287 *resultType = kSplitAtInflection_SkDCubicType;
/external/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h389 CanQualType resultType,
486 CanQualType resultType,
496 resultType.Profile(ID);
481 Profile(llvm::FoldingSetNodeID &ID, bool InstanceMethod, bool ChainCall, const FunctionType::ExtInfo &info, RequiredArgs required, CanQualType resultType, ArrayRef<CanQualType> argTypes) argument
/external/clang/lib/Sema/
H A DSemaPseudoObject.cpp470 QualType resultType = result.get()->getType();
498 new (S.Context) UnaryOperator(syntacticOp, opcode, resultType,
858 QualType resultType = Getter->getReturnType(); local
859 if (!resultType->isLValueReferenceType()) return false;
H A DSemaDeclAttr.cpp3721 QualType resultType; local
3723 resultType = cast<ObjCMethodDecl>(D)->getReturnType();
3725 resultType = cast<ObjCPropertyDecl>(D)->getType();
3727 if (!resultType->isReferenceType() &&
3728 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
H A DSemaExpr.cpp7304 QualType resultType = LHSType; local
7305 RHS = ImpCastExprToType(RHS.get(), resultType, CK_BitCast);
7306 return resultType;
10494 QualType resultType; local
10500 resultType = CheckIncrementDecrementOperand(*this, Input.get(), VK, OK,
10508 resultType = CheckAddressOfOperand(Input, OpLoc);
10514 resultType = CheckIndirectionOperand(*this, Input.get(), VK, OpLoc);
10521 resultType = Input.get()->getType();
10522 if (resultType->isDependentType())
10524 if (resultType
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fShaderMatrixTests.cpp779 DataType resultType = TYPE_LAST; local
794 resultType = m_in0.dataType;
799 resultType = m_in0.dataType;
808 resultType = matrixType;
812 resultType = otherType;
924 op << " " << getPrecisionName(resultPrec) << " " << getDataTypeName(resultType) << " tmpValue = " << inValue0 << ";\n";
944 op << " " << getPrecisionName(resultPrec) << " " << getDataTypeName(resultType) << " res = " << operationValue0 << " " << getOperationName(m_op) << " " << operationValue1 << ";\n";
948 op << " " << getPrecisionName(resultPrec) << " " << getDataTypeName(resultType) << " res = " << getOperationName(m_op) << operationValue0 << ";\n";
952 op << " " << getPrecisionName(resultPrec) << " " << getDataTypeName(resultType) << " res = " << operationValue0 << getOperationName(m_op) << ";\n";
956 op << " " << getPrecisionName(resultPrec) << " " << getDataTypeName(resultType) << " re
[all...]
H A Des2fShaderOperatorTests.cpp1476 DataType resultType; member in struct:deqp::gles2::Functional::__anon3198
1506 shaderSpec.output = s_sequenceCases[caseNdx].resultType;
/external/deqp/modules/gles3/functional/
H A Des3fShaderMatrixTests.cpp1425 DataType resultType = TYPE_LAST; local
1439 resultType = getDataTypeMatrix(getDataTypeMatrixNumColumns(m_in1.dataType), getDataTypeMatrixNumRows(m_in0.dataType));
1443 resultType = getDataTypeMatrix(getDataTypeScalarSize(m_in1.dataType), getDataTypeScalarSize(m_in0.dataType));
1447 resultType = getDataTypeMatrix(getDataTypeMatrixNumRows(m_in0.dataType), getDataTypeMatrixNumColumns(m_in0.dataType));
1451 resultType = m_in0.dataType;
1455 resultType = TYPE_FLOAT;
1460 resultType = m_in0.dataType;
1465 resultType = m_in0.dataType;
1474 resultType = matrixType;
1478 resultType
[all...]
H A Des3fShaderOperatorTests.cpp2131 DataType resultType; member in struct:deqp::gles3::Functional::__anon3365
2161 shaderSpec.output = s_sequenceCases[caseNdx].resultType;
/external/deqp/modules/gles3/performance/
H A Des3pBufferDataUploadTests.cpp2204 ResultType resultType,
2245 BasicUploadCase<SampleType>::BasicUploadCase (Context& context, const char* name, const char* desc, int bufferSizeMin, int bufferSizeMax, int numSamples, deUint32 bufferUsage, CaseType caseType, ResultType resultType, int flags) argument
2249 , m_resultType (resultType)
/external/clang/lib/AST/
H A DExpr.cpp1342 UnaryExprOrTypeTrait ExprKind, Expr *E, QualType resultType,
1344 : Expr(UnaryExprOrTypeTraitExprClass, resultType, VK_RValue, OK_Ordinary,
1341 UnaryExprOrTypeTraitExpr( UnaryExprOrTypeTrait ExprKind, Expr *E, QualType resultType, SourceLocation op, SourceLocation rp) argument
/external/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp2648 QualType resultType = mDecl->getReturnType(); local
2649 if (resultType->isRecordType())
2651 else if (resultType->isRealFloatingType())
H A DRewriteModernObjC.cpp3265 QualType resultType = mDecl->getReturnType(); local
3266 if (resultType->isRecordType())
3268 else if (resultType->isRealFloatingType())

Completed in 1404 milliseconds

12