Home
last modified time | relevance | path

Searched refs:CD (Results 1 – 25 of 343) sorted by relevance

12345678910>>...14

/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/DumpTool/
DASTSrcLocProcessor.cpp215 ClassData CD; in run() local
217 CD.ASTClassLocations = in run()
219 CD.ASTClassRanges = in run()
221 CD.TypeSourceInfos = in run()
223 CD.TypeLocs = CaptureMethods("class clang::TypeLoc", ASTClass, Result); in run()
224 CD.NestedNameLocs = in run()
226 CD.DeclNameInfos = in run()
230 CD.DeclNameInfos.insert(CD.DeclNameInfos.end(), DI.begin(), DI.end()); in run()
264 CD.TemplateParms.push_back(TParam->getName().str()); in run()
269 ClassEntries[ClassName] = CD; in run()
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DMangle.cpp267 void MangleContext::mangleCtorBlock(const CXXConstructorDecl *CD, in mangleCtorBlock() argument
272 mangleName(GlobalDecl(CD, CT), Out); in mangleCtorBlock()
301 if (const auto *CD = dyn_cast<CXXConstructorDecl>(DC)) in mangleBlock() local
302 mangleCtorBlock(CD, /*CT*/ Ctor_Complete, BD, Out); in mangleBlock()
367 } else if (const auto *CD = in mangleObjCMethodName() local
369 OS << CD->getName(); in mangleObjCMethodName()
489 if (const auto *CD = dyn_cast_or_null<CXXConstructorDecl>(ND)) { in getAllManglings() local
490 Manglings.emplace_back(getMangledStructor(CD, Ctor_Base)); in getAllManglings()
493 if (!CD->getParent()->isAbstract()) in getAllManglings()
494 Manglings.emplace_back(getMangledStructor(CD, Ctor_Complete)); in getAllManglings()
[all …]
DMicrosoftCXXABI.cpp126 CXXConstructorDecl *CD) override { in addCopyConstructorForExceptionObject() argument
127 assert(CD != nullptr); in addCopyConstructorForExceptionObject()
128 assert(RecordToCopyCtor[RD] == nullptr || RecordToCopyCtor[RD] == CD); in addCopyConstructorForExceptionObject()
129 RecordToCopyCtor[RD] = CD; in addCopyConstructorForExceptionObject()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DSafepointIRVerifier.cpp200 const CFGDeadness &CD);
206 CFGDeadness CD; in run() local
207 CD.processFunction(F, DT); in run()
208 Verify(F, DT, CD); in run()
223 CFGDeadness CD; in runOnFunction() local
224 CD.processFunction(F, DT); in runOnFunction()
225 Verify(F, DT, CD); in runOnFunction()
446 const CFGDeadness &CD; member in __anond1b179320311::GCPtrTracker
458 const CFGDeadness &CD);
461 return CD.hasLiveIncomingEdge(PN, InBB); in hasLiveIncomingEdge()
[all …]
/freebsd-12-stable/contrib/file/magic/Magdir/
Dcddb4 # CDDB: file(1) magic for CDDB(tm) format CD text data files
9 # CDDB-enabled CD player applications.
12 0 search/1/w #\040xmcd CDDB(tm) format CD text data
Dmodem32 # skip MouseTrap/Mt.Defaults with file size 16 found on Golden Orchard Apple II CD Rom
34 # skip PICTUREH.SML found on Golden Orchard Apple II CD Rom
43 # 16 0-bits near beginning like PicturePuzzler found on Golden Orchard Apple CD Rom
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-cov/
DCoverageSummaryInfo.cpp62 CoverageData CD = CM.getCoverageForFunction(Function); in get() local
63 for (const auto &LCS : getLineCoverageStats(CD)) { in get()
73 sumBranches(NumBranches, CoveredBranches, CD.getBranches()); in get()
74 sumBranchExpansions(NumBranches, CoveredBranches, CM, CD.getExpansions()); in get()
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
DCallEvent.cpp324 bool CallEvent::isCalled(const CallDescription &CD) const { in isCalled()
336 if (CD.Flags & CDF_MaybeBuiltin) { in isCalled()
337 return CheckerContext::isCLibraryFunction(FD, CD.getFunctionName()) && in isCalled()
338 (!CD.RequiredArgs || CD.RequiredArgs <= getNumArgs()) && in isCalled()
339 (!CD.RequiredParams || CD.RequiredParams <= parameters().size()); in isCalled()
342 if (!CD.IsLookupDone) { in isCalled()
343 CD.IsLookupDone = true; in isCalled()
344 CD.II = &getState()->getStateManager().getContext().Idents.get( in isCalled()
345 CD.getFunctionName()); in isCalled()
348 if (II != CD.II) in isCalled()
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/Interp/
DInterp.cpp349 auto *CD = dyn_cast<CXXConstructorDecl>(DiagDecl); in CheckCallable() local
350 if (CD && CD->isInheritingConstructor()) { in CheckCallable()
351 auto *Inherited = CD->getInheritedConstructor().getConstructor(); in CheckCallable()
353 DiagDecl = CD = Inherited; in CheckCallable()
359 if (CD && CD->isInheritingConstructor()) in CheckCallable()
361 << CD->getInheritedConstructor().getConstructor()->getParent(); in CheckCallable()
364 << DiagDecl->isConstexpr() << (bool)CD << DiagDecl; in CheckCallable()
DState.cpp145 if (auto *CD = dyn_cast_or_null<CXXConstructorDecl>(F->getCallee())) { in addCallStack() local
146 if (CD->isInheritingConstructor()) { in addCallStack()
148 << CD->getParent(); in addCallStack()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DUsedDeclVisitor.h92 if (auto *CD = dyn_cast<CapturedDecl>(D)) { in visitUsedDecl() local
93 if (auto *S = CD->getBody()) { in visitUsedDecl()
96 } else if (auto *CD = dyn_cast<BlockDecl>(D)) { in visitUsedDecl() local
97 if (auto *S = CD->getBody()) { in visitUsedDecl()
DSemaCUDA.cpp464 bool Sema::isEmptyCudaConstructor(SourceLocation Loc, CXXConstructorDecl *CD) { in isEmptyCudaConstructor() argument
465 if (!CD->isDefined() && CD->isTemplateInstantiation()) in isEmptyCudaConstructor()
466 InstantiateFunctionDefinition(Loc, CD->getFirstDecl()); in isEmptyCudaConstructor()
471 if (CD->isTrivial()) in isEmptyCudaConstructor()
478 if (!(CD->hasTrivialBody() && CD->getNumParams() == 0)) in isEmptyCudaConstructor()
482 if (CD->getParent()->isDynamicClass()) in isEmptyCudaConstructor()
486 if (CD->getParent()->isUnion()) in isEmptyCudaConstructor()
491 if (!llvm::all_of(CD->inits(), [&](const CXXCtorInitializer *CI) { in isEmptyCudaConstructor()
DSemaObjCProperty.cpp1130 if (const ObjCCategoryDecl *CD = in ActOnPropertyImplDecl() local
1132 if (!CD->IsClassExtension()) { in ActOnPropertyImplDecl()
1133 Diag(PropertyLoc, diag::err_category_property) << CD->getDeclName(); in ActOnPropertyImplDecl()
2380 ObjCContainerDecl *CD = cast<ObjCContainerDecl>(property->getDeclContext()); in ProcessPropertyDecl() local
2381 if (CD->isInvalidDecl()) in ProcessPropertyDecl()
2386 CD->getClassMethod(property->getGetterName()) : in ProcessPropertyDecl()
2387 CD->getInstanceMethod(property->getGetterName()); in ProcessPropertyDecl()
2392 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD)) in ProcessPropertyDecl()
2400 CD->getClassMethod(property->getSetterName()) : in ProcessPropertyDecl()
2401 CD->getInstanceMethod(property->getSetterName()); in ProcessPropertyDecl()
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Index/
DUSRGeneration.cpp92 void VisitObjCContainerDecl(const ObjCContainerDecl *CD,
387 if (auto *CD = dyn_cast<ObjCCategoryDecl>(D->getDeclContext())) in getCategoryContext() local
388 return CD; in getCategoryContext()
407 auto *CD = getCategoryContext(D); in VisitObjCMethodDecl() local
408 VisitObjCContainerDecl(ID, CD); in VisitObjCMethodDecl()
428 const ObjCCategoryDecl *CD = cast<ObjCCategoryDecl>(D); in VisitObjCContainerDecl() local
429 const ObjCInterfaceDecl *ID = CD->getClassInterface(); in VisitObjCContainerDecl()
440 if (CD->IsClassExtension()) { in VisitObjCContainerDecl()
442 GenLoc(CD, /*IncludeOffset=*/true); in VisitObjCContainerDecl()
445 GenObjCCategory(ID->getName(), CD->getName(), in VisitObjCContainerDecl()
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DUndefinedAssignmentChecker.cpp92 if (const auto *CD = in checkBind() local
94 if (CD->isImplicit()) { in checkBind()
95 for (auto I : CD->inits()) { in checkBind()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
DCoverageMapping.h699 LineCoverageIterator(const CoverageData &CD) in LineCoverageIterator() argument
700 : LineCoverageIterator(CD, CD.begin()->Line) {} in LineCoverageIterator()
702 LineCoverageIterator(const CoverageData &CD, unsigned Line) in LineCoverageIterator() argument
703 : CD(CD), WrappedSegment(nullptr), Next(CD.begin()), Ended(false), in LineCoverageIterator()
709 return &CD == &R.CD && Next == R.Next && Ended == R.Ended;
720 EndIt.Next = CD.end(); in getEnd()
726 const CoverageData &CD;
737 getLineCoverageStats(const coverage::CoverageData &CD) { in getLineCoverageStats() argument
738 auto Begin = LineCoverageIterator(CD); in getLineCoverageStats()
/freebsd-12-stable/sys/gnu/dts/arm/
Drk3288-veyron-sdmmc.dtsi34 * Builtin CD line is hooked to ground to prevent JTAG at boot
36 * Configure gpio6_C6 as GPIO so dw_mmc builtin CD doesn't
43 /* This is where we actually hook up CD */
Dimx6qdl-wandboard-revb1.dtsi15 MX6QDL_PAD_GPIO_2__GPIO1_IO02 0x80000000 /* uSDHC1 CD */
16 MX6QDL_PAD_EIM_DA9__GPIO3_IO09 0x80000000 /* uSDHC3 CD */
Dimx6qdl-wandboard-revc1.dtsi15 MX6QDL_PAD_GPIO_2__GPIO1_IO02 0x80000000 /* uSDHC1 CD */
16 MX6QDL_PAD_EIM_DA9__GPIO3_IO09 0x80000000 /* uSDHC3 CD */
Dste-nomadik-s8815.dts41 /* Hog CD pins */
57 /* CD input GPIO */
62 /* CD GPIO biasing */
/freebsd-12-stable/share/misc/
Dscsi_modes351 0x0E "CD-ROM Audio Control Parameters" {
422 {Non CD Optical Device} t1
429 # CD-ROM (and CD-R[W]) devices
430 0x2a "CD capabilities and mechanical status" {
433 {CD-RW Read} t1
434 {CD-R Read} t1
437 {CD-RW Write} t1
438 {CD-R Write} t1
453 {CD-DA Stream is Accurate} t1
454 {CD-DA Commands Supported} t1
/freebsd-12-stable/crypto/openssl/crypto/md5/asm/
Dmd5-sparcv9.pl37 ($AB,$CD)=("%g4","%g5");
329 sllx $C,32,$CD ! pack C,D
333 or $D,$CD,$CD
354 srlx $CD,32,$t2
359 add $CD,$D,$D
/freebsd-12-stable/sys/contrib/libsodium/test/default/
Dwintest.bat9 CD test\default
11 echo "Are you on the right path?" %CD%
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
DRecursiveSymbolVisitor.h47 bool VisitCXXConstructorDecl(const CXXConstructorDecl *CD) { in VisitCXXConstructorDecl() argument
48 for (const auto *Initializer : CD->inits()) { in VisitCXXConstructorDecl()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGClass.cpp597 auto *CD = dyn_cast<CXXConstructorDecl>(D); in isMemcpyEquivalentSpecialMember() local
598 if (!(CD && CD->isCopyOrMoveConstructor()) && in isMemcpyEquivalentSpecialMember()
1055 const CXXConstructorDecl *CD, in getTrivialCopySource() argument
1057 if (CD->isCopyOrMoveConstructor() && CD->isDefaulted()) in getTrivialCopySource()
1058 return Args[CGF.CGM.getCXXABI().getSrcArgforCopyCtor(CD, Args)]; in getTrivialCopySource()
1087 ConstructorMemcpyizer(CodeGenFunction &CGF, const CXXConstructorDecl *CD, in ConstructorMemcpyizer() argument
1089 : FieldMemcpyizer(CGF, CD->getParent(), getTrivialCopySource(CGF, CD, Args)), in ConstructorMemcpyizer()
1090 ConstructorDecl(CD), in ConstructorMemcpyizer()
1091 MemcpyableCtor(CD->isDefaulted() && in ConstructorMemcpyizer()
1092 CD->isCopyOrMoveConstructor() && in ConstructorMemcpyizer()
[all …]

12345678910>>...14