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

/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp386 const ReferenceType *RTy = cast<ReferenceType>(Ty); local
387 QualType ETy = RTy->getPointeeType();
H A DCGDebugInfo.cpp583 if (const RecordType *RTy = dyn_cast<RecordType>(PointeeTy)) {
584 RecordDecl *RD = RTy->getDecl();
588 TypeCache[QualType(RTy, 0).getAsOpaquePtr()] = RetTy;
1199 llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy, argument
1202 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc));
H A DCGExprScalar.cpp751 llvm::VectorType *RTy = llvm::VectorType::get(LTy->getElementType(), local
753 Value* NewV = llvm::UndefValue::get(RTy);
/external/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp797 Type *RTy = CalledFunc->getReturnType(); local
804 PHI = PHINode::Create(RTy, Returns.size(), TheCall->getName(),
/external/llvm/lib/VMCore/
H A DDIBuilder.cpp234 DIType DIBuilder::createReferenceType(unsigned Tag, DIType RTy) { argument
235 assert(RTy.Verify() && "Unable to create reference type");
247 RTy
/external/clang/lib/Sema/
H A DSemaExprMember.cpp564 SourceRange BaseRange, const RecordType *RTy,
567 RecordDecl *RDecl = RTy->getDecl();
568 if (!SemaRef.isThisOutsideMemberFunctionBody(QualType(RTy, 0)) &&
569 SemaRef.RequireCompleteType(OpLoc, QualType(RTy, 0),
576 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0);
1127 if (const RecordType *RTy = BaseType->getAs<RecordType>()) {
1129 RTy, OpLoc, SS, HasTemplateArgs))
563 LookupMemberExprInRecord(Sema &SemaRef, LookupResult &R, SourceRange BaseRange, const RecordType *RTy, SourceLocation OpLoc, CXXScopeSpec &SS, bool HasTemplateArgs) argument
H A DSemaExprCXX.cpp4135 QualType RTy = RHS.get()->getType(); local
4137 bool RVoid = RTy->isVoidType();
4163 RTy = RHS.get()->getType();
4171 return RTy;
4182 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
4193 if (!Context.hasSameType(LTy, RTy) &&
4194 (LTy->isRecordType() || RTy->isRecordType())) {
4207 << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
4221 RTy = RHS.get()->getType();
4231 if (!Context.hasSameType(LTy, RTy)
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp1062 QualType RTy = R->getValueType(); local
1073 if (RTy->isStructureOrClassType())
1077 if (RTy->isUnionType())
1080 if (RTy->isArrayType()) {
1081 if (RTy->isConstantArrayType())
1088 if (RTy->isVectorType())
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1222 VectorType *RTy = dyn_cast<VectorType>(CurTy); local
1225 if (Record.size() < 4 || RTy == 0 || OpTy == 0)
1230 RTy->getNumElements());
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp783 DIDescriptor RTy = Elements.getElement(0); local
784 addType(&Buffer, DIType(RTy));

Completed in 181 milliseconds