Searched defs:ResultTy (Results 1 - 19 of 19) sorted by relevance

/external/clang/test/SemaTemplate/
H A Dinstantiation-backtrace.cpp35 template <class T> class ResultTy { // expected-warning {{does not declare any constructor}} class in namespace:PR13365
40 typename ResultTy<T2>::error Deduce( void (T1::*member)(T2) ) {} // \
41 // expected-note {{instantiation of template class 'PR13365::ResultTy<int &>'}} \
/external/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp225 QualType ResultTy) {
237 return makeNonLoc(symLHS, Op, symRHS, ResultTy);
241 return makeNonLoc(symLHS, Op, rInt->getValue(), ResultTy);
245 return makeNonLoc(lInt->getValue(), Op, symRHS, ResultTy);
222 makeSymExprValNN(ProgramStateRef State, BinaryOperator::Opcode Op, NonLoc LHS, NonLoc RHS, QualType ResultTy) argument
H A DCallEvent.cpp28 QualType ResultTy = E->getType(); local
37 ResultTy = Ctx.getLValueReferenceType(ResultTy);
40 ResultTy = Ctx.getRValueReferenceType(ResultTy);
47 return ResultTy;
H A DExprEngineCallAndReturn.cpp580 QualType ResultTy = Call.getResultType(); local
583 SVal R = SVB.conjureSymbolVal(0, E, LCtx, ResultTy, Count);
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp575 Type *ResultTy, const TargetData *TD,
578 Type *IntPtrTy = TD->getIntPtrType(ResultTy->getContext());
625 Type *ResultTy, const TargetData *TD,
642 cast<PointerType>(ResultTy)->getElementType()->isIntegerTy(8)) {
650 Res = ConstantExpr::getIntToPtr(Res, ResultTy);
696 return ConstantExpr::getIntToPtr(C, ResultTy);
755 } while (Ty != cast<PointerType>(ResultTy)->getElementType());
771 if (Ty != cast<PointerType>(ResultTy)->getElementType())
772 C = FoldBitCast(C, ResultTy, *TD);
574 CastGEPIndices(ArrayRef<Constant *> Ops, Type *ResultTy, const TargetData *TD, const TargetLibraryInfo *TLI) argument
624 SymbolicallyEvaluateGEP(ArrayRef<Constant *> Ops, Type *ResultTy, const TargetData *TD, const TargetLibraryInfo *TLI) argument
H A DLazyValueInfo.cpp709 IntegerType *ResultTy = cast<IntegerType>(BBI->getType()); local
743 Result.markConstantRange(LHSRange.truncate(ResultTy->getBitWidth()));
746 Result.markConstantRange(LHSRange.signExtend(ResultTy->getBitWidth()));
749 Result.markConstantRange(LHSRange.zeroExtend(ResultTy->getBitWidth()));
H A DScalarEvolution.cpp676 Type *ResultTy) {
679 return SE.getTruncateOrZeroExtend(It, ResultTy);
735 unsigned W = SE.getTypeSizeInBits(ResultTy);
781 SE.getTruncateOrZeroExtend(DivResult, ResultTy));
674 BinomialCoefficient(const SCEV *It, unsigned K, ScalarEvolution &SE, Type *ResultTy) argument
/external/llvm/lib/VMCore/
H A DConstantFold.cpp1578 Type *ResultTy; local
1580 ResultTy = VectorType::get(Type::getInt1Ty(C1->getContext()),
1583 ResultTy = Type::getInt1Ty(C1->getContext());
1587 return Constant::getNullValue(ResultTy);
1590 return Constant::getAllOnesValue(ResultTy);
1599 return UndefValue::get(ResultTy);
1602 return ConstantInt::get(ResultTy, CmpInst::isTrueWhenEqual(pred));
1650 case ICmpInst::ICMP_EQ: return ConstantInt::get(ResultTy, V1 == V2);
1651 case ICmpInst::ICMP_NE: return ConstantInt::get(ResultTy, V1 != V2);
1652 case ICmpInst::ICMP_SLT: return ConstantInt::get(ResultTy, V
[all...]
H A DConstants.cpp1782 Type *ResultTy = Type::getInt1Ty(LHS->getContext()); local
1784 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1787 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
1805 Type *ResultTy = Type::getInt1Ty(LHS->getContext()); local
1807 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1810 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
/external/clang/include/clang/Sema/
H A DOverload.h614 QualType ResultTy; member in struct:clang::OverloadCandidate::__anon3398
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp538 Type *ResultTy = 0; local
549 ResultTy = Type::getVoidTy(Context);
552 ResultTy = Type::getHalfTy(Context);
555 ResultTy = Type::getFloatTy(Context);
558 ResultTy = Type::getDoubleTy(Context);
561 ResultTy = Type::getX86_FP80Ty(Context);
564 ResultTy = Type::getFP128Ty(Context);
567 ResultTy = Type::getPPC_FP128Ty(Context);
570 ResultTy = Type::getLabelTy(Context);
573 ResultTy
[all...]
/external/clang/lib/AST/
H A DASTImporter.cpp3014 QualType ResultTy = Importer.Import(D->getResultType()); local
3015 if (ResultTy.isNull())
3025 ResultTy, ResultTInfo, DC,
H A DExprConstant.cpp5536 QualType ResultTy,
5543 const llvm::fltSemantics &Sem = Context.getFloatTypeSemantics(ResultTy);
5535 TryEvaluateBuiltinNaN(const ASTContext &Context, QualType ResultTy, const Expr *Arg, bool SNaN, llvm::APFloat &Result) argument
H A DASTContext.cpp2451 ASTContext::getFunctionNoProtoType(QualType ResultTy, argument
2459 FunctionNoProtoType::Profile(ID, ResultTy, Info);
2467 if (!ResultTy.isCanonical() ||
2470 getFunctionNoProtoType(getCanonicalType(ResultTy),
2481 FunctionNoProtoType(ResultTy, Canonical, newInfo);
2490 ASTContext::getFunctionType(QualType ResultTy, argument
2496 FunctionProtoType::Profile(ID, ResultTy, ArgArray, NumArgs, EPI, *this);
2505 EPI.ExceptionSpecType == EST_None && ResultTy.isCanonical() &&
2531 Canonical = getFunctionType(getCanonicalType(ResultTy),
2566 new (FTP) FunctionProtoType(ResultTy, ArgArra
[all...]
/external/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp2472 QualType ResultTy; local
2476 S.IsNoReturnConversion(A, DeducedA, ResultTy)))
H A DSemaExpr.cpp4798 QualType ResultTy = CompositeTy.withCVRQualifiers(MergedCVRQual); local
4799 ResultTy = S.Context.getPointerType(ResultTy);
4801 LHS = S.ImpCastExprToType(LHS.take(), ResultTy, CK_BitCast);
4802 RHS = S.ImpCastExprToType(RHS.take(), ResultTy, CK_BitCast);
4803 return ResultTy;
7009 QualType ResultTy = Context.getLogicalOperationType(); local
7013 return ResultTy;
7020 return ResultTy;
7038 return ResultTy;
8238 QualType ResultTy; // Result type of the binary operator. local
[all...]
H A DSemaOverload.cpp1237 QualType &ResultTy) {
1278 ResultTy = ToType;
5946 /// operator. ResultTy and ParamTys are the result and parameter types
5953 void Sema::AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys, argument
5967 Candidate.BuiltinTypes.ResultTy = ResultTy;
7323 QualType ResultTy = S.Context.getLValueReferenceType(PointeeType); local
7326 S.AddBuiltinCandidate(ResultTy, ParamTypes, Args, 2, CandidateSet);
7338 QualType ResultTy = S.Context.getLValueReferenceType(PointeeType); local
7341 S.AddBuiltinCandidate(ResultTy, ParamType
1236 IsNoReturnConversion(QualType FromType, QualType ToType, QualType &ResultTy) argument
7391 QualType ResultTy = S.Context.getLValueReferenceType(T); local
10001 QualType ResultTy = FnDecl->getResultType(); local
10243 QualType ResultTy = FnDecl->getResultType(); local
10447 QualType ResultTy = FnDecl->getResultType(); local
11231 QualType ResultTy = FD->getResultType(); local
[all...]
H A DTreeTransform.h1630 QualType ResultTy) {
1633 if (Result.isInvalid() || ResultTy->isDependentType())
1639 ILE->setType(ResultTy);
1627 RebuildInitList(SourceLocation LBraceLoc, MultiExprArg Inits, SourceLocation RBraceLoc, QualType ResultTy) argument
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp784 QualType ResultTy = MD->getResultType(); local
792 return getMethodSummary(S, ID, MD, ResultTy, *CachedSummaries);
2691 QualType ResultTy = Ex->getType(); local
2693 RefVal::makeNotOwned(RetEffect::ObjC, ResultTy));
2718 QualType ResultTy = Ex->getType(); local
2720 RefVal::makeNotOwned(RetEffect::ObjC, ResultTy));
2884 QualType ResultTy = CallOrMsg.getResultType(); local
2886 ResultTy));
2902 QualType ResultTy = GetReturnType(Ex, C.getASTContext()); local
2904 ResultTy));
3154 QualType ResultTy = CE->getCallReturnType(); local
[all...]

Completed in 407 milliseconds