/external/skia/gyp/ |
D | debugger.gyp | 73 'moc_src_dir': '../debugger/QT', 74 'moc_gen_dir': '<(SHARED_INTERMEDIATE_DIR)/debugger/QT', 93 '../debugger/QT', # For all the QT UI Goodies 107 '../debugger/QT/SkDebuggerGUI.cpp', 108 '../debugger/QT/SkDebuggerGUI.h', 109 '../debugger/QT/SkDrawCommandGeometryWidget.h', 110 '../debugger/QT/SkDrawCommandGeometryWidget.cpp', 111 '../debugger/QT/SkCanvasWidget.cpp', 112 '../debugger/QT/SkCanvasWidget.h', 113 '../debugger/QT/SkInspectorWidget.h', [all …]
|
D | most.gyp | 8 # - debugger: this requires QT to build
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
D | module.cpp | 94 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/ |
D | PrintfFormatString.cpp | 550 bool PrintfSpecifier::fixType(QualType QT, const LangOptions &LangOpt, in fixType() argument 560 if (QT->isObjCRetainableType()) { in fixType() 579 if (QT->isPointerType() && (QT->getPointeeType()->isAnyCharacterType())) { in fixType() 587 if (QT->getPointeeType()->isWideCharType()) in fixType() 596 if (const EnumType *ETy = QT->getAs<EnumType>()) in fixType() 597 QT = ETy->getDecl()->getIntegerType(); in fixType() 600 const BuiltinType *BT = QT->getAs<BuiltinType>(); in fixType() 661 if (isa<TypedefType>(QT) && (LangOpt.C99 || LangOpt.CPlusPlus11)) in fixType() 662 namedTypeToLengthModifier(QT, LM); in fixType() 670 if (QT->isSignedIntegerType()) in fixType() [all …]
|
D | Consumed.cpp | 141 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 …]
|
D | ScanfFormatString.cpp | 402 bool ScanfSpecifier::fixType(QualType QT, QualType RawQT, in fixType() argument 410 if (!QT->isPointerType()) in fixType() 413 QualType PT = QT->getPointeeType(); in fixType() 495 if (AT.isValid() && AT.matchesType(Ctx, QT)) in fixType()
|
D | FormatString.cpp | 875 bool FormatSpecifier::namedTypeToLengthModifier(QualType QT, in namedTypeToLengthModifier() argument 877 assert(isa<TypedefType>(QT) && "Expected a TypedefType"); in namedTypeToLengthModifier() 878 const TypedefNameDecl *Typedef = cast<TypedefType>(QT)->getDecl(); in namedTypeToLengthModifier()
|
/external/clang/tools/libclang/ |
D | CXType.cpp | 704 QualType QT = GetQualType(T); in clang_Type_getAlignOf() local 708 if (QT->isReferenceType()) in clang_Type_getAlignOf() 709 QT = QT.getNonReferenceType(); in clang_Type_getAlignOf() 710 if (QT->isIncompleteType()) in clang_Type_getAlignOf() 712 if (QT->isDependentType()) in clang_Type_getAlignOf() 717 return Ctx.getTypeAlignInChars(QT).getQuantity(); in clang_Type_getAlignOf() 735 QualType QT = GetQualType(T); in clang_Type_getSizeOf() local 737 if (QT->isReferenceType()) in clang_Type_getSizeOf() 738 QT = QT.getNonReferenceType(); in clang_Type_getSizeOf() 745 if (QT->isIncompleteType()) in clang_Type_getSizeOf() [all …]
|
/external/clang/lib/AST/ |
D | ASTDiagnostic.cpp | 29 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() 97 QT = FPT ? Context.getFunctionType(RT, Args, FPT->getExtProtoInfo()) in Desugar() 120 QT = Context.getTemplateSpecializationType( in Desugar() [all …]
|
D | ASTTypeTraits.cpp | 120 else if (const QualType *QT = get<QualType>()) in print() local 121 QT->print(OS, PP); in print()
|
/external/clang/include/clang/AST/ |
D | TemplateBase.h | 79 void *QT; member 135 TemplateArgument(ValueDecl *D, QualType QT) { in TemplateArgument() argument 138 DeclArg.QT = QT.getAsOpaquePtr(); in TemplateArgument() 251 return QualType::getFromOpaquePtr(DeclArg.QT); in getParamTypeForDecl()
|
/external/libcxx/test/std/utilities/function.objects/func.require/ |
D | bullet_1_and_2.pass.cpp | 166 template <class QT, class Tp> 167 void runTestDispatchIf(Bool<true>, QT q, Tp& v) { in runTestDispatchIf() 171 template <class QT, class Tp> 172 void runTestDispatchIf(Bool<false>, QT, Tp&) { in runTestDispatchIf()
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 465 bool PointerTypeTakesAnyBlockArguments(QualType QT); 466 bool PointerTypeTakesAnyObjCQualifiedType(QualType QT); 1128 QualType QT = PDecl->getType(); in RewriteObjCMethodDecl() local 1130 (void)convertBlockPointerToFunctionPointer(QT); in RewriteObjCMethodDecl() 1131 QT.getAsStringInternal(Name, Context->getPrintingPolicy()); in RewriteObjCMethodDecl() 2188 QualType QT = ND->getType(); in RewriteTypeOfDecl() local 2189 const Type* TypePtr = QT->getAs<Type>(); in RewriteTypeOfDecl() 2194 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteTypeOfDecl() 2195 TypePtr = QT->getAs<Type>(); in RewriteTypeOfDecl() 2199 std::string TypeAsString(QT.getAsString(Context->getPrintingPolicy())); in RewriteTypeOfDecl() [all …]
|
D | RewriteModernObjC.cpp | 565 bool PointerTypeTakesAnyBlockArguments(QualType QT); 566 bool PointerTypeTakesAnyObjCQualifiedType(QualType QT); 1323 QualType QT = PDecl->getType(); in RewriteObjCMethodDecl() local 1325 (void)convertBlockPointerToFunctionPointer(QT); in RewriteObjCMethodDecl() 1326 QT.getAsStringInternal(Name, Context->getPrintingPolicy()); in RewriteObjCMethodDecl() 2300 QualType QT = ND->getType(); in RewriteTypeOfDecl() local 2301 const Type* TypePtr = QT->getAs<Type>(); in RewriteTypeOfDecl() 2306 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteTypeOfDecl() 2307 TypePtr = QT->getAs<Type>(); in RewriteTypeOfDecl() 2311 std::string TypeAsString(QT.getAsString(Context->getPrintingPolicy())); in RewriteTypeOfDecl() [all …]
|
/external/llvm/test/Object/ |
D | nm-darwin-m.test | 33 # QT.A.qtx 48 test3: (undefined) external _qt (from QT)
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/es-ES/ |
D | es-ES_zl0_kdt_mgc2.pkb | 51 QT��f�!M.
|
/external/clang/include/clang/Analysis/Analyses/ |
D | FormatString.h | 394 static bool namedTypeToLengthModifier(QualType QT, LengthModifier &LM); 517 bool fixType(QualType QT, const LangOptions &LangOpt, ASTContext &Ctx, 590 bool fixType(QualType QT, QualType RawQT, const LangOptions &LangOpt,
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | LLVMConventionsChecker.cpp | 52 if (const ElaboratedType *QT = T->getAs<ElaboratedType>()) in IsStdString() local 53 T = QT->getNamedType(); in IsStdString()
|
D | UnixAPIChecker.cpp | 100 QualType QT = Arg->getType(); in CheckOpen() local 101 if (!QT->isIntegerType()) { in CheckOpen()
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
D | wpa_gui.pro | 4 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
/external/clang/lib/Sema/ |
D | DeclSpec.cpp | 320 QualType QT = DS.getRepAsType().get(); in isDeclarationOfFunction() local 321 if (QT.isNull()) in isDeclarationOfFunction() 324 if (const LocInfoType *LIT = dyn_cast<LocInfoType>(QT)) in isDeclarationOfFunction() 325 QT = LIT->getType(); in isDeclarationOfFunction() 327 if (QT.isNull()) in isDeclarationOfFunction() 330 return QT->isFunctionType(); in isDeclarationOfFunction()
|
D | SemaStmt.cpp | 3465 QualType QT; member in __anonef1cd1000711::CatchHandlerType 3472 CatchHandlerType(QualType QT, Unique) : QT(QT), IsPointer(false) {} in CatchHandlerType() argument 3478 CatchHandlerType(QualType Q) : QT(Q), IsPointer(false) { in CatchHandlerType() 3479 if (QT->isPointerType()) in CatchHandlerType() 3482 if (IsPointer || QT->isReferenceType()) in CatchHandlerType() 3483 QT = QT->getPointeeType(); in CatchHandlerType() 3484 QT = QT.getUnqualifiedType(); in CatchHandlerType() 3490 CatchHandlerType(QualType QT, bool IsPointer) in CatchHandlerType() argument 3491 : QT(QT), IsPointer(IsPointer) {} in CatchHandlerType() 3493 QualType underlying() const { return QT; } in underlying() [all …]
|
D | SemaDeclAttr.cpp | 353 QualType QT = Exp->getType(); in isIntOrBool() local 354 return QT->isBooleanType() || QT->isIntegerType(); in isIntOrBool() 380 QualType QT = vd->getType(); in threadSafetyCheckIsPointer() local 381 if (QT->isAnyPointerType()) in threadSafetyCheckIsPointer() 384 if (const RecordType *RT = QT->getAs<RecordType>()) { in threadSafetyCheckIsPointer() 396 << Attr.getName() << QT; in threadSafetyCheckIsPointer() 402 static const RecordType *getRecordType(QualType QT) { in getRecordType() argument 403 if (const RecordType *RT = QT->getAs<RecordType>()) in getRecordType() 407 if (const PointerType *PT = QT->getAs<PointerType>()) in getRecordType() 631 QualType QT = cast<ValueDecl>(D)->getType(); in checkAcquireOrderAttrCommon() local [all …]
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/fr-FR/ |
D | fr-FR_nk0_kdt_mgc2.pkb | 31 …���F*��J�Q�U9�����8�[`ڃg�*��:�x�%��р�j��� ��V�6�0~�S�0�z�m{ ��T��6���QT�~�*J����pa}�R6/…
|
/external/webrtc/webrtc/modules/video_capture/mac/ |
D | video_capture_mac.mm | 84 if (version < 0x07000000) // QT v. 7.x or newer (QT 5.0.2 0x05020000)
|