Home
last modified time | relevance | path

Searched refs:RTy (Results 1 – 14 of 14) sorted by relevance

/external/clang/lib/Sema/
DSemaExprMember.cpp529 SourceRange BaseRange, const RecordType *RTy, in LookupMemberExprInRecord() argument
532 RecordDecl *RDecl = RTy->getDecl(); in LookupMemberExprInRecord()
533 if (SemaRef.RequireCompleteType(OpLoc, QualType(RTy, 0), in LookupMemberExprInRecord()
540 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0); in LookupMemberExprInRecord()
1051 if (const RecordType *RTy = BaseType->getAs<RecordType>()) { in LookupMemberExpr() local
1053 RTy, OpLoc, SS, HasTemplateArgs)) in LookupMemberExpr()
DSemaExprCXX.cpp3583 QualType RTy = RHS.get()->getType(); in CXXCheckConditionalOperands() local
3585 bool RVoid = RTy->isVoidType(); in CXXCheckConditionalOperands()
3594 RTy = RHS.get()->getType(); in CXXCheckConditionalOperands()
3602 return RTy; in CXXCheckConditionalOperands()
3613 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1) in CXXCheckConditionalOperands()
3624 if (!Context.hasSameType(LTy, RTy) && in CXXCheckConditionalOperands()
3625 (LTy->isRecordType() || RTy->isRecordType())) { in CXXCheckConditionalOperands()
3638 << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); in CXXCheckConditionalOperands()
3652 RTy = RHS.get()->getType(); in CXXCheckConditionalOperands()
3663 bool Same = Context.hasSameType(LTy, RTy); in CXXCheckConditionalOperands()
[all …]
DSemaType.cpp982 if (const ReferenceType *RTy = dyn_cast<ReferenceType>(Ty)) { in BuildQualifiedType() local
983 if (!RTy->getPointeeType()->isIncompleteOrObjectType()) { in BuildQualifiedType()
/external/clang/lib/CodeGen/
DCodeGenTypes.cpp378 const ReferenceType *RTy = cast<ReferenceType>(Ty); in ConvertType() local
379 QualType ETy = RTy->getPointeeType(); in ConvertType()
DCGDebugInfo.cpp442 if (const RecordType *RTy = dyn_cast<RecordType>(PointeeTy)) { in CreatePointeeType() local
443 RecordDecl *RD = RTy->getDecl(); in CreatePointeeType()
974 llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy, in getOrCreateRecordType() argument
976 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc)); in getOrCreateRecordType()
DCGExprScalar.cpp737 llvm::VectorType *RTy = llvm::VectorType::get(LTy->getElementType(), in VisitShuffleVectorExpr() local
739 Value* NewV = llvm::UndefValue::get(RTy); in VisitShuffleVectorExpr()
/external/clang/lib/StaticAnalyzer/Core/
DRegionStore.cpp900 QualType RTy = R->getValueType(); in Retrieve() local
911 if (RTy->isStructureOrClassType()) in Retrieve()
915 if (RTy->isUnionType()) in Retrieve()
918 if (RTy->isArrayType()) in Retrieve()
922 if (RTy->isVectorType()) in Retrieve()
/external/llvm/include/llvm/Analysis/
DDIBuilder.h113 DIType createReferenceType(DIType RTy);
/external/llvm/lib/Transforms/Utils/
DInlineFunction.cpp1100 Type *RTy = CalledFunc->getReturnType(); in InlineFunction() local
1107 PHI = PHINode::Create(RTy, Returns.size(), TheCall->getName(), in InlineFunction()
/external/llvm/lib/Analysis/
DDIBuilder.cpp144 DIType DIBuilder::createReferenceType(DIType RTy) { in createReferenceType() argument
156 RTy in createReferenceType()
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfCompileUnit.cpp716 DIDescriptor RTy = Elements.getElement(0); in constructTypeDIE() local
717 addType(&Buffer, DIType(RTy)); in constructTypeDIE()
/external/llvm/utils/TableGen/
DRecord.cpp1116 if (RecordRecTy *RTy = dynamic_cast<RecordRecTy*>(getType())) in getFieldType() local
1117 if (const RecordVal *RV = RTy->getRecord()->getValue(FieldName)) in getFieldType()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp1403 VectorType *RTy = dyn_cast<VectorType>(CurTy); in ParseConstants() local
1406 if (Record.size() < 4 || RTy == 0 || OpTy == 0) in ParseConstants()
1411 RTy->getNumElements()); in ParseConstants()
/external/clang/lib/AST/
DASTContext.cpp4356 } else if (const RecordType *RTy = PointeeTy->getAs<RecordType>()) { in getObjCEncodingForTypeImpl() local
4358 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_class")) { in getObjCEncodingForTypeImpl()
4363 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_object")) { in getObjCEncodingForTypeImpl()
4413 if (const RecordType *RTy = T->getAs<RecordType>()) { in getObjCEncodingForTypeImpl() local
4414 RecordDecl *RDecl = RTy->getDecl(); in getObjCEncodingForTypeImpl()