Searched refs:QT (Results 1 - 25 of 39) sorted by relevance

12

/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dmodule.cpp94 template<typename S, typename QT>
96 proc(S &s, QT &x) {
106 template<typename S, typename QT>
108 proc(S &s, QT &x) {
117 template<typename S, typename QT>
119 proc(S &s, QT &x) {
129 template<typename S, typename QT>
131 proc(S &s, QT &x) {
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dmodule.cpp94 template<typename S, typename QT>
96 proc(S &s, QT &x) {
106 template<typename S, typename QT>
108 proc(S &s, QT &x) {
117 template<typename S, typename QT>
119 proc(S &s, QT &x) {
129 template<typename S, typename QT>
131 proc(S &s, QT &x) {
/external/clang/lib/Analysis/
H A DPrintfFormatString.cpp409 bool PrintfSpecifier::fixType(QualType QT, const LangOptions &LangOpt, argument
419 if (QT->isObjCRetainableType()) {
438 if (QT->isPointerType() && (QT->getPointeeType()->isAnyCharacterType())) {
446 if (QT->getPointeeType()->isWideCharType())
455 if (const EnumType *ETy = QT->getAs<EnumType>())
456 QT = ETy->getDecl()->getIntegerType();
459 const BuiltinType *BT = QT->getAs<BuiltinType>();
520 if (isa<TypedefType>(QT) && (LangOpt.C99 || LangOpt.CPlusPlus11))
521 namedTypeToLengthModifier(QT, L
[all...]
H A DConsumed.cpp141 static bool isConsumableType(const QualType &QT) { argument
142 if (QT->isPointerType() || QT->isReferenceType())
145 if (const CXXRecordDecl *RD = QT->getAsCXXRecordDecl())
151 static bool isAutoCastType(const QualType &QT) { argument
152 if (QT->isPointerType() || QT->isReferenceType())
155 if (const CXXRecordDecl *RD = QT->getAsCXXRecordDecl())
161 static bool isSetOnReadPtrType(const QualType &QT) { argument
162 if (const CXXRecordDecl *RD = QT
192 mapConsumableAttrState(const QualType QT) argument
[all...]
H A DScanfFormatString.cpp391 bool ScanfSpecifier::fixType(QualType QT, QualType RawQT, argument
399 if (!QT->isPointerType())
402 QualType PT = QT->getPointeeType();
484 if (AT.isValid() && AT.matchesType(Ctx, QT))
H A DFormatString.cpp816 bool FormatSpecifier::namedTypeToLengthModifier(QualType QT, argument
818 assert(isa<TypedefType>(QT) && "Expected a TypedefType");
819 const TypedefNameDecl *Typedef = cast<TypedefType>(QT)->getDecl();
H A DCFG.cpp1154 QualType QT = FI->getType(); local
1155 if (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) {
1158 QT = AT->getElementType();
1161 if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl())
1236 QualType QT = VD->getType(); local
1237 if (QT.getTypePtr()->isReferenceType()) {
1254 QT = getReferenceInitTemporaryType(*Context, Init);
1258 while (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) {
1261 QT = AT->getElementType();
1265 if (const CXXRecordDecl *CD = QT
[all...]
/external/clang/tools/libclang/
H A DCXType.cpp700 QualType QT = GetQualType(T); local
704 if (QT->isReferenceType())
705 QT = QT.getNonReferenceType();
706 if (QT->isIncompleteType())
708 if (QT->isDependentType())
711 // if (QT->isFunctionType()) return 4; // Bug #15511 - should be 1
712 // if (QT->isVoidType()) return 1;
713 return Ctx.getTypeAlignInChars(QT).getQuantity();
731 QualType QT local
820 QualType QT = GetQualType(T); local
[all...]
H A DCIndex.cpp6313 Decl::ObjCDeclQualifier QT = Decl::OBJC_TQ_None;
6316 QT = MD->getObjCDeclQualifier();
6318 QT = PD->getObjCDeclQualifier();
6319 if (QT == Decl::OBJC_TQ_None)
6323 if (QT & Decl::OBJC_TQ_In) Result |= CXObjCDeclQualifier_In;
6324 if (QT & Decl::OBJC_TQ_Inout) Result |= CXObjCDeclQualifier_Inout;
6325 if (QT & Decl::OBJC_TQ_Out) Result |= CXObjCDeclQualifier_Out;
6326 if (QT & Decl::OBJC_TQ_Bycopy) Result |= CXObjCDeclQualifier_Bycopy;
6327 if (QT & Decl::OBJC_TQ_Byref) Result |= CXObjCDeclQualifier_Byref;
6328 if (QT
[all...]
/external/clang/lib/AST/
H A DASTTypeTraits.cpp73 else if (const QualType *QT = get<QualType>())
74 QT->print(OS, PP);
H A DASTDiagnostic.cpp29 static QualType Desugar(ASTContext &Context, QualType QT, bool &ShouldAKA) { argument
33 const Type *Ty = QC.strip(QT);
37 QT = ET->desugar();
42 QT = PT->desugar();
48 QT = ST->desugar();
53 QT = AT->desugar();
58 QT = AT->desugar();
65 QT = AT->desugar();
114 if (const TypedefType *QTT = dyn_cast<TypedefType>(QT))
120 QT
[all...]
H A DExprCXX.cpp58 UuidAttr *CXXUuidofExpr::GetUuidAttrOfType(QualType QT, argument
61 const Type *Ty = QT.getTypePtr();
62 if (QT->isPointerType() || QT->isReferenceType())
63 Ty = QT->getPointeeType().getTypePtr();
64 else if (QT->isArrayType())
H A DASTContext.cpp480 QualType QT = TD->getUnderlyingType(); local
481 if (const TagType *TT = QT->getAs<TagType>())
3494 if (ObjCObjectType *QT = ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos))
3495 return QualType(QT, 0);
3531 /// protocol list adopt all protocols in QT's qualified-id protocol
3533 bool ASTContext::ObjCObjectAdoptsQTypeProtocols(QualType QT, argument
3535 if (!QT->isObjCQualifiedIdType())
3538 if (const ObjCObjectPointerType *OPT = QT->getAs<ObjCObjectPointerType>()) {
3550 /// QT's qualified-id protocol list adopt all protocols in IDecl's list
3552 bool ASTContext::QIdProtocolsAdoptObjCObjectProtocols(QualType QT, argument
4890 getObjCEncodingForMethodParameter(Decl::ObjCDeclQualifier QT, QualType T, std::string& S, bool Extended) const argument
5723 getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT, std::string& S) const argument
[all...]
H A DCommentSema.cpp842 QualType QT = VD->getType(); local
843 return QT->isFunctionPointerType();
H A DDecl.cpp1597 // Helper function: returns true if QT is or contains a type
1599 bool typeIsPostfix(clang::QualType QT) { argument
1601 const Type* T = QT.getTypePtr();
1606 QT = cast<PointerType>(T)->getPointeeType();
1609 QT = cast<BlockPointerType>(T)->getPointeeType();
1612 QT = cast<MemberPointerType>(T)->getPointeeType();
1616 QT = cast<ReferenceType>(T)->getPointeeType();
1619 QT = cast<PackExpansionType>(T)->getPattern();
/external/clang/include/clang/Analysis/Analyses/
H A DFormatString.h378 /// For a TypedefType QT, if it is a named integer type such as size_t,
380 static bool namedTypeToLengthModifier(QualType QT, LengthModifier &LM);
503 bool fixType(QualType QT, const LangOptions &LangOpt, ASTContext &Ctx,
577 bool fixType(QualType QT, QualType RawQT, const LangOptions &LangOpt,
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp574 bool PointerTypeTakesAnyBlockArguments(QualType QT);
575 bool PointerTypeTakesAnyObjCQualifiedType(QualType QT);
1335 QualType QT = PDecl->getType(); local
1337 (void)convertBlockPointerToFunctionPointer(QT);
1338 QT.getAsStringInternal(Name, Context->getPrintingPolicy());
2311 QualType QT = ND->getType(); local
2312 const Type* TypePtr = QT->getAs<Type>();
2317 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType();
2318 TypePtr = QT->getAs<Type>();
2322 std::string TypeAsString(QT
4022 QualType QT = GetGroupRecordTypeForObjCIvarBitfield(IV); local
4182 QualType QT = (*AI)->getType(); local
4230 QualType QT = (*I)->getType(); local
4328 QualType QT = (*I)->getType(); local
4860 QualType QT = CE->getType(); local
4938 PointerTypeTakesAnyBlockArguments(QualType QT) argument
4956 PointerTypeTakesAnyObjCQualifiedType(QualType QT) argument
5459 QualType QT = (*I)->getType(); local
5475 QualType QT = (*I)->getType(); local
[all...]
H A DRewriteObjC.cpp474 bool PointerTypeTakesAnyBlockArguments(QualType QT);
475 bool PointerTypeTakesAnyObjCQualifiedType(QualType QT);
1137 QualType QT = PDecl->getType(); local
1139 (void)convertBlockPointerToFunctionPointer(QT);
1140 QT.getAsStringInternal(Name, Context->getPrintingPolicy());
2196 QualType QT = ND->getType(); local
2197 const Type* TypePtr = QT->getAs<Type>();
2202 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType();
2203 TypePtr = QT->getAs<Type>();
2207 std::string TypeAsString(QT
3308 QualType QT = (*AI)->getType(); local
3356 QualType QT = (*I)->getType(); local
3454 QualType QT = (*I)->getType(); local
3944 QualType QT = CE->getType(); local
4005 PointerTypeTakesAnyBlockArguments(QualType QT) argument
4023 PointerTypeTakesAnyObjCQualifiedType(QualType QT) argument
4509 QualType QT = (*I)->getType(); local
4525 QualType QT = (*I)->getType(); local
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DLLVMConventionsChecker.cpp52 if (const ElaboratedType *QT = T->getAs<ElaboratedType>())
53 T = QT->getNamedType();
/external/clang/lib/Sema/
H A DDeclSpec.cpp304 QualType QT = DS.getRepAsType().get(); local
305 if (QT.isNull())
308 if (const LocInfoType *LIT = dyn_cast<LocInfoType>(QT))
309 QT = LIT->getType();
311 if (QT.isNull())
314 return QT->isFunctionType();
H A DSemaDeclAttr.cpp307 QualType QT = Exp->getType(); local
308 return QT->isBooleanType() || QT->isIntegerType();
334 QualType QT = vd->getType(); local
335 if (QT->isAnyPointerType())
338 if (const RecordType *RT = QT->getAs<RecordType>()) {
350 << Attr.getName() << QT;
356 static const RecordType *getRecordType(QualType QT) { argument
357 if (const RecordType *RT = QT->getAs<RecordType>())
361 if (const PointerType *PT = QT
1084 QualType QT = S.GetTypeFromParser(PT, &QTLoc); local
1109 QualType QT = I->getType(); local
[all...]
/external/clang/lib/CodeGen/
H A DTargetInfo.cpp2929 QualType QT(T, 0);
2930 I.info = ABIArgInfo::getDirectInReg(CGT.ConvertType(QT));
6350 static void appendQualifier(SmallStringEnc &Enc, QualType QT) { argument
6354 if (QT.isConstQualified())
6356 if (QT.isRestrictQualified())
6358 if (QT.isVolatileQualified())
6434 static bool appendArrayType(SmallStringEnc &Enc, QualType QT, argument
6447 appendQualifier(Enc, QT);
6494 QualType QT = QType.getCanonicalType(); local
6496 if (const ArrayType *AT = QT
[all...]
/external/openssl/crypto/bn/asm/
H A Dmips.pl909 $QT=$ta0;
922 li $QT,-1
924 $SRL $QT,4*$BNSZ # q=0xffffffff
927 mflo $QT
929 $MULTU $a2,$QT
947 $SUBU $QT,1
953 $SLL $v0,$QT,4*$BNSZ # bits
955 li $QT,-1
957 $SRL $QT,4*$BNSZ # q=0xffffffff
960 mflo $QT
[all...]
H A Dmips3.s652 #define QT ta0 define
663 li QT,-1
665 dsrl QT,32 /* q=0xffffffff */
668 mflo QT
670 dmultu a2,QT
688 dsubu QT,1
694 dsll v0,QT,32
696 li QT,-1
698 dsrl QT,32 /* q=0xffffffff */
701 mflo QT
[all...]
/external/clang/include/clang/AST/
H A DASTContext.h1150 bool ObjCObjectAdoptsQTypeProtocols(QualType QT, ObjCInterfaceDecl *Decl);
1152 /// QT's qualified-id protocol list adopt all protocols in IDecl's list
1154 bool QIdProtocolsAdoptObjCObjectProtocols(QualType QT,
1382 /// \brief Put the string version of the type qualifiers \p QT into \p S.
1383 void getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT,
1904 QualType getBaseElementType(QualType QT) const;
2283 void getObjCEncodingForMethodParameter(Decl::ObjCDeclQualifier QT,

Completed in 905 milliseconds

12