Searched refs:RTy (Results 1 - 15 of 15) sorted by relevance

/external/llvm/include/llvm/Support/
H A DPatternMatch.h81 template<typename LTy, typename RTy>
84 RTy R;
86 match_combine_or(const LTy &Left, const RTy &Right) : L(Left), R(Right) { }
98 template<typename LTy, typename RTy>
101 RTy R;
103 match_combine_and(const LTy &Left, const RTy &Right) : L(Left), R(Right) { }
115 template<typename LTy, typename RTy>
116 inline match_combine_or<LTy, RTy> m_CombineOr(const LTy &L, const RTy &R) {
117 return match_combine_or<LTy, RTy>(
[all...]
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp4282 QualType RTy = RHS.get()->getType(); local
4284 bool RVoid = RTy->isVoidType();
4310 RTy = RHS.get()->getType();
4318 return RTy;
4329 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
4340 if (!Context.hasSameType(LTy, RTy) &&
4341 (LTy->isRecordType() || RTy->isRecordType())) {
4354 << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
4368 RTy = RHS.get()->getType();
4378 if (!Context.hasSameType(LTy, RTy)
[all...]
H A DSemaExprMember.cpp573 SourceRange BaseRange, const RecordType *RTy,
576 RecordDecl *RDecl = RTy->getDecl();
577 if (!SemaRef.isThisOutsideMemberFunctionBody(QualType(RTy, 0)) &&
578 SemaRef.RequireCompleteType(OpLoc, QualType(RTy, 0),
585 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0);
1171 if (const RecordType *RTy = BaseType->getAs<RecordType>()) {
1173 RTy, OpLoc, SS, HasTemplateArgs))
572 LookupMemberExprInRecord(Sema &SemaRef, LookupResult &R, SourceRange BaseRange, const RecordType *RTy, SourceLocation OpLoc, CXXScopeSpec &SS, bool HasTemplateArgs) argument
/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp409 const ReferenceType *RTy = cast<ReferenceType>(Ty); local
410 QualType ETy = RTy->getPointeeType();
H A DCGDebugInfo.cpp1402 llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy, argument
1405 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc));
H A DCGExprScalar.cpp939 llvm::VectorType *RTy = llvm::VectorType::get(LTy->getElementType(), local
941 Value* NewV = llvm::UndefValue::get(RTy);
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp1302 QualType RTy = R->getValueType(); local
1306 if (RTy->isAnyComplexType())
1317 if (RTy->isStructureOrClassType())
1321 if (RTy->isUnionType())
1324 if (RTy->isArrayType()) {
1325 if (RTy->isConstantArrayType())
1332 if (RTy->isVectorType())
/external/llvm/lib/TableGen/
H A DRecord.cpp359 const RecordRecTy *RTy = dyn_cast<RecordRecTy>(RHS); local
360 if (!RTy)
363 if (Rec == RTy->getRecord() || RTy->getRecord()->isSubClassOf(Rec))
368 if (RTy->getRecord()->isSubClassOf(SC[i]))
1351 if (RecordRecTy *RTy = dyn_cast<RecordRecTy>(getType()))
1352 if (const RecordVal *RV = RTy->getRecord()->getValue(FieldName))
/external/llvm/include/llvm/
H A DDIBuilder.h155 DIDerivedType createReferenceType(unsigned Tag, DIType RTy);
/external/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp829 Type *RTy = CalledFunc->getReturnType(); local
836 PHI = PHINode::Create(RTy, Returns.size(), TheCall->getName(),
/external/llvm/lib/IR/
H A DDIBuilder.cpp323 DIDerivedType DIBuilder::createReferenceType(unsigned Tag, DIType RTy) { argument
324 assert(RTy.isType() && "Unable to create reference type");
336 RTy
/external/clang/lib/AST/
H A DDeclPrinter.cpp120 else if (const ReferenceType *RTy = BaseType->getAs<ReferenceType>())
121 BaseType = RTy->getPointeeType();
H A DASTContext.cpp5220 } else if (const RecordType *RTy = PointeeTy->getAs<RecordType>()) {
5222 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_class")) {
5227 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_object")) {
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp952 DIDescriptor RTy = Elements.getElement(0); local
953 addType(&Buffer, DIType(RTy));
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1431 VectorType *RTy = dyn_cast<VectorType>(CurTy); local
1434 if (Record.size() < 4 || RTy == 0 || OpTy == 0)
1439 RTy->getNumElements());

Completed in 373 milliseconds