Searched refs: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.cpp177 clang::QualType QT = PVD->getType().getCanonicalType(); local
178 if (!RSExportType::ValidateType(Context, C, QT, PVD, PVD->getLocStart(),
200 clang::QualType QT = VD->getType(); local
204 const clang::Type *T = QT.getTypePtr();
213 if (!QT.isConstQualified()) {
250 clang::QualType QT = CE->getType(); local
251 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()) {
336 clang::QualType QT = PVD->getType().getCanonicalType(); local
337 slangAssert(QT->isPointerType() &&
338 QT->getPointeeType().isConstQualified());
341 if (QT->getPointeeType().getCanonicalType().getUnqualifiedType() ==
360 QT
454 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_export_type.h45 inline const clang::Type* GetCanonicalType(clang::QualType QT) { argument
46 return GetCanonicalType(QT.getTypePtr());
269 clang::QualType QT, const clang::NamedDecl *ND,
H A Dslang_rs_context.cpp241 clang::QualType QT = VD->getTypeSourceInfo()->getType(); local
242 if (QT.isConstQualified() && !VD->hasInit()) {
H A Dslang_rs_object_ref_count.cpp901 clang::QualType QT = LHS->getType(); local
902 const clang::Type *T = QT.getTypePtr();
1001 new(C) clang::BinaryOperator(LHS, RHS, clang::BO_Assign, QT,
1051 clang::QualType QT = AS->getType(); local
1060 if (!RSExportPrimitiveType::IsRSObjectType(QT.getTypePtr())) {
1445 clang::QualType QT = Param->getType(); local
1446 if (CountRSObjectTypes(QT.getTypePtr())) {
1653 clang::QualType QT = AS->getType(); local
1655 if (CountRSObjectTypes(QT.getTypePtr())) {
H A Dslang_rs_export_type.cpp573 clang::QualType QT = T->getCanonicalTypeInternal(); local
574 if (QT == C.DoubleTy ||
575 QT == C.LongDoubleTy ||
576 QT == C.LongTy ||
577 QT == C.LongLongTy) {
706 clang::QualType QT, const clang::NamedDecl *ND,
710 const clang::Type *T = QT.getTypePtr();
705 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_backend.cpp659 clang::QualType QT = PVD->getOriginalType(); local
660 if (QT->isArrayType()) {
664 << QT;

Completed in 82 milliseconds