Searched defs:QT (Results 1 - 7 of 7) sorted by relevance

/frameworks/compile/slang/
H A Dslang_rs_export_var.cpp98 clang::QualType QT = VD->getTypeSourceInfo()->getType(); local
99 if (!QT.isNull()) {
100 mIsConst = QT.isConstQualified();
101 mIsUnsigned = QT->hasUnsignedIntegerRepresentation();
102 if (QT == Context->getASTContext().BoolTy) {
H A Dslang_rs_check_ast.cpp166 clang::QualType QT = PVD->getType().getCanonicalType(); local
167 if (!RSExportType::ValidateType(Context, C, QT, PVD, PVD->getLocStart(),
190 clang::QualType QT = VD->getType(); local
194 const clang::Type *T = QT.getTypePtr();
202 if (!QT.isConstQualified()) {
239 clang::QualType QT = CE->getType(); local
240 const clang::Type *T = QT.getTypePtr();
H A Dslang_rs_export_foreach.cpp97 clang::QualType QT = PVD->getType().getCanonicalType(); local
99 if (!QT->isPointerType()) {
110 if (!QT->getPointeeType().isConstQualified()) {
201 clang::QualType QT = PVD->getType().getCanonicalType(); local
202 if (QT->isPointerType()) {
266 clang::QualType QT = PVD->getType().getCanonicalType(); local
267 clang::QualType UT = QT.getUnqualifiedType();
358 clang::QualType QT = PVD->getType().getCanonicalType(); local
359 slangAssert(QT->isPointerType() &&
360 QT
500 clang::QualType QT = PVD->getType().getCanonicalType(); local
532 clang::QualType QT = PVD->getType().getCanonicalType(); local
[all...]
H A Dslang_rs_backend.cpp112 clang::QualType QT = PVD->getOriginalType(); local
113 if (QT->isArrayType()) {
117 << QT;
H A Dslang_rs_export_type.cpp531 clang::QualType QT = T->getCanonicalTypeInternal(); local
532 if (QT == C.DoubleTy ||
533 QT == C.LongDoubleTy ||
534 QT == C.LongTy ||
535 QT == C.LongLongTy) {
646 clang::QualType QT, clang::NamedDecl *ND,
649 const clang::Type *T = QT.getTypePtr();
645 ValidateType(slang::RSContext *Context, clang::ASTContext &C, clang::QualType QT, clang::NamedDecl *ND, clang::SourceLocation Loc, unsigned int TargetAPI, bool IsFilterscript) argument
H A Dslang_rs_export_type.h44 inline const clang::Type* GetCanonicalType(clang::QualType QT) { argument
45 return GetCanonicalType(QT.getTypePtr());
238 clang::QualType QT, clang::NamedDecl *ND,
H A Dslang_rs_object_ref_count.cpp988 clang::QualType QT = LHS->getType(); local
989 const clang::Type *T = QT.getTypePtr();
1082 new(C) clang::BinaryOperator(LHS, RHS, clang::BO_Assign, QT,
1100 clang::QualType QT = AS->getType();
1109 if (!RSExportPrimitiveType::IsRSObjectType(QT.getTypePtr())) {
1476 clang::QualType QT = AS->getType(); local
1478 if (CountRSObjectTypes(mCtx, QT.getTypePtr(), AS->getExprLoc())) {

Completed in 403 milliseconds