Searched defs:RTy (Results 1 - 11 of 11) sorted by relevance

/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp495 const ReferenceType *RTy = cast<ReferenceType>(Ty); local
496 QualType ETy = RTy->getPointeeType();
H A DCGDebugInfo.cpp1447 llvm::DIType *CGDebugInfo::getOrCreateRecordType(QualType RTy, argument
1450 llvm::DIType *T = getOrCreateType(RTy, getOrCreateFile(Loc));
H A DCGExprScalar.cpp1025 llvm::VectorType *RTy = llvm::VectorType::get(LTy->getElementType(), local
1027 Value* NewV = llvm::UndefValue::get(RTy);
H A DCGBuiltin.cpp1826 llvm::Type *RTy; local
1836 RTy = Exchange->getType();
1849 RTy));
/external/clang/lib/Sema/
H A DSemaExprMember.cpp558 explicit RecordMemberExprValidatorCCC(const RecordType *RTy) argument
559 : Record(RTy->getDecl()) {
602 const RecordType *RTy,
607 RecordDecl *RDecl = RTy->getDecl();
608 if (!SemaRef.isThisOutsideMemberFunctionBody(QualType(RTy, 0)) &&
609 SemaRef.RequireCompleteType(OpLoc, QualType(RTy, 0),
616 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0);
664 llvm::make_unique<RecordMemberExprValidatorCCC>(RTy),
1271 if (const RecordType *RTy = BaseType->getAs<RecordType>()) {
1273 if (LookupMemberExprInRecord(S, R, BaseExpr.get(), RTy,
600 LookupMemberExprInRecord(Sema &SemaRef, LookupResult &R, Expr *BaseExpr, const RecordType *RTy, SourceLocation OpLoc, bool IsArrow, CXXScopeSpec &SS, bool HasTemplateArgs, TypoExpr *&TE) argument
[all...]
H A DSemaExprCXX.cpp4862 QualType RTy = RHS.get()->getType(); local
4864 bool RVoid = RTy->isVoidType();
4888 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
4899 if (!Context.hasSameType(LTy, RTy) &&
4900 (LTy->isRecordType() || RTy->isRecordType())) {
4912 << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
4926 RTy = RHS.get()->getType();
4936 if (!Context.hasSameType(LTy, RTy) &&
4937 Context.hasSameUnqualifiedType(LTy, RTy) &&
4943 Qualifiers RCVR = Qualifiers::fromCVRMask(RTy
[all...]
/external/llvm/lib/IR/
H A DDIBuilder.cpp258 DIDerivedType *DIBuilder::createReferenceType(unsigned Tag, DIType *RTy, argument
261 assert(RTy && "Unable to create reference type");
263 DITypeRef::get(RTy), SizeInBits, AlignInBits, 0, 0);
/external/llvm/lib/TableGen/
H A DRecord.cpp163 const RecordRecTy *RTy = dyn_cast<RecordRecTy>(RHS); local
164 if (!RTy)
167 if (RTy->getRecord() == Rec || Rec->isSubClassOf(RTy->getRecord()))
170 for (Record *SC : RTy->getRecord()->getSuperClasses())
1262 if (RecordRecTy *RTy = dyn_cast<RecordRecTy>(getType()))
1263 if (const RecordVal *RV = RTy->getRecord()->getValue(FieldName))
/external/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp1606 Type *RTy = CalledFunc->getReturnType(); local
1613 PHI = PHINode::Create(RTy, Returns.size(), TheCall->getName(),
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp1389 QualType RTy = R->getValueType(); local
1393 if (RTy->isAnyComplexType())
1404 if (RTy->isStructureOrClassType())
1408 if (RTy->isUnionType())
1411 if (RTy->isArrayType()) {
1412 if (RTy->isConstantArrayType())
1419 if (RTy->isVectorType())
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2850 VectorType *RTy = dyn_cast<VectorType>(CurTy); local
2853 if (Record.size() < 4 || !RTy || !OpTy)
2858 RTy->getNumElements());

Completed in 307 milliseconds