Searched defs:QualType (Results 1 - 6 of 6) sorted by relevance

/external/clang/utils/
H A DClangDataFormat.py26 debugger.HandleCommand("type summary add -F ClangDataFormat.QualType_summary clang::QualType")
33 return QualType(qualty).summary()
68 class QualType(object): class in inherits:object
/external/clang/include/clang/AST/
H A DCanonicalType.h47 /// be implicitly converted to a QualType, but the reverse operation requires
54 QualType Stored;
80 operator QualType() const { return Stored; }
147 QualType withConst() const {
173 /// \brief Builds a canonical type from a QualType.
178 static CanQual<T> CreateUnsafe(QualType Other);
206 DB << static_cast<QualType>(T);
320 /// than the more typical @c QualType, to propagate the notion of "canonical"
611 Result.Stored = QualType::getFromOpaquePtr(Ptr);
618 CanQual<T> CanQual<T>::CreateUnsafe(QualType Othe
[all...]
H A DType.h43 class QualType;
69 struct isPodLike<clang::QualType> { static const bool value = true; };
326 // on a QualType object.
536 /// QualType - For efficiency, we don't store CV-qualified types as nodes on
544 /// pointer. To handle the packing/unpacking, we make QualType be a
548 class QualType { class in namespace:clang
571 QualType() {} function in class:clang::QualType
573 QualType(const Type *Ptr, unsigned Quals) function in class:clang::QualType
575 QualType(const ExtQuals *Ptr, unsigned Quals) function in class:clang::QualType
592 /// Divides a QualType int
[all...]
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h125 typedef internal::Matcher<QualType> TypeMatcher;
596 internal::Matcher<QualType>, InnerMatcher) {
666 internal::Matcher<QualType>, InnerMatcher) {
1605 const internal::VariadicAllOfMatcher<QualType> qualType;
1672 internal::Matcher<QualType>, InnerMatcher) {
1673 const QualType ArgumentType = Node.getTypeOfArgument();
1995 /// Matcher<LabelStmt>, Matcher<MemberExpr>, Matcher<QualType>,
2036 AST_MATCHER_P(ObjCMessageExpr, hasReceiverType, internal::Matcher<QualType>,
2038 const QualType TypeDecl = Node.getReceiverType();
2170 internal::Matcher<QualType>, InnerMatche
2237 AST_MATCHER_P( QualType, pointsTo, internal::Matcher<QualType>, InnerMatcher) argument
[all...]
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp221 void setPreferredType(QualType T) {
653 QualType clang::getDeclUsageType(ASTContext &C, const NamedDecl *ND) {
661 QualType T;
673 return QualType();
759 QualType T = getDeclUsageType(SemaRef.Context, R.Declaration);
798 QualType RecordTy = Context.getTypeDeclType(Record);
1169 static bool isObjCReceiverType(ASTContext &C, QualType T) {
1203 QualType T = getDeclUsageType(SemaRef.Context, ND);
1227 QualType T = getDeclUsageType(SemaRef.Context, ND);
1468 static const char *GetCompletionTypeString(QualType
3414 CodeCompleteExpressionData(QualType PreferredType = QualType()) argument
[all...]
H A DSemaDeclCXX.cpp658 QualType NewType = New->getType();
659 QualType OldType = Old->getType();
821 QualType RT = NewFD->getReturnType();
1384 QualType BaseType = TInfo->getType();
1559 typedef llvm::SmallPtrSet<QualType, 4> IndirectBaseSet;
1564 const QualType &Type)
1573 QualType Base = Context.getCanonicalType(BaseSpec.getType())
1593 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
1603 QualType NewBaseType
1654 QualType BaseTyp
3338 CastForMoving(Sema &SemaRef, Expr *E, QualType T = QualType()) argument
[all...]

Completed in 351 milliseconds