/external/clang/lib/Sema/ |
D | SemaExprMember.cpp | 529 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()
|
D | SemaExprCXX.cpp | 3583 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 …]
|
D | SemaType.cpp | 982 if (const ReferenceType *RTy = dyn_cast<ReferenceType>(Ty)) { in BuildQualifiedType() local 983 if (!RTy->getPointeeType()->isIncompleteOrObjectType()) { in BuildQualifiedType()
|
/external/clang/lib/CodeGen/ |
D | CodeGenTypes.cpp | 378 const ReferenceType *RTy = cast<ReferenceType>(Ty); in ConvertType() local 379 QualType ETy = RTy->getPointeeType(); in ConvertType()
|
D | CGDebugInfo.cpp | 442 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()
|
D | CGExprScalar.cpp | 737 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/ |
D | RegionStore.cpp | 900 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/ |
D | DIBuilder.h | 113 DIType createReferenceType(DIType RTy);
|
/external/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 1100 Type *RTy = CalledFunc->getReturnType(); in InlineFunction() local 1107 PHI = PHINode::Create(RTy, Returns.size(), TheCall->getName(), in InlineFunction()
|
/external/llvm/lib/Analysis/ |
D | DIBuilder.cpp | 144 DIType DIBuilder::createReferenceType(DIType RTy) { in createReferenceType() argument 156 RTy in createReferenceType()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfCompileUnit.cpp | 716 DIDescriptor RTy = Elements.getElement(0); in constructTypeDIE() local 717 addType(&Buffer, DIType(RTy)); in constructTypeDIE()
|
/external/llvm/utils/TableGen/ |
D | Record.cpp | 1116 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/ |
D | BitcodeReader.cpp | 1403 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/ |
D | ASTContext.cpp | 4356 } 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()
|