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

/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp414 const ReferenceType *RTy = cast<ReferenceType>(Ty); local
415 QualType ETy = RTy->getPointeeType();
H A DCGBuiltin.cpp1614 llvm::Type *RTy; local
1624 RTy = Exchange->getType();
1637 RTy));
H A DCGDebugInfo.cpp1437 llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy, argument
1440 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc));
H A DCGExprScalar.cpp1022 llvm::VectorType *RTy = llvm::VectorType::get(LTy->getElementType(), local
1024 Value* NewV = llvm::UndefValue::get(RTy);
/external/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp1337 Type *RTy = CalledFunc->getReturnType(); local
1344 PHI = PHINode::Create(RTy, Returns.size(), TheCall->getName(),
/external/clang/lib/Sema/
H A DSemaExprMember.cpp559 explicit RecordMemberExprValidatorCCC(const RecordType *RTy) argument
560 : Record(RTy->getDecl()) {
603 const RecordType *RTy,
608 RecordDecl *RDecl = RTy->getDecl();
609 if (!SemaRef.isThisOutsideMemberFunctionBody(QualType(RTy, 0)) &&
610 SemaRef.RequireCompleteType(OpLoc, QualType(RTy, 0),
617 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0);
655 llvm::make_unique<RecordMemberExprValidatorCCC>(RTy),
1244 if (const RecordType *RTy = BaseType->getAs<RecordType>()) {
1246 if (LookupMemberExprInRecord(S, R, BaseExpr.get(), RTy,
601 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.cpp4538 QualType RTy = RHS.get()->getType(); local
4540 bool RVoid = RTy->isVoidType();
4564 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
4575 if (!Context.hasSameType(LTy, RTy) &&
4576 (LTy->isRecordType() || RTy->isRecordType())) {
4588 << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
4602 RTy = RHS.get()->getType();
4612 if (!Context.hasSameType(LTy, RTy) &&
4613 Context.hasSameUnqualifiedType(LTy, RTy) &&
4619 Qualifiers RCVR = Qualifiers::fromCVRMask(RTy
[all...]
/external/llvm/lib/IR/
H A DDIBuilder.cpp251 MDDerivedType *DIBuilder::createReferenceType(unsigned Tag, MDType *RTy) { argument
252 assert(RTy && "Unable to create reference type");
254 MDTypeRef::get(RTy), 0, 0, 0, 0);
/external/llvm/lib/TableGen/
H A DRecord.cpp372 const RecordRecTy *RTy = dyn_cast<RecordRecTy>(RHS); local
373 if (!RTy)
376 if (Rec == RTy->getRecord() || RTy->getRecord()->isSubClassOf(Rec))
381 if (RTy->getRecord()->isSubClassOf(SC[i]))
1378 if (RecordRecTy *RTy = dyn_cast<RecordRecTy>(getType()))
1379 if (const RecordVal *RV = RTy->getRecord()->getValue(FieldName))
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp1293 QualType RTy = R->getValueType(); local
1297 if (RTy->isAnyComplexType())
1308 if (RTy->isStructureOrClassType())
1312 if (RTy->isUnionType())
1315 if (RTy->isArrayType()) {
1316 if (RTy->isConstantArrayType())
1323 if (RTy->isVectorType())
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2408 VectorType *RTy = dyn_cast<VectorType>(CurTy); local
2411 if (Record.size() < 4 || !RTy || !OpTy)
2416 RTy->getNumElements());

Completed in 484 milliseconds