Searched refs:RTy (Results 1 - 15 of 15) sorted by relevance
/external/clang/lib/Sema/ |
H A D | SemaExprCXX.cpp | 4135 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...] |
H A D | SemaExprMember.cpp | 564 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 D | SemaType.cpp | 1028 if (const ReferenceType *RTy = dyn_cast<ReferenceType>(Ty)) { 1029 if (!RTy->getPointeeType()->isIncompleteOrObjectType()) {
|
/external/clang/lib/CodeGen/ |
H A D | CodeGenTypes.cpp | 386 const ReferenceType *RTy = cast<ReferenceType>(Ty); local 387 QualType ETy = RTy->getPointeeType();
|
H A D | CGDebugInfo.cpp | 583 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 D | CGExprScalar.cpp | 751 llvm::VectorType *RTy = llvm::VectorType::get(LTy->getElementType(), local 753 Value* NewV = llvm::UndefValue::get(RTy);
|
/external/llvm/include/llvm/ |
H A D | DIBuilder.h | 131 DIType createReferenceType(unsigned Tag, DIType RTy);
|
/external/clang/lib/StaticAnalyzer/Core/ |
H A D | RegionStore.cpp | 1062 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/clang/lib/AST/ |
H A D | DeclPrinter.cpp | 114 else if (const ReferenceType *RTy = BaseType->getAs<ReferenceType>()) 115 BaseType = RTy->getPointeeType();
|
H A D | ASTContext.cpp | 4840 } else if (const RecordType *RTy = PointeeTy->getAs<RecordType>()) { 4842 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_class")) { 4847 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_object")) { 4897 if (const RecordType *RTy = T->getAs<RecordType>()) { 4898 RecordDecl *RDecl = RTy->getDecl();
|
/external/llvm/lib/Transforms/Utils/ |
H A D | InlineFunction.cpp | 797 Type *RTy = CalledFunc->getReturnType(); local 804 PHI = PHINode::Create(RTy, Returns.size(), TheCall->getName(),
|
/external/llvm/lib/VMCore/ |
H A D | DIBuilder.cpp | 234 DIType DIBuilder::createReferenceType(unsigned Tag, DIType RTy) { argument 235 assert(RTy.Verify() && "Unable to create reference type"); 247 RTy
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfCompileUnit.cpp | 783 DIDescriptor RTy = Elements.getElement(0); local 784 addType(&Buffer, DIType(RTy));
|
/external/llvm/lib/TableGen/ |
H A D | Record.cpp | 1343 if (RecordRecTy *RTy = dynamic_cast<RecordRecTy*>(getType())) 1344 if (const RecordVal *RV = RTy->getRecord()->getValue(FieldName))
|
/external/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 1222 VectorType *RTy = dyn_cast<VectorType>(CurTy); local 1225 if (Record.size() < 4 || RTy == 0 || OpTy == 0) 1230 RTy->getNumElements());
|
Completed in 2794 milliseconds