Searched refs:RTy (Results 1 - 16 of 16) sorted by relevance

/external/llvm/include/llvm/IR/
H A DPatternMatch.h81 template<typename LTy, typename RTy>
84 RTy R;
86 match_combine_or(const LTy &Left, const RTy &Right) : L(Left), R(Right) { }
98 template<typename LTy, typename RTy>
101 RTy R;
103 match_combine_and(const LTy &Left, const RTy &Right) : L(Left), R(Right) { }
115 template<typename LTy, typename RTy>
116 inline match_combine_or<LTy, RTy> m_CombineOr(const LTy &L, const RTy &R) {
117 return match_combine_or<LTy, RTy>(
[all...]
H A DDIBuilder.h173 DIDerivedType createReferenceType(unsigned Tag, DIType RTy);
/external/clang/lib/Sema/
H A DSemaExprMember.cpp557 explicit RecordMemberExprValidatorCCC(const RecordType *RTy) argument
558 : Record(RTy->getDecl()) {}
593 SourceRange BaseRange, const RecordType *RTy,
596 RecordDecl *RDecl = RTy->getDecl();
597 if (!SemaRef.isThisOutsideMemberFunctionBody(QualType(RTy, 0)) &&
598 SemaRef.RequireCompleteType(OpLoc, QualType(RTy, 0),
605 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0);
642 RecordMemberExprValidatorCCC Validator(RTy);
1230 if (const RecordType *RTy = BaseType->getAs<RecordType>()) {
1232 RTy, OpLo
592 LookupMemberExprInRecord(Sema &SemaRef, LookupResult &R, SourceRange BaseRange, const RecordType *RTy, SourceLocation OpLoc, CXXScopeSpec &SS, bool HasTemplateArgs) argument
[all...]
H A DSemaExprCXX.cpp4392 QualType RTy = RHS.get()->getType(); local
4394 bool RVoid = RTy->isVoidType();
4418 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
4429 if (!Context.hasSameType(LTy, RTy) &&
4430 (LTy->isRecordType() || RTy->isRecordType())) {
4442 << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
4456 RTy = RHS.get()->getType();
4466 if (!Context.hasSameType(LTy, RTy) &&
4467 Context.hasSameUnqualifiedType(LTy, RTy) &&
4473 Qualifiers RCVR = Qualifiers::fromCVRMask(RTy
[all...]
/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp407 const ReferenceType *RTy = cast<ReferenceType>(Ty); local
408 QualType ETy = RTy->getPointeeType();
H A DCGDebugInfo.cpp1418 llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy, argument
1421 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc));
H A DCGExprScalar.cpp942 llvm::VectorType *RTy = llvm::VectorType::get(LTy->getElementType(), local
944 Value* NewV = llvm::UndefValue::get(RTy);
H A DCGBuiltin.cpp1523 llvm::Type *RTy; local
1533 RTy = Exchange->getType();
1546 RTy));
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp1292 QualType RTy = R->getValueType(); local
1296 if (RTy->isAnyComplexType())
1307 if (RTy->isStructureOrClassType())
1311 if (RTy->isUnionType())
1314 if (RTy->isArrayType()) {
1315 if (RTy->isConstantArrayType())
1322 if (RTy->isVectorType())
/external/llvm/lib/TableGen/
H A DRecord.cpp359 const RecordRecTy *RTy = dyn_cast<RecordRecTy>(RHS); local
360 if (!RTy)
363 if (Rec == RTy->getRecord() || RTy->getRecord()->isSubClassOf(Rec))
368 if (RTy->getRecord()->isSubClassOf(SC[i]))
1360 if (RecordRecTy *RTy = dyn_cast<RecordRecTy>(getType()))
1361 if (const RecordVal *RV = RTy->getRecord()->getValue(FieldName))
/external/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp919 Type *RTy = CalledFunc->getReturnType(); local
926 PHI = PHINode::Create(RTy, Returns.size(), TheCall->getName(),
/external/llvm/lib/IR/
H A DDIBuilder.cpp343 DIDerivedType DIBuilder::createReferenceType(unsigned Tag, DIType RTy) { argument
344 assert(RTy.isType() && "Unable to create reference type");
356 RTy.getRef()
/external/clang/lib/AST/
H A DDeclPrinter.cpp120 else if (const ReferenceType *RTy = BaseType->getAs<ReferenceType>())
121 BaseType = RTy->getPointeeType();
H A DASTContext.cpp5300 } else if (const RecordType *RTy = PointeeTy->getAs<RecordType>()) {
5302 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_class")) {
5307 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_object")) {
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp1165 DIType RTy(Elements.getElement(0));
1166 if (RTy)
1167 addType(Buffer, RTy);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1497 VectorType *RTy = dyn_cast<VectorType>(CurTy); local
1500 if (Record.size() < 4 || !RTy || !OpTy)
1505 RTy->getNumElements());

Completed in 550 milliseconds