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

/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/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/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp829 Type *RTy = CalledFunc->getReturnType(); local
836 PHI = PHINode::Create(RTy, Returns.size(), TheCall->getName(),
/external/clang/lib/Sema/
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
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...]
/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());
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp952 DIDescriptor RTy = Elements.getElement(0); local
953 addType(&Buffer, DIType(RTy));
/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/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())

Completed in 383 milliseconds