HomeSort by relevance Sort by last modified time
    Searched refs:QualType (Results 1 - 25 of 299) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/include/clang/Analysis/DomainSpecific/
CocoaConventions.h 22 class QualType;
27 bool isRefType(QualType RetTy, StringRef Prefix,
30 bool isCocoaObjectRef(QualType T);
35 bool isCFObjectRef(QualType T);
  /external/clang/include/clang/AST/
TypeOrdering.h 13 /// Defines clang::QualTypeOrdering, a total ordering on clang::QualType,
14 /// and hence enables QualType values to be sorted and to be used in
28 /// \brief Function object that provides a total ordering on QualType values.
29 struct QualTypeOrdering : std::binary_function<QualType, QualType, bool> {
30 bool operator()(QualType T1, QualType T2) const {
40 template<> struct DenseMapInfo<clang::QualType> {
41 static inline clang::QualType getEmptyKey() { return clang::QualType(); }
    [all...]
ASTContext.h 240 QualType ObjCIdRedefinitionType;
241 QualType ObjCClassRedefinitionType;
242 QualType ObjCSelRedefinitionType;
253 QualType ObjCConstantStringType;
256 mutable QualType ObjCSuperType;
258 QualType ObjCNSStringType;
585 QualType getIntTypeForBitwidth(unsigned DestWidth,
590 QualType getRealTypeForBitwidth(unsigned DestWidth) const;
    [all...]
Type.h 46 class QualType;
72 struct isPodLike<clang::QualType> { static const bool value = true; };
329 // on a QualType object.
571 /// pointer. To handle the packing/unpacking, we make QualType be a
575 class QualType {
598 QualType() {}
600 QualType(const Type *Ptr, unsigned Quals)
602 QualType(const ExtQuals *Ptr, unsigned Quals)
619 /// Divides a QualType into its unqualified type and a set of local
624 static QualType getFromOpaquePtr(const void *Ptr)
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeInfo.h 21 QualType T;
26 DynamicTypeInfo() : T(QualType()) {}
27 DynamicTypeInfo(QualType WithType, bool CanBeSub = true)
34 QualType getType() const { return T; }
SValBuilder.h 48 const QualType ArrayIndexTy;
53 virtual SVal evalCastFromNonLoc(NonLoc val, QualType castTy) = 0;
54 virtual SVal evalCastFromLoc(Loc val, QualType castTy) = 0;
59 virtual SVal dispatchCast(SVal val, QualType castTy) = 0;
77 bool haveSameType(QualType Ty1, QualType Ty2) {
85 SVal evalCast(SVal val, QualType castTy, QualType originalType);
94 NonLoc lhs, NonLoc rhs, QualType resultTy) = 0;
99 Loc lhs, Loc rhs, QualType resultTy) = 0
    [all...]
SymbolManager.h 68 virtual QualType getType() const = 0;
144 QualType getType() const override;
156 QualType T;
163 QualType t, unsigned count,
173 QualType getType() const override;
178 QualType T, unsigned Count, const LocationContext *LCtx,
211 QualType getType() const override;
244 QualType getType() const override;
270 QualType T;
274 SymbolMetadata(SymbolID sym, const MemRegion* r, const Stmt *s, QualType t
    [all...]
BasicValueFactory.h 28 QualType T;
32 CompoundValData(QualType t, llvm::ImmutableList<SVal> l)
39 static void Profile(llvm::FoldingSetNodeID& ID, QualType T,
78 // method that takes a QualType.
92 const llvm::APSInt& getValue(uint64_t X, QualType T);
94 /// Returns the type of the APSInt used to store values of the given QualType.
95 APSIntType getAPSIntType(QualType T) const {
112 const llvm::APSInt &Convert(QualType T, const llvm::APSInt &From) {
121 QualType T = isUnsigned ? Ctx.UnsignedIntTy : Ctx.IntTy;
133 inline const llvm::APSInt& getMaxValue(QualType T)
    [all...]
  /external/clang/tools/libclang/
CXType.h 26 CXType MakeCXType(QualType T, CXTranslationUnit TU);
CXType.cpp 66 static CXTypeKind GetTypeKind(QualType T) {
101 CXType cxtype::MakeCXType(QualType T, CXTranslationUnit TU) {
112 QualType UnqualT = T.getUnqualifiedType();
136 static inline QualType GetQualType(CXType CT) {
137 return QualType::getFromOpaquePtr(CT.data[0]);
151 return MakeCXType(QualType(), TU);
155 QualType T = cxcursor::getCursorExpr(C)->getType();
162 return MakeCXType(QualType(), TU);
176 return MakeCXType(QualType(), TU);
182 QualType
    [all...]
  /external/clang/lib/CodeGen/
ABIInfo.h 86 QualType Ty) const = 0;
92 QualType Ty) const;
94 virtual bool isHomogeneousAggregateBaseType(QualType Ty) const;
99 virtual bool shouldSignExtUnsignedType(QualType Ty) const;
101 bool isHomogeneousAggregate(QualType Ty, const Type *&Base,
107 getNaturalAlignIndirect(QualType Ty, bool ByRef = true,
112 getNaturalAlignIndirectInReg(QualType Ty, bool Realign = false) const;
CGCXXABI.h 66 llvm::Constant *GetBogusMemberPointer(QualType T);
81 virtual bool requiresArrayCookie(const CXXDeleteExpr *E, QualType eltType);
189 virtual llvm::Constant *EmitMemberPointer(const APValue &MP, QualType MPT);
222 Address Ptr, QualType ElementType,
226 virtual llvm::GlobalVariable *getThrowInfo(QualType T) { return nullptr; }
239 virtual llvm::Constant *getAddrOfRTTIDescriptor(QualType Ty) = 0;
241 getAddrOfCXXCatchHandlerType(QualType Ty, QualType CatchHandlerType) = 0;
245 QualType SrcRecordTy) = 0;
247 virtual llvm::Value *EmitTypeid(CodeGenFunction &CGF, QualType SrcRecordTy
    [all...]
  /external/clang/lib/AST/
InheritViz.cpp 37 std::map<QualType, int, QualTypeOrdering> DirectBaseCount;
38 std::set<QualType, QualTypeOrdering> KnownVirtualBases;
44 void WriteGraph(QualType Type) {
54 void WriteNode(QualType Type, bool FromVirtual);
59 raw_ostream& WriteNodeReference(QualType Type, bool FromVirtual);
63 void InheritanceHierarchyWriter::WriteNode(QualType Type, bool FromVirtual) {
64 QualType CanonType = Context.getCanonicalType(Type);
97 QualType CanonBaseType = Context.getCanonicalType(Base.getType());
125 InheritanceHierarchyWriter::WriteNodeReference(QualType Type,
127 QualType CanonType = Context.getCanonicalType(Type)
    [all...]
Type.cpp 47 const IdentifierInfo* QualType::getBaseTypeIdentifier() const {
67 bool QualType::isConstant(QualType T, ASTContext &Ctx) {
78 QualType ElementType,
125 QualType et, QualType can,
138 QualType ET,
150 QualType ElementType,
151 QualType can,
167 QualType ElementType, Expr *SizeExpr)
    [all...]
ASTContext.cpp 481 QualType QT = TD->getUnderlyingType();
506 QualType Ty = I.getType();
521 QualType Ty = I.getType();
573 QualType T = NTTP->getExpansionType(I);
616 QualType T = getCanonicalType(NTTP->getType());
620 SmallVector<QualType, 2> ExpandedTypes;
    [all...]
  /external/clang/lib/Sema/
TypeLocBuilder.h 38 QualType LastTy;
71 TypeSpecTypeLoc pushTypeSpec(QualType T) {
80 LastTy = QualType();
88 void TypeWasModifiedSafely(QualType T) {
96 template <class TyLocType> TyLocType push(QualType T) {
104 TypeSourceInfo *getTypeSourceInfo(ASTContext& Context, QualType T) {
117 TypeLoc getTypeLocInContext(ASTContext &Context, QualType T) {
130 TypeLoc pushImpl(QualType T, size_t LocalSize, unsigned LocalAlignment);
141 TypeLoc getTemporaryTypeLoc(QualType T) {
  /external/clang/include/clang/Sema/
LocInfoType.h 23 /// \brief Holds a QualType and a TypeSourceInfo* that came out of a declarator
38 LocInfoType(QualType ty, TypeSourceInfo *TInfo)
49 QualType getType() const { return getCanonicalTypeInternal(); }
Overload.h 188 /// QualType.
193 /// into a QualType.
203 void setFromType(QualType T) { FromTypePtr = T.getAsOpaquePtr(); }
204 void setToType(unsigned Idx, QualType T) {
208 void setAllToTypes(QualType T) {
214 QualType getFromType() const {
215 return QualType::getFromOpaquePtr(FromTypePtr);
217 QualType getToType(unsigned Idx) const {
219 return QualType::getFromOpaquePtr(ToTypePtrs[Idx]);
231 QualType &ConstantType) const
    [all...]
Initialization.h 104 QualType Type;
171 InitializedEntity(EntityKind Kind, SourceLocation Loc, QualType Type,
189 InitializedEntity(IdentifierInfo *VarID, QualType FieldType, SourceLocation Loc)
213 QualType Type) {
230 QualType Type,
242 QualType Type, bool NRVO) {
247 QualType Type, bool NRVO) {
253 QualType Type, bool NRVO) {
258 static InitializedEntity InitializeNew(SourceLocation NewLoc, QualType Type) {
263 static InitializedEntity InitializeTemporary(QualType Type)
    [all...]
SemaFixItUtils.h 77 const QualType FromQTy, const QualType ToQTy,
Sema.h 156 class QualType;
288 typedef OpaquePtr<QualType> TypeTy;
606 QualType SavedCXXThisTypeOverride;
617 S.CXXThisTypeOverride = QualType();
709 QualType NSNumberPointer;
712 QualType NSValuePointer;
721 QualType NSStringPointer;
742 QualType QIDNSCopying;
    [all...]
  /external/clang/include/clang/Serialization/
ASTDeserializationListener.h 25 class QualType;
45 virtual void TypeRead(serialization::TypeIdx Idx, QualType T) { }
  /external/clang/lib/StaticAnalyzer/Checkers/
CastToStructChecker.cpp 38 QualType OrigTy = Ctx.getCanonicalType(E->getType());
39 QualType ToTy = Ctx.getCanonicalType(CE->getType());
47 QualType OrigPointeeTy = OrigPTy->getPointeeType();
48 QualType ToPointeeTy = ToPTy->getPointeeType();
DynamicTypeChecker.cpp 62 void reportTypeError(QualType DynamicType, QualType StaticType,
71 void DynamicTypeChecker::reportTypeError(QualType DynamicType,
72 QualType StaticType,
80 QualType::print(DynamicType.getTypePtr(), Qualifiers(), OS, C.getLangOpts(),
83 QualType::print(StaticType.getTypePtr(), Qualifiers(), OS, C.getLangOpts(),
124 QualType::print(TrackedType.getType().getTypePtr(), Qualifiers(), OS,
130 QualType::print(ExplicitCast->getSubExpr()->getType().getTypePtr(),
133 QualType::print(ExplicitCast->getType().getTypePtr(), Qualifiers(), OS,
138 QualType::print(ImplicitCast->getSubExpr()->getType().getTypePtr()
    [all...]
  /frameworks/compile/slang/
slang_rs_special_func.cpp 44 const clang::QualType &IntType = FD->getASTContext().IntTy;
60 const clang::QualType &IntType = FD->getASTContext().IntTy;
66 clang::QualType QT = PVD->getType().getCanonicalType();

Completed in 134 milliseconds

1 2 3 4 5 6 7 8 91011>>