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

/external/openssl/crypto/bn/asm/
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/lib/AST/
H A DASTDiagnostic.cpp24 static QualType Desugar(ASTContext &Context, QualType QT, bool &ShouldAKA) { argument
28 const Type *Ty = QC.strip(QT);
32 QT = ET->desugar();
37 QT = PT->desugar();
43 QT = ST->desugar();
48 QT = AT->desugar();
55 QT = AT->desugar();
104 if (const TypedefType *QTT = dyn_cast<TypedefType>(QT))
110 QT = Underlying;
115 if (const PointerType *Ty = QT
[all...]
H A DDecl.cpp1049 // Helper function: returns true if QT is or contains a type
1051 bool typeIsPostfix(clang::QualType QT) { argument
1053 const Type* T = QT.getTypePtr();
1058 QT = cast<PointerType>(T)->getPointeeType();
1061 QT = cast<BlockPointerType>(T)->getPointeeType();
1064 QT = cast<MemberPointerType>(T)->getPointeeType();
1068 QT = cast<ReferenceType>(T)->getPointeeType();
1071 QT = cast<PackExpansionType>(T)->getPattern();
H A DASTContext.cpp2712 if (ObjCObjectType *QT = ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos))
2713 return QualType(QT, 0);
2755 if (ObjCObjectPointerType *QT =
2757 return QualType(QT, 0);
4737 void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT, argument
4739 if (QT & Decl::OBJC_TQ_In)
4741 if (QT & Decl::OBJC_TQ_Inout)
4743 if (QT & Decl::OBJC_TQ_Out)
4745 if (QT & Decl::OBJC_TQ_Bycopy)
4747 if (QT
4785 setObjCProtoType(QualType QT) argument
[all...]
/external/clang/lib/Analysis/
H A DPrintfFormatString.cpp358 bool PrintfSpecifier::fixType(QualType QT, const LangOptions &LangOpt) { argument
360 if (QT->isPointerType() && (QT->getPointeeType()->isAnyCharacterType())) {
368 if (QT->getPointeeType()->isWideCharType())
375 const BuiltinType *BT = QT->getAs<BuiltinType>();
436 if (isa<TypedefType>(QT) && (LangOpt.C99 || LangOpt.CPlusPlus0x)) {
437 const IdentifierInfo *Identifier = QT.getBaseTypeIdentifier();
454 if (isa<TypedefType>(QT) && QT->isAnyCharacterType()) {
463 else if (QT
[all...]
H A DCFG.cpp715 QualType QT = FI->getType(); local
716 if (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) {
719 QT = AT->getElementType();
722 if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl())
800 QualType QT = VD->getType(); local
801 if (const ReferenceType* RT = QT.getTypePtr()->getAs<ReferenceType>()) {
802 QT = RT->getPointeeType();
803 if (!QT.isConstQualified())
810 if (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) {
813 QT
[all...]
/external/clang/lib/Basic/
H A DDiagnostic.cpp23 static void DummyArgToStringFn(DiagnosticsEngine::ArgumentKind AK, intptr_t QT, argument
/external/clang/lib/Sema/
H A DDeclSpec.cpp285 QualType QT = DS.getRepAsType().get(); local
286 if (QT.isNull())
289 if (const LocInfoType *LIT = dyn_cast<LocInfoType>(QT))
290 QT = LIT->getType();
292 if (QT.isNull())
295 return QT->isFunctionType();
H A DSemaDeclAttr.cpp240 QualType QT = Exp->getType(); local
241 return QT->isBooleanType() || QT->isIntegerType();
251 QualType QT = vd->getType(); local
252 if (QT->isAnyPointerType())
255 << Attr.getName()->getName() << QT;
265 static const RecordType *getRecordType(QualType QT) { argument
266 if (const RecordType *RT = QT->getAs<RecordType>())
270 if (const PointerType *PT = QT->getAs<PointerType>())
465 QualType QT local
816 QualType QT = TypeRep.get(); local
835 QualType QT = it->getType(); local
[all...]
H A DSemaDeclObjC.cpp2902 QualType QT = Context.getBaseElementType(Iv->getType()); local
2903 if (QT->isRecordType())
H A DSemaType.cpp1569 QualType QT = Ty.get(); local
1570 if (QT.isNull()) {
1576 if (const LocInfoType *LIT = dyn_cast<LocInfoType>(QT)) {
1577 QT = LIT->getType();
1582 return QT;
H A DSemaExprCXX.cpp386 /// Retrieve the UuidAttr associated with QT.
387 static UuidAttr *GetUuidAttrOfType(QualType QT) { argument
389 const Type *Ty = QT.getTypePtr();;
390 if (QT->isPointerType() || QT->isReferenceType())
391 Ty = QT->getPointeeType().getTypePtr();
392 else if (QT->isArrayType())
393 Ty = cast<ArrayType>(QT)->getElementType().getTypePtr();
/external/clang/lib/CodeGen/
H A DCGClass.cpp1253 QualType QT = *(FPT->arg_type_begin()); local
1254 llvm::Type *t = CGM.getTypes().ConvertType(QT);
1256 Args.add(RValue::get(Src), QT); local
/external/clang/lib/Rewrite/
H A DRewriteObjC.cpp451 bool PointerTypeTakesAnyBlockArguments(QualType QT);
452 bool PointerTypeTakesAnyObjCQualifiedType(QualType QT);
1169 QualType QT = PDecl->getType(); local
1171 if (convertBlockPointerToFunctionPointer(QT))
1172 QT.getAsStringInternal(Name, Context->getPrintingPolicy());
2377 QualType QT = ND->getType(); local
2378 const Type* TypePtr = QT->getAs<Type>();
2383 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType();
2384 TypePtr = QT->getAs<Type>();
2388 std::string TypeAsString(QT
4263 QualType QT = (*AI)->getType(); local
4313 QualType QT = (*I)->getType(); local
4411 QualType QT = (*I)->getType(); local
4915 QualType QT = CE->getType(); local
4976 PointerTypeTakesAnyBlockArguments(QualType QT) argument
4995 PointerTypeTakesAnyObjCQualifiedType(QualType QT) argument
5482 QualType QT = (*I)->getType(); local
5498 QualType QT = (*I)->getType(); local
[all...]

Completed in 416 milliseconds