Home
last modified time | relevance | path

Searched refs:QT (Results 1 – 25 of 63) sorted by relevance

123

/external/chromium_org/third_party/skia/gyp/
Ddebugger.gyp68 'moc_src_dir': '../debugger/QT',
69 'moc_gen_dir': '<(SHARED_INTERMEDIATE_DIR)/debugger/QT',
112 '../debugger/QT', # For all the QT UI Goodies
117 '../debugger/QT/SkDebuggerGUI.cpp',
118 '../debugger/QT/SkDebuggerGUI.h',
119 '../debugger/QT/SkCanvasWidget.cpp',
120 '../debugger/QT/SkCanvasWidget.h',
121 '../debugger/QT/SkInspectorWidget.h',
122 '../debugger/QT/SkInspectorWidget.cpp',
123 '../debugger/QT/SkListWidget.h',
[all …]
Dmost.gyp4 # - debugger: this requires QT to build
/external/skia/gyp/
Ddebugger.gyp68 'moc_src_dir': '../debugger/QT',
69 'moc_gen_dir': '<(SHARED_INTERMEDIATE_DIR)/debugger/QT',
112 '../debugger/QT', # For all the QT UI Goodies
117 '../debugger/QT/SkDebuggerGUI.cpp',
118 '../debugger/QT/SkDebuggerGUI.h',
119 '../debugger/QT/SkCanvasWidget.cpp',
120 '../debugger/QT/SkCanvasWidget.h',
121 '../debugger/QT/SkInspectorWidget.h',
122 '../debugger/QT/SkInspectorWidget.cpp',
123 '../debugger/QT/SkListWidget.h',
[all …]
Dmost.gyp4 # - debugger: this requires QT to build
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
Dmodule.cpp94 template<typename S, typename QT>
96 proc(S &s, QT &x) { in proc()
106 template<typename S, typename QT>
108 proc(S &s, QT &x) { in proc()
117 template<typename S, typename QT>
119 proc(S &s, QT &x) { in proc()
129 template<typename S, typename QT>
131 proc(S &s, QT &x) { in proc()
/external/mesa3d/src/gallium/state_trackers/clover/core/
Dmodule.cpp94 template<typename S, typename QT>
96 proc(S &s, QT &x) { in proc()
106 template<typename S, typename QT>
108 proc(S &s, QT &x) { in proc()
117 template<typename S, typename QT>
119 proc(S &s, QT &x) { in proc()
129 template<typename S, typename QT>
131 proc(S &s, QT &x) { in proc()
/external/clang/lib/Analysis/
DPrintfFormatString.cpp409 bool PrintfSpecifier::fixType(QualType QT, const LangOptions &LangOpt, in fixType() argument
419 if (QT->isObjCRetainableType()) { in fixType()
438 if (QT->isPointerType() && (QT->getPointeeType()->isAnyCharacterType())) { in fixType()
446 if (QT->getPointeeType()->isWideCharType()) in fixType()
455 if (const EnumType *ETy = QT->getAs<EnumType>()) in fixType()
456 QT = ETy->getDecl()->getIntegerType(); in fixType()
459 const BuiltinType *BT = QT->getAs<BuiltinType>(); in fixType()
520 if (isa<TypedefType>(QT) && (LangOpt.C99 || LangOpt.CPlusPlus11)) in fixType()
521 namedTypeToLengthModifier(QT, LM); in fixType()
529 if (QT->isSignedIntegerType()) in fixType()
[all …]
DConsumed.cpp141 static bool isConsumableType(const QualType &QT) { in isConsumableType() argument
142 if (QT->isPointerType() || QT->isReferenceType()) in isConsumableType()
145 if (const CXXRecordDecl *RD = QT->getAsCXXRecordDecl()) in isConsumableType()
151 static bool isAutoCastType(const QualType &QT) { in isAutoCastType() argument
152 if (QT->isPointerType() || QT->isReferenceType()) in isAutoCastType()
155 if (const CXXRecordDecl *RD = QT->getAsCXXRecordDecl()) in isAutoCastType()
161 static bool isSetOnReadPtrType(const QualType &QT) { in isSetOnReadPtrType() argument
162 if (const CXXRecordDecl *RD = QT->getPointeeCXXRecordDecl()) in isSetOnReadPtrType()
192 static ConsumedState mapConsumableAttrState(const QualType QT) { in mapConsumableAttrState() argument
193 assert(isConsumableType(QT)); in mapConsumableAttrState()
[all …]
DScanfFormatString.cpp391 bool ScanfSpecifier::fixType(QualType QT, QualType RawQT, in fixType() argument
399 if (!QT->isPointerType()) in fixType()
402 QualType PT = QT->getPointeeType(); in fixType()
484 if (AT.isValid() && AT.matchesType(Ctx, QT)) in fixType()
DFormatString.cpp816 bool FormatSpecifier::namedTypeToLengthModifier(QualType QT, in namedTypeToLengthModifier() argument
818 assert(isa<TypedefType>(QT) && "Expected a TypedefType"); in namedTypeToLengthModifier()
819 const TypedefNameDecl *Typedef = cast<TypedefType>(QT)->getDecl(); in namedTypeToLengthModifier()
/external/clang/tools/libclang/
DCXType.cpp700 QualType QT = GetQualType(T); in clang_Type_getAlignOf() local
704 if (QT->isReferenceType()) in clang_Type_getAlignOf()
705 QT = QT.getNonReferenceType(); in clang_Type_getAlignOf()
706 if (QT->isIncompleteType()) in clang_Type_getAlignOf()
708 if (QT->isDependentType()) in clang_Type_getAlignOf()
713 return Ctx.getTypeAlignInChars(QT).getQuantity(); in clang_Type_getAlignOf()
731 QualType QT = GetQualType(T); in clang_Type_getSizeOf() local
733 if (QT->isReferenceType()) in clang_Type_getSizeOf()
734 QT = QT.getNonReferenceType(); in clang_Type_getSizeOf()
741 if (QT->isIncompleteType()) in clang_Type_getSizeOf()
[all …]
/external/clang/lib/AST/
DASTDiagnostic.cpp29 static QualType Desugar(ASTContext &Context, QualType QT, bool &ShouldAKA) { in Desugar() argument
33 const Type *Ty = QC.strip(QT); in Desugar()
37 QT = ET->desugar(); in Desugar()
42 QT = PT->desugar(); in Desugar()
48 QT = ST->desugar(); in Desugar()
53 QT = AT->desugar(); in Desugar()
58 QT = AT->desugar(); in Desugar()
65 QT = AT->desugar(); in Desugar()
114 if (const TypedefType *QTT = dyn_cast<TypedefType>(QT)) in Desugar()
120 QT = Underlying; in Desugar()
[all …]
DASTTypeTraits.cpp73 else if (const QualType *QT = get<QualType>()) in print() local
74 QT->print(OS, PP); in print()
/external/llvm/test/Object/
Dnm-darwin-m.test33 # QT.A.qtx
48 test3: (undefined) external _qt (from QT)
/external/clang/lib/Rewrite/Frontend/
DRewriteObjC.cpp474 bool PointerTypeTakesAnyBlockArguments(QualType QT);
475 bool PointerTypeTakesAnyObjCQualifiedType(QualType QT);
1137 QualType QT = PDecl->getType(); in RewriteObjCMethodDecl() local
1139 (void)convertBlockPointerToFunctionPointer(QT); in RewriteObjCMethodDecl()
1140 QT.getAsStringInternal(Name, Context->getPrintingPolicy()); in RewriteObjCMethodDecl()
2196 QualType QT = ND->getType(); in RewriteTypeOfDecl() local
2197 const Type* TypePtr = QT->getAs<Type>(); in RewriteTypeOfDecl()
2202 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteTypeOfDecl()
2203 TypePtr = QT->getAs<Type>(); in RewriteTypeOfDecl()
2207 std::string TypeAsString(QT.getAsString(Context->getPrintingPolicy())); in RewriteTypeOfDecl()
[all …]
DRewriteModernObjC.cpp574 bool PointerTypeTakesAnyBlockArguments(QualType QT);
575 bool PointerTypeTakesAnyObjCQualifiedType(QualType QT);
1335 QualType QT = PDecl->getType(); in RewriteObjCMethodDecl() local
1337 (void)convertBlockPointerToFunctionPointer(QT); in RewriteObjCMethodDecl()
1338 QT.getAsStringInternal(Name, Context->getPrintingPolicy()); in RewriteObjCMethodDecl()
2311 QualType QT = ND->getType(); in RewriteTypeOfDecl() local
2312 const Type* TypePtr = QT->getAs<Type>(); in RewriteTypeOfDecl()
2317 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteTypeOfDecl()
2318 TypePtr = QT->getAs<Type>(); in RewriteTypeOfDecl()
2322 std::string TypeAsString(QT.getAsString(Context->getPrintingPolicy())); in RewriteTypeOfDecl()
[all …]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/es-ES/
Des-ES_zl0_kdt_mgc2.pkb51 QT��f�!M.
/external/clang/include/clang/Analysis/Analyses/
DFormatString.h380 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/StaticAnalyzer/Checkers/
DLLVMConventionsChecker.cpp52 if (const ElaboratedType *QT = T->getAs<ElaboratedType>()) in IsStdString() local
53 T = QT->getNamedType(); in IsStdString()
/external/clang/lib/Sema/
DDeclSpec.cpp304 QualType QT = DS.getRepAsType().get(); in isDeclarationOfFunction() local
305 if (QT.isNull()) in isDeclarationOfFunction()
308 if (const LocInfoType *LIT = dyn_cast<LocInfoType>(QT)) in isDeclarationOfFunction()
309 QT = LIT->getType(); in isDeclarationOfFunction()
311 if (QT.isNull()) in isDeclarationOfFunction()
314 return QT->isFunctionType(); in isDeclarationOfFunction()
DSemaDeclAttr.cpp307 QualType QT = Exp->getType(); in isIntOrBool() local
308 return QT->isBooleanType() || QT->isIntegerType(); in isIntOrBool()
334 QualType QT = vd->getType(); in threadSafetyCheckIsPointer() local
335 if (QT->isAnyPointerType()) in threadSafetyCheckIsPointer()
338 if (const RecordType *RT = QT->getAs<RecordType>()) { in threadSafetyCheckIsPointer()
350 << Attr.getName() << QT; in threadSafetyCheckIsPointer()
356 static const RecordType *getRecordType(QualType QT) { in getRecordType() argument
357 if (const RecordType *RT = QT->getAs<RecordType>()) in getRecordType()
361 if (const PointerType *PT = QT->getAs<PointerType>()) in getRecordType()
590 QualType QT = cast<ValueDecl>(D)->getType(); in checkAcquireOrderAttrCommon() local
[all …]
/external/openssl/crypto/bn/asm/
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 …]
Dmips3.s652 #define QT ta0 macro
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/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/fr-FR/
Dfr-FR_nk0_kdt_mgc2.pkb31 …���F*��J�Q�U9� ����8�[`ڃg�*��:�x�%��р�j��� ��V�6�0�~�S�0�z�m{ ��T��6���QT�~�*J����pa}�R6/…
/external/clang/lib/CodeGen/
DTargetInfo.cpp2929 QualType QT(T, 0); in computeInfo() local
2930 I.info = ABIArgInfo::getDirectInReg(CGT.ConvertType(QT)); in computeInfo()
6350 static void appendQualifier(SmallStringEnc &Enc, QualType QT) { in appendQualifier() argument
6354 if (QT.isConstQualified()) in appendQualifier()
6356 if (QT.isRestrictQualified()) in appendQualifier()
6358 if (QT.isVolatileQualified()) in appendQualifier()
6434 static bool appendArrayType(SmallStringEnc &Enc, QualType QT, in appendArrayType() argument
6447 appendQualifier(Enc, QT); in appendArrayType()
6494 QualType QT = QType.getCanonicalType(); in appendType() local
6496 if (const ArrayType *AT = QT->getAsArrayTypeUnsafe()) in appendType()
[all …]

123