Searched refs:FD (Results 151 - 175 of 388) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/perl/lib/unicore/
H A DCombiningClass.pl134 7FD 220
315 101FD 220
/openbsd-current/gnu/llvm/clang/lib/Sema/
H A DSemaStmtAsm.cpp260 FunctionDecl *FD = dyn_cast<FunctionDecl>(getCurLexicalContext()); local
262 Context.getFunctionFeatureMap(FeatureMap, FD);
876 FieldDecl *FD = dyn_cast<FieldDecl>(FoundDecl);
877 if (!FD)
881 unsigned i = FD->getFieldIndex();
916 ValueDecl *FD = dyn_cast<FieldDecl>(FieldResult.getFoundDecl());
917 if (!FD)
918 FD = dyn_cast<IndirectFieldDecl>(FieldResult.getFoundDecl());
919 if (!FD)
H A DSemaCUDA.cpp164 if (auto *FD = dyn_cast<FunctionDecl>(Var->getDeclContext())) {
165 switch (IdentifyCUDATarget(FD)) {
933 static void copyAttrIfPresent(Sema &S, FunctionDecl *FD,
938 FD->addAttr(Clone);
942 void Sema::inheritCUDATargetAttrs(FunctionDecl *FD,
945 copyAttrIfPresent<CUDAGlobalAttr>(*this, FD, TemplateFD);
946 copyAttrIfPresent<CUDAHostAttr>(*this, FD, TemplateFD);
947 copyAttrIfPresent<CUDADeviceAttr>(*this, FD, TemplateFD);
H A DSemaTemplateInstantiateDecl.cpp319 auto *FD = cast<FunctionDecl>(New); local
320 auto *ThisContext = dyn_cast_or_null<CXXRecordDecl>(FD->getDeclContext());
327 Sema::ContextRAII SavedContext(S, FD);
329 if (FD->getNumParams() > PVD->getFunctionScopeIndex())
331 PVD, FD->getParamDecl(PVD->getFunctionScopeIndex()));
335 FD->isCXXInstanceMember());
402 auto *FD = cast<FunctionDecl>(New); local
403 auto *ThisContext = dyn_cast_or_null<CXXRecordDecl>(FD->getDeclContext());
405 auto &&SubstExpr = [FD, ThisContext, &S, &TemplateArgs](Expr *E) {
408 Sema::ContextRAII SavedContext(S, FD);
629 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D); local
4543 InstantiateDefaultArgument(SourceLocation CallLoc, FunctionDecl *FD, ParmVarDecl *Param) argument
4768 FunctionDecl *FD = FTD->getTemplatedDecl(); local
[all...]
/openbsd-current/gnu/llvm/clang/lib/AST/
H A DExprConstant.cpp221 } else if (const FieldDecl *FD = getAsField(Path[I])) {
222 Type = FD->getType();
419 if (const FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
420 MostDerivedType = FD->getType();
2166 if (auto *FD = dyn_cast_or_null<FunctionDecl>(BaseVD)) {
2167 if (FD->isConsteval()) {
2170 Info.Note(FD->getLocation(), diag::note_declared_at);
2239 if (const auto *FD = dyn_cast<const FunctionDecl>(BaseVD)) {
2251 FD->hasAttr<DLLImportAttr>())
2305 const auto *FD
[all...]
H A DItaniumCXXABI.cpp49 if (const FieldDecl *FD = RT->getDecl()->findFirstNamedDataMember()) {
50 return FD->getIdentifier();
H A DCommentSema.cpp658 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
661 const DeclContext *Ctx = FD->getDeclContext();
663 FD->doesThisDeclarationHaveABody())
666 const LangOptions &LO = FD->getLangOpts();
679 MacroName = PP->getLastMacroWithSpelling(FD->getLocation(), Tokens);
690 PP->getLastMacroWithSpelling(FD->getLocation(), Tokens);
698 SourceLocation Loc = FD->getSourceRange().getBegin();
/openbsd-current/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp995 for (const object::FpoData &FD : Records) {
998 uint32_t(FD.Offset), uint32_t(FD.Size), uint32_t(FD.NumLocals),
999 uint32_t(FD.NumParams), FD.getPrologSize(),
1000 FD.getNumSavedRegs(), FD.useBP(), FD.hasSEH(),
1001 formatFrameType(FD
[all...]
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp990 const FunctionDecl *FD) {
991 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
998 static bool isCXXSharedPtrDtor(const FunctionDecl *FD) { argument
999 const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(FD);
1025 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CalleeADC->getDecl())) {
1028 if (FD->getTemplatedKind() != FunctionDecl::TK_NonTemplate)
1033 if (Ctx.getSourceManager().isInSystemHeader(FD->getLocation()))
1034 if (AnalysisDeclContext::isInStdNamespace(FD))
1040 if (!AMgr.isInCodeFile(FD->getLocation()))
1041 if (isContainerMethod(Ctx, FD))
989 isContainerMethod(const ASTContext &Ctx, const FunctionDecl *FD) argument
[all...]
/openbsd-current/gnu/llvm/clang/lib/CodeGen/
H A DCGDebugInfo.cpp262 StringRef CGDebugInfo::getFunctionName(const FunctionDecl *FD) { argument
263 return internString(GetName(FD));
2053 else if (const auto *FD = dyn_cast<FunctionDecl>(D))
2054 V = CGM.GetAddrOfFunction(FD);
2136 CGDebugInfo::GetTemplateArgs(const FunctionDecl *FD) const {
2137 if (FD->getTemplatedKind() ==
2139 const TemplateParameterList *TList = FD->getTemplateSpecializationInfo()
2142 return {{TList, FD->getTemplateSpecializationArgs()->asArray()}};
2174 CGDebugInfo::CollectFunctionTemplateParams(const FunctionDecl *FD, argument
2176 return CollectTemplateParams(GetTemplateArgs(FD), Uni
3695 const auto *FD = cast<FunctionDecl>(GD.getCanonicalDecl().getDecl()); local
3802 auto *FD = cast<FunctionDecl>(GD.getDecl()); local
3910 const auto *FD = dyn_cast<FunctionDecl>(D); local
3969 llvm::DISubprogram *FD = DBuilder.createFunction( local
4054 getFunctionType(const FunctionDecl *FD, QualType RetTy, const SmallVectorImpl<const VarDecl *> &Args) argument
4275 const auto *FD = cast<FunctionDecl>(GD.getDecl()); local
[all...]
H A DTargetInfo.cpp555 static bool isEmptyField(ASTContext &Context, const FieldDecl *FD, argument
557 if (FD->isUnnamedBitfield())
560 QualType FT = FD->getType();
590 (WasArray || !FD->hasAttr<NoUniqueAddressAttr>()))
658 for (const auto *FD : RD->fields()) {
659 QualType FT = FD->getType();
662 if (isEmptyField(Context, FD, true))
875 if (const auto *FD = dyn_cast_or_null<FunctionDecl>(D)) {
876 if (const auto *Attr = FD->getAttr<WebAssemblyImportModuleAttr>()) {
882 if (const auto *Attr = FD
2168 addX86InterruptAttrs(const FunctionDecl *FD, llvm::GlobalValue *GV, CodeGen::CodeGenModule &CGM) argument
11431 const auto *FD = dyn_cast_or_null<FunctionDecl>(D); local
[all...]
H A DCGCall.cpp280 const FunctionDecl *FD) {
281 if (FD->hasAttr<CUDAGlobalAttr>()) {
450 CodeGenTypes::arrangeFunctionDeclaration(const FunctionDecl *FD) { argument
451 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
455 CanQualType FTy = FD->getType()->getCanonicalTypeUnqualified();
458 setCUDAKernelCallingConvention(FTy, CGM, FD);
534 const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl()); local
540 return arrangeFunctionDeclaration(FD);
943 for (const auto *FD : RD->fields()) {
944 if (FD
279 setCUDAKernelCallingConvention(CanQualType &FTy, CodeGenModule &CGM, const FunctionDecl *FD) argument
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/libio/
H A Dfileops.c54 # define close(FD) __close (FD)
55 # define lseek(FD, Offset, Whence) __lseek (FD, Offset, Whence)
56 # define read(FD, Buf, NBytes) __read (FD, Buf, NBytes)
57 # define write(FD, Buf, NBytes) __write (FD, Buf, NBytes)
/openbsd-current/gnu/llvm/clang/lib/Analysis/
H A DProgramPoint.cpp122 if (const FieldDecl *FD = Init->getAnyMember()) {
123 Out << "\"field_decl\": \"" << *FD << '\"'; local
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DUnreachableCodeChecker.cpp91 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
92 if (FD->isTemplateInstantiation())
/openbsd-current/gnu/llvm/clang/include/clang/CrossTU/
H A DCrossTranslationUnit.h149 getCrossTUDefinition(const FunctionDecl *FD, StringRef CrossTUDir,
178 llvm::Expected<const FunctionDecl *> importDefinition(const FunctionDecl *FD,
/openbsd-current/gnu/llvm/llvm/include/llvm/Support/
H A DMemoryBuffer.h112 getOpenFileSlice(sys::fs::file_t FD, const Twine &Filename, uint64_t MapSize,
126 getOpenFile(sys::fs::file_t FD, const Twine &Filename, uint64_t FileSize,
/openbsd-current/gnu/llvm/llvm/tools/bugpoint/
H A DBugDriver.h253 bool writeProgramToFile(const std::string &Filename, int FD,
255 bool writeProgramToFile(int FD, const Module &M) const;
/openbsd-current/gnu/usr.bin/perl/lib/unicore/To/
H A DBmg.pl163 22F6 22FD
168 22FD 22F6
272 29FC 29FD
273 29FD 29FC
H A DBpt.pl97 29FD C
H A DCf.pl269 1FC 1FD
346 3FD 3FF 37B
423 4FC 4FD
453 13F8 13FD 13F0
463 1CBD 1CBF 10FD
H A DUc.pl254 1FD 1FC
328 37B 37D 3FD
436 4FD 4FC
464 10FD 10FF 1CBD
465 13F8 13FD 13F0
/openbsd-current/gnu/llvm/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp124 FunctionDecl *FD = FnD->getAsFunction(); local
125 Actions.CheckForFunctionRedefinition(FD);
126 Actions.MarkAsLateParsedTemplate(FD, FnD, Toks);
179 FunctionDecl *FD = FnD->getAsFunction(); local
182 Actions.CheckForFunctionRedefinition(FD);
183 FD->setWillHaveBody(true);
604 if (auto *FD = dyn_cast_or_null<FunctionDecl>(LM.D))
605 if (isa<CXXMethodDecl>(FD) ||
606 FD->isInIdentifierNamespace(Decl::IDNS_OrdinaryFriend))
607 Actions.ActOnFinishInlineFunctionDef(FD);
[all...]
/openbsd-current/gnu/llvm/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASession.cpp417 CComPtr<IDiaEnumFrameData> FD = local
419 if (!FD)
422 return std::make_unique<DIAEnumFrameData>(FD);
/openbsd-current/gnu/llvm/clang/include/clang/AST/
H A DJSONNodeDumper.h246 void VisitFieldDecl(const FieldDecl *FD);
247 void VisitFunctionDecl(const FunctionDecl *FD);
258 void VisitFriendDecl(const FriendDecl *FD);

Completed in 277 milliseconds

1234567891011>>