Searched refs:getTypePtr (Results 1 - 25 of 77) sorted by relevance

1234

/freebsd-10.1-release/contrib/llvm/tools/clang/lib/AST/
H A DStmtIterator.cpp27 t = vt->getElementType().getTypePtr();
37 p = FindVA(p->getElementType().getTypePtr());
72 if (const VariableArrayType* VAPtr = FindVA(VD->getType().getTypePtr())) {
82 FindVA(TD->getUnderlyingType().getTypePtr())) {
H A DTemplateBase.cpp38 const ::clang::Type *T = TemplArg.getIntegralType().getTypePtr();
H A DTypeLoc.cpp137 if (Cur.castAs<FunctionProtoTypeLoc>().getTypePtr()
183 if (Cur.castAs<FunctionProtoTypeLoc>().getTypePtr()->hasTrailingReturn())
250 switch (getTypePtr()->getKind()) {
319 Builder.MakeTrivial(Context, getTypePtr()->getQualifier(), Loc);
327 Builder.MakeTrivial(Context, getTypePtr()->getQualifier(), Loc);
336 if (getTypePtr()->getQualifier()) {
338 Builder.MakeTrivial(Context, getTypePtr()->getQualifier(), Loc);
348 getTypePtr()->getArgs(),
H A DType.cpp47 const Type* ty = getTypePtr();
201 return ATy->getElementType().getTypePtr();
210 ->getElementType().getTypePtr();
325 Cur = Ty->desugar().getTypePtr(); \
358 Cur = Ty->desugar().getTypePtr(); \
556 return Visit(T.getTypePtr());
835 const Type *T = CanonicalType.getTypePtr();
984 QualType CanonicalType = getTypePtr()->CanonicalType;
1048 QualType CanonicalType = getTypePtr()->CanonicalType;
1240 const Type *ty = getTypePtr();
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/AST/
H A DTypeLoc.h111 const Type *getTypePtr() const { function in class:clang::TypeLoc
112 return QualType::getFromOpaquePtr(Ty).getTypePtr();
212 const Type *getTypePtr() const { function in class:clang::UnqualTypeLoc
217 return (TypeLocClass) getTypePtr()->getTypeClass();
240 TypeLoc::getLocalAlignmentForType(QualType(getTypePtr(), 0));
243 return UnqualTypeLoc(getTypePtr(), reinterpret_cast<void*>(dataInt));
322 Derived::classofType(TL.getTypePtr());
346 const TypeClass *getTypePtr() const { function in class:clang::ConcreteTypeLoc
347 return cast<TypeClass>(Base::getTypePtr());
433 Derived::classofType(TL.getTypePtr());
440 const TypeClass *getTypePtr() const { function in class:clang::InheritingConcreteTypeLoc
[all...]
H A DCanonicalType.h71 const T *getTypePtr() const { return cast<T>(Stored.getTypePtr()); } function in class:clang::CanQual
217 return CanQualType::CreateUnsafe(this->getTypePtr()->Accessor()); \
221 Type Accessor() const { return this->getTypePtr()->Accessor(); }
232 const T *getTypePtr() const { return Stored.getTypePtr(); } function in class:clang::CanProxyBase
357 return Val.getTypePtr();
562 return CanQualType::CreateUnsafe(this->getTypePtr()->getArgType(i));
572 return arg_type_iterator(this->getTypePtr()->arg_type_begin());
576 return arg_type_iterator(this->getTypePtr()
[all...]
H A DRecursiveASTVisitor.h602 const_cast<Type*>(T.getTypePtr()));
1004 if (T->getBaseType().getTypePtr() != T)
1029 TRY_TO(WalkUpFrom##TYPE(const_cast<TYPE*>(TL.getTypePtr()))); \
1060 TRY_TO(TraverseType(TL.getTypePtr()->getElementType()));
1083 TRY_TO(TraverseType(QualType(TL.getTypePtr()->getClass(), 0)));
1121 if (TL.getTypePtr()->getSizeExpr())
1122 TRY_TO(TraverseStmt(TL.getTypePtr()->getSizeExpr()));
1123 TRY_TO(TraverseType(TL.getTypePtr()->getElementType()));
1128 TRY_TO(TraverseType(TL.getTypePtr()->getElementType()));
1134 TRY_TO(TraverseType(TL.getTypePtr()
[all...]
H A DType.h570 const Type *getTypePtr() const;
589 return *getTypePtr();
593 return getTypePtr();
770 QualType getLocalUnqualifiedType() const { return QualType(getTypePtr(), 0); }
1004 return Val.getTypePtr();
3872 return cast<TemplateSpecializationType>(InjectedType.getTypePtr());
4631 inline const Type *QualType::getTypePtr() const { function in class:clang::FunctionType::ExtInfo::FunctionProtoType::QualType
4676 return getTypePtr()->isCanonicalUnqualified();
4683 const Type *T = getTypePtr();
4712 if (!getTypePtr()
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DCastToStructChecker.cpp41 const PointerType *OrigPTy = dyn_cast<PointerType>(OrigTy.getTypePtr());
42 const PointerType *ToPTy = dyn_cast<PointerType>(ToTy.getTypePtr());
H A DObjCContainersASTChecker.cpp48 const Type *TP = T.getTypePtr();
59 return isPointerSize(PointeeT.getTypePtr());
H A DCastSizeChecker.cpp36 const PointerType *ToPTy = dyn_cast<PointerType>(ToTy.getTypePtr());
H A DMallocSizeofChecker.cpp145 if (A.getTypePtr() == B.getTypePtr())
H A DGenericTaintChecker.cpp163 (E->getType().getTypePtr()->isPointerType() &&
439 dyn_cast<PointerType>(Arg->getType().getCanonicalType().getTypePtr());
490 const Type *ArgTy = Arg->getType().getTypePtr();
600 dyn_cast<PointerType>(D->getType().getTypePtr()))
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTCommon.h48 if (const BuiltinType *BT = dyn_cast<BuiltinType>(T.getTypePtr()))
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Analysis/
H A DCocoaConventions.cpp28 while (const TypedefType *TD = dyn_cast<TypedefType>(RetTy.getTypePtr())) {
H A DPseudoConstantAnalysis.cpp182 if (!VD->getType().getTypePtr()->isReferenceType())
H A DLiveVariables.cpp233 const Type *ty = Ty.getTypePtr();
239 ty = VT->getElementType().getTypePtr();
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenTBAA.cpp98 const Type *Ty = Context.getCanonicalType(QTy).getTypePtr();
214 const Type *Ty = Context.getCanonicalType(QTy).getTypePtr();
243 const Type *Ty = Context.getCanonicalType(QTy).getTypePtr();
296 const Type *BTy = Context.getCanonicalType(BaseQTy).getTypePtr();
H A DCodeGenTypes.cpp123 const Type *Key = CGT.getContext().getTagDeclType(RD).getTypePtr();
261 if (RecordDeclTypes.count(Context.getTagDeclType(RD).getTypePtr()))
296 const Type *Ty = T.getTypePtr();
629 const Type *Key = Context.getTagDeclType(RD).getTypePtr();
692 const Type *Key = Context.getTagDeclType(RD).getTypePtr();
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTType.cpp66 const ArrayType *array_type = dyn_cast<ArrayType>(qual_type.getTypePtr());
76 const TagType *tag_type = dyn_cast<TagType>(qual_type.getTypePtr());
355 length = cast<ConstantArrayType>(GetCanonicalQualType().getTypePtr())->getSize().getLimitedValue();
375 const clang::FunctionProtoType *function_proto_type = llvm::dyn_cast<clang::FunctionProtoType>(qual_type.getTypePtr());
399 const ReferenceType *reference_type = cast<ReferenceType>(qual_type.getTypePtr());
415 const FunctionProtoType* func = dyn_cast<FunctionProtoType>(qual_type.getTypePtr());
428 const FunctionProtoType* func = dyn_cast<FunctionProtoType>(qual_type.getTypePtr());
463 const ReferenceType *reference_type = cast<ReferenceType>(qual_type.getTypePtr());
688 const TagType *tag_type = dyn_cast<TagType>(qual_type.getTypePtr());
745 const RecordType *record_type = cast<RecordType>(qual_type.getTypePtr());
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DTransBlockObjCVariable.cpp107 if (isa<AttributedType>(ty.getTypePtr()))
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h206 return forPrototype(prototype.getTypePtr());
211 return forPrototypePlus(prototype.getTypePtr(), additional);
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmtAsm.cpp173 const Type *Ty = Exprs[i]->getType().getTypePtr();
254 const Type *Ty = Exprs[ConstraintIdx]->getType().getTypePtr();
H A DTreeTransform.h3580 SpecTL.getTypePtr()->getTemplateName(),
3594 *SpecTL.getTypePtr()->getIdentifier(),
3637 SpecTL.getTypePtr()->getTemplateName(),
3651 *SpecTL.getTypePtr()->getIdentifier(),
3780 const ReferenceType *T = TL.getTypePtr();
3843 const MemberPointerType *T = TL.getTypePtr();
3875 const ConstantArrayType *T = TL.getTypePtr();
3916 const IncompleteArrayType *T = TL.getTypePtr();
3944 const VariableArrayType *T = TL.getTypePtr();
3983 const DependentSizedArrayType *T = TL.getTypePtr();
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Index/
H A DUSRGeneration.cpp608 = TypeSubstitutions.find(T.getTypePtr());
615 TypeSubstitutions[T.getTypePtr()] = Number;

Completed in 246 milliseconds

1234