Searched defs:QType (Results 1 - 4 of 4) sorted by relevance

/external/clang/test/Index/
H A Dusrs.cpp6 typedef int QType; typedef in namespace:bar
7 void bar(QType z);
88 // CHECK: usrs.cpp c:usrs.cpp@64@N@bar@T@QType Extent=[6:3 - 6:20]
/external/qemu/
H A Dqobject.h51 typedef struct QType { struct
54 } QType; typedef in typeref:struct:QType
57 const QType *type;
/external/clang/lib/AST/
H A DASTContext.cpp2770 ObjCObjectPointerType *QType = local
2773 Types.push_back(QType);
2774 ObjCObjectPointerTypes.InsertNode(QType, InsertPos);
2775 return QualType(QType, 0);
/external/clang/lib/Sema/
H A DSemaExpr.cpp2098 QualType QType = QualType(Qualifier->getAsType(), 0); local
2099 assert(!QType.isNull() && "lookup done with dependent qualifier?");
2100 assert(QType->isRecordType() && "lookup done with non-record type");
2102 QualType QRecordType = QualType(QType->getAs<RecordType>(), 0);
2114 QType = Context.getPointerType(QType);
2115 From = ImpCastExprToType(From, QType, CK_UncheckedDerivedToBase,
2118 FromType = QType;

Completed in 172 milliseconds