Searched defs:QT (Results 1 - 10 of 10) 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_special_func.cpp66 clang::QualType QT = PVD->getType().getCanonicalType(); local
67 if (QT != IntType) {
H A Dslang_rs_check_ast.cpp192 clang::QualType QT = PVD->getType().getCanonicalType(); local
193 if (!RSExportType::ValidateType(Context, C, QT, PVD, PVD->getLocStart(),
215 clang::QualType QT = VD->getType(); local
219 const clang::Type *T = QT.getTypePtr();
228 if (!QT.isConstQualified()) {
265 clang::QualType QT = CE->getType(); local
266 const clang::Type *T = QT.getTypePtr();
H A Dslang_rs_export_foreach.cpp113 clang::QualType QT = PVD->getType().getCanonicalType(); local
115 if (!QT->isPointerType()) {
127 if (!QT->getPointeeType().isConstQualified()) {
223 clang::QualType QT = PVD->getType().getCanonicalType(); local
224 if (QT->isPointerType()) {
330 clang::QualType QT = PVD->getType().getCanonicalType(); local
331 slangAssert(QT->isPointerType() &&
332 QT->getPointeeType().isConstQualified());
335 if (QT->getPointeeType().getCanonicalType().getUnqualifiedType() ==
354 QT
450 clang::QualType QT = PVD->getType().getCanonicalType(); local
[all...]
H A Dslang_rs_special_kernel_param.cpp118 const clang::QualType QT = Type.getCanonicalType(); local
119 const clang::QualType UT = QT.getUnqualifiedType();
H A Dslang_rs_context.cpp240 clang::QualType QT = VD->getTypeSourceInfo()->getType(); local
241 if (QT.isConstQualified() && !VD->hasInit()) {
H A Dslang_backend.cpp420 clang::QualType QT = PVD->getOriginalType(); local
421 if (QT->isArrayType()) {
425 << QT;
H A Dslang_rs_export_type.cpp569 clang::QualType QT = T->getCanonicalTypeInternal(); local
570 if (QT == C.DoubleTy ||
571 QT == C.LongDoubleTy ||
572 QT == C.LongTy ||
573 QT == C.LongLongTy) {
702 clang::QualType QT, const clang::NamedDecl *ND,
706 const clang::Type *T = QT.getTypePtr();
701 ValidateType(slang::RSContext *Context, clang::ASTContext &C, clang::QualType QT, const clang::NamedDecl *ND, clang::SourceLocation Loc, unsigned int TargetAPI, bool IsFilterscript, bool IsExtern) argument
H A Dslang_rs_export_type.h44 inline const clang::Type* GetCanonicalType(clang::QualType QT) { argument
45 return GetCanonicalType(QT.getTypePtr());
267 clang::QualType QT, const clang::NamedDecl *ND,
H A Dslang_rs_object_ref_count.cpp900 clang::QualType QT = LHS->getType(); local
901 const clang::Type *T = QT.getTypePtr();
996 new(C) clang::BinaryOperator(LHS, RHS, clang::BO_Assign, QT,
1046 clang::QualType QT = AS->getType(); local
1055 if (!RSExportPrimitiveType::IsRSObjectType(QT.getTypePtr())) {
1529 clang::QualType QT = AS->getType(); local
1531 if (CountRSObjectTypes(QT.getTypePtr())) {

Completed in 72 milliseconds