Searched defs:ResultTy (Results 1 - 23 of 23) 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.cpp307 QualType ResultTy) {
319 return makeNonLoc(symLHS, Op, symRHS, ResultTy);
323 return makeNonLoc(symLHS, Op, rInt->getValue(), ResultTy);
327 return makeNonLoc(lInt->getValue(), Op, symRHS, ResultTy);
304 makeSymExprValNN(ProgramStateRef State, BinaryOperator::Opcode Op, NonLoc LHS, NonLoc RHS, QualType ResultTy) argument
H A DCallEvent.cpp30 QualType ResultTy = E->getType(); local
39 ResultTy = Ctx.getLValueReferenceType(ResultTy);
42 ResultTy = Ctx.getRValueReferenceType(ResultTy);
49 return ResultTy;
H A DExprEngineCallAndReturn.cpp565 QualType ResultTy = Call.getResultType(); local
568 SVal R = SVB.conjureSymbolVal(nullptr, E, LCtx, ResultTy, Count);
/external/llvm/include/llvm/CodeGen/
H A DFastISel.h94 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy, argument
97 RetTy = ResultTy;
116 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy, argument
120 RetTy = ResultTy;
140 CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultTy, argument
143 RetTy = ResultTy;
151 CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultTy, argument
154 RetTy = ResultTy;
/external/clang/include/clang/Sema/
H A DOverload.h601 QualType ResultTy; member in struct:clang::OverloadCandidate::__anon723
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp675 Type *ResultTy, const DataLayout &DL,
677 Type *IntPtrTy = DL.getIntPtrType(ResultTy);
728 Type *ResultTy, const DataLayout &DL,
736 Type *ResultElementTy = ResultTy->getPointerElementType();
753 Res = ConstantExpr::getIntToPtr(Res, ResultTy);
801 return ConstantExpr::getIntToPtr(C, ResultTy);
876 C = FoldBitCast(C, ResultTy, DL);
674 CastGEPIndices(Type *SrcTy, ArrayRef<Constant *> Ops, Type *ResultTy, const DataLayout &DL, const TargetLibraryInfo *TLI) argument
727 SymbolicallyEvaluateGEP(Type *SrcTy, ArrayRef<Constant *> Ops, Type *ResultTy, const DataLayout &DL, const TargetLibraryInfo *TLI) argument
H A DLazyValueInfo.cpp771 IntegerType *ResultTy = cast<IntegerType>(BBI->getType()); local
805 Result.markConstantRange(LHSRange.truncate(ResultTy->getBitWidth()));
808 Result.markConstantRange(LHSRange.signExtend(ResultTy->getBitWidth()));
811 Result.markConstantRange(LHSRange.zeroExtend(ResultTy->getBitWidth()));
H A DScalarEvolution.cpp935 Type *ResultTy) {
938 return SE.getTruncateOrZeroExtend(It, ResultTy);
994 unsigned W = SE.getTypeSizeInBits(ResultTy);
1040 SE.getTruncateOrZeroExtend(DivResult, ResultTy));
933 BinomialCoefficient(const SCEV *It, unsigned K, ScalarEvolution &SE, Type *ResultTy) argument
/external/llvm/lib/IR/
H A DConstantFold.cpp1655 Type *ResultTy; local
1657 ResultTy = VectorType::get(Type::getInt1Ty(C1->getContext()),
1660 ResultTy = Type::getInt1Ty(C1->getContext());
1664 return Constant::getNullValue(ResultTy);
1667 return Constant::getAllOnesValue(ResultTy);
1677 return UndefValue::get(ResultTy);
1682 return ConstantInt::get(ResultTy, CmpInst::isTrueWhenEqual(pred));
1686 return ConstantInt::get(ResultTy, CmpInst::isUnordered(Predicate));
1730 case ICmpInst::ICMP_EQ: return ConstantInt::get(ResultTy, V1 == V2);
1731 case ICmpInst::ICMP_NE: return ConstantInt::get(ResultTy, V
[all...]
H A DFunction.cpp823 Type *ResultTy = DecodeFixedType(TableRef, Tys, Context); local
833 return FunctionType::get(ResultTy, ArgTys, true);
835 return FunctionType::get(ResultTy, ArgTys, false);
H A DConstants.cpp2063 Type *ResultTy = Type::getInt1Ty(LHS->getContext()); local
2065 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
2068 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
2087 Type *ResultTy = Type::getInt1Ty(LHS->getContext()); local
2089 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
2092 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
/external/clang/include/clang/AST/
H A DDeclBase.h1013 typedef ArrayRef<NamedDecl *> ResultTy; typedef in class:clang::DeclContextLookupResult
1014 ResultTy Result;
1029 typedef llvm::iterator_adaptor_base<iterator, ResultTy::iterator,
/external/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp2703 QualType ResultTy; local
2707 S.IsNoReturnConversion(A, DeducedA, ResultTy)))
H A DSemaOverload.cpp1296 QualType &ResultTy) {
1337 ResultTy = ToType;
6616 /// operator. ResultTy and ParamTys are the result and parameter types
6623 void Sema::AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys, argument
6637 Candidate.BuiltinTypes.ResultTy = ResultTy;
7976 QualType ResultTy = S.Context.getLValueReferenceType(PointeeType); local
7979 S.AddBuiltinCandidate(ResultTy, ParamTypes, Args, CandidateSet);
7991 QualType ResultTy = S.Context.getLValueReferenceType(PointeeType); local
7994 S.AddBuiltinCandidate(ResultTy, ParamType
1295 IsNoReturnConversion(QualType FromType, QualType ToType, QualType &ResultTy) argument
8044 QualType ResultTy = S.Context.getLValueReferenceType(T); local
[all...]
H A DTreeTransform.h1970 QualType ResultTy) {
1973 if (Result.isInvalid() || ResultTy->isDependentType())
1979 ILE->setType(ResultTy);
1967 RebuildInitList(SourceLocation LBraceLoc, MultiExprArg Inits, SourceLocation RBraceLoc, QualType ResultTy) argument
H A DSemaExpr.cpp5769 QualType ResultTy = CompositeTy.withCVRQualifiers(MergedCVRQual); local
5771 ResultTy = S.Context.getBlockPointerType(ResultTy);
5773 ResultTy = S.Context.getPointerType(ResultTy);
5775 LHS = S.ImpCastExprToType(LHS.get(), ResultTy, CK_BitCast);
5776 RHS = S.ImpCastExprToType(RHS.get(), ResultTy, CK_BitCast);
5777 return ResultTy;
8456 QualType ResultTy = Context.getLogicalOperationType(); local
8460 return ResultTy;
10000 QualType ResultTy; // Result type of the binary operator. local
[all...]
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1286 Type *ResultTy = nullptr; local
1298 ResultTy = Type::getVoidTy(Context);
1301 ResultTy = Type::getHalfTy(Context);
1304 ResultTy = Type::getFloatTy(Context);
1307 ResultTy = Type::getDoubleTy(Context);
1310 ResultTy = Type::getX86_FP80Ty(Context);
1313 ResultTy = Type::getFP128Ty(Context);
1316 ResultTy = Type::getPPC_FP128Ty(Context);
1319 ResultTy = Type::getLabelTy(Context);
1322 ResultTy
[all...]
/external/clang/lib/AST/
H A DASTImporter.cpp3295 QualType ResultTy = Importer.Import(D->getReturnType()); local
3296 if (ResultTy.isNull())
3303 Name.getObjCSelector(), ResultTy, ReturnTInfo, DC, D->isInstanceMethod(),
H A DASTContext.cpp2866 ASTContext::getFunctionNoProtoType(QualType ResultTy, argument
2873 FunctionNoProtoType::Profile(ID, ResultTy, Info);
2881 if (!ResultTy.isCanonical()) {
2882 Canonical = getFunctionNoProtoType(getCanonicalType(ResultTy), Info);
2892 FunctionNoProtoType(ResultTy, Canonical, newInfo);
2906 ASTContext::getFunctionType(QualType ResultTy, ArrayRef<QualType> ArgArray, argument
2913 FunctionProtoType::Profile(ID, ResultTy, ArgArray.begin(), NumArgs, EPI,
2923 EPI.ExceptionSpec.Type == EST_None && isCanonicalResultType(ResultTy) &&
2943 QualType CanResultTy = getCanonicalType(ResultTy);
2944 if (ResultTy
[all...]
H A DExprConstant.cpp7577 QualType ResultTy,
7584 const llvm::fltSemantics &Sem = Context.getFloatTypeSemantics(ResultTy);
7576 TryEvaluateBuiltinNaN(const ASTContext &Context, QualType ResultTy, const Expr *Arg, bool SNaN, llvm::APFloat &Result) argument
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp2523 QualType ResultTy = OMethod->getReturnType(); local
2526 if (ResultTy == CGM.getContext().getObjCInstanceType())
2527 ResultTy = CGM.getContext().getPointerType(
2530 Elts.push_back(getOrCreateType(ResultTy, F));
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp776 QualType ResultTy = MD->getReturnType(); local
784 return getMethodSummary(S, ID, MD, ResultTy, *CachedSummaries);
2779 QualType ResultTy = Ex->getType(); local
2781 RefVal::makeNotOwned(RetEffect::ObjC, ResultTy));
2806 QualType ResultTy = Ex->getType(); local
2808 RefVal::makeNotOwned(RetEffect::ObjC, ResultTy));
3031 QualType ResultTy = CallOrMsg.getResultType(); local
3033 ResultTy));
3048 QualType ResultTy = GetReturnType(Ex, C.getASTContext()); local
3050 ResultTy));
3315 QualType ResultTy = CE->getCallReturnType(C.getASTContext()); local
[all...]

Completed in 909 milliseconds