| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | Declaration.cpp | 14 void Declaration::Dump(Stream *s, bool show_fullpaths) const { in Dump() 35 bool Declaration::DumpStopContext(Stream *s, bool show_fullpaths) const { in DumpStopContext() 56 size_t Declaration::MemorySize() const { return sizeof(Declaration); } in MemorySize() 58 int Declaration::Compare(const Declaration &a, const Declaration &b) { in Compare() 73 bool Declaration::FileAndLineEqual(const Declaration &declaration) const { in FileAndLineEqual() 78 bool lldb_private::operator==(const Declaration &lhs, const Declaration &rhs) { in operator ==()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Declaration.h | 24 class Declaration { 27 Declaration() : m_file() {} in Declaration() function 42 Declaration(const FileSpec &file_spec, uint32_t line = 0, 47 Declaration(const Declaration *decl_ptr) in Declaration() function 79 static int Compare(const Declaration &lhs, const Declaration &rhs); 90 bool FileAndLineEqual(const Declaration &declaration) const; 191 bool operator==(const Declaration &lhs, const Declaration &rhs);
|
| H A D | ValueObjectVariable.h | 26 class Declaration; variable 58 bool GetDeclaration(Declaration &decl) override;
|
| H A D | ValueObjectDynamicValue.h | 28 class Declaration; variable 97 bool GetDeclaration(Declaration &decl) override;
|
| H A D | ValueObjectSyntheticFilter.h | 26 class Declaration; variable 114 bool GetDeclaration(Declaration &decl) override;
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Tooling/Syntax/ |
| H A D | Nodes.h | 100 Declaration, enumerator 359 class Declaration : public Tree { 361 Declaration(NodeKind K) : Tree(K) {} in Declaration() function 366 class UnknownDeclaration final : public Declaration { 373 class EmptyDeclaration final : public Declaration { 410 class SimpleDeclaration final : public Declaration { 419 class TemplateDeclaration final : public Declaration { 424 Declaration *getDeclaration(); 439 Declaration *getDeclaration(); 443 class NamespaceDefinition final : public Declaration { [all …]
|
| H A D | Nodes.td | 239 def Declaration : External<Tree> {} 240 def UnknownDeclaration : External<Declaration> {} 241 def EmptyDeclaration : External<Declaration> {} 242 def StaticAssertDeclaration : External<Declaration> {} 244 def SimpleDeclaration : External<Declaration> {} 245 def TemplateDeclaration : External<Declaration> {} 247 def NamespaceDefinition : External<Declaration> {} 248 def NamespaceAliasDefinition : External<Declaration> {} 249 def UsingNamespaceDirective : External<Declaration> {} 250 def UsingDeclaration : External<Declaration> {} [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBDeclaration.cpp | 35 m_opaque_up = std::make_unique<Declaration>(*lldb_object_ptr); in SBDeclaration() 49 const lldb_private::Declaration &lldb_object_ref) { in SetDeclaration() 123 lldb_private::Declaration *lhs_ptr = m_opaque_up.get(); in operator ==() 124 lldb_private::Declaration *rhs_ptr = rhs.m_opaque_up.get(); in operator ==() 127 return lldb_private::Declaration::Compare(*lhs_ptr, *rhs_ptr) == 0; in operator ==() 136 lldb_private::Declaration *lhs_ptr = m_opaque_up.get(); in operator !=() 137 lldb_private::Declaration *rhs_ptr = rhs.m_opaque_up.get(); in operator !=() 145 const lldb_private::Declaration *SBDeclaration::operator->() const { in operator ->() 149 lldb_private::Declaration &SBDeclaration::ref() { in ref() 151 m_opaque_up = std::make_unique<lldb_private::Declaration>(); in ref() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBDeclaration.h | 51 lldb_private::Declaration *get(); 56 const lldb_private::Declaration *operator->() const; 58 lldb_private::Declaration &ref(); 60 const lldb_private::Declaration &ref() const; 62 SBDeclaration(const lldb_private::Declaration *lldb_object_ptr); 64 void SetDeclaration(const lldb_private::Declaration &lldb_object_ref); 66 std::unique_ptr<lldb_private::Declaration> m_opaque_up;
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | Function.h | 44 FunctionInfo(const char *name, const Declaration *decl_ptr); 93 Declaration &GetDeclaration(); 99 const Declaration &GetDeclaration() const; 122 Declaration m_declaration; 149 const Declaration *decl_ptr, 150 const Declaration *call_decl_ptr); 171 const Declaration *decl_ptr, 172 const Declaration *call_decl_ptr); 215 Declaration &GetCallSite(); 221 const Declaration &GetCallSite() const; [all …]
|
| H A D | Variable.h | 35 Declaration *decl, const DWARFExpression &location, bool external, 45 const Declaration &GetDeclaration() const { return m_declaration; } in GetDeclaration() 126 Declaration m_declaration;
|
| H A D | Block.h | 188 GetContainingInlinedBlockWithCallSite(const Declaration &find_call_site); 317 const Declaration *decl_ptr, 318 const Declaration *call_decl_ptr);
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | UniqueDWARFASTType.h | 25 const lldb_private::Declaration &decl, int32_t byte_size) in UniqueDWARFASTType() 47 lldb_private::Declaration m_declaration; 63 bool Find(const DWARFDIE &die, const lldb_private::Declaration &decl, 83 const lldb_private::Declaration &decl, const int32_t byte_size, in Find()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | ExtractGV.cpp | 136 llvm::Value *Declaration; in runOnModule() local 138 Declaration = Function::Create(FTy, GlobalValue::ExternalLinkage, in runOnModule() 143 Declaration = in runOnModule() 148 CurI->replaceAllUsesWith(Declaration); in runOnModule()
|
| H A D | OpenMPOpt.cpp | 183 Function *Declaration = nullptr; member 345 if (!RFI.Declaration) in collectUses() 355 for (Use &U : RFI.Declaration->uses()) { in collectUses() 803 (RFI->Declaration && CI->getCalledFunction() == RFI->Declaration))) in getCallIfRegularCall() 815 (RFI->Declaration && CI->getCalledFunction() == RFI->Declaration))) in getCallIfRegularCall() 831 if (!RFI.Declaration) in mergeParallelRegions() 1204 if (!RFI.Declaration) in deleteParallelRegions() 1775 : Declaration(OMPInfoCache.RFIs[RFKind].Declaration) { in ExternalizationRAII() 1776 if (!Declaration) in ExternalizationRAII() 1784 if (!Declaration) in ~ExternalizationRAII() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | Function.cpp | 29 FunctionInfo::FunctionInfo(const char *name, const Declaration *decl_ptr) in FunctionInfo() 32 FunctionInfo::FunctionInfo(ConstString name, const Declaration *decl_ptr) in FunctionInfo() 48 return Declaration::Compare(a.m_declaration, b.m_declaration); in Compare() 51 Declaration &FunctionInfo::GetDeclaration() { return m_declaration; } in GetDeclaration() 53 const Declaration &FunctionInfo::GetDeclaration() const { in GetDeclaration() 65 const Declaration *decl_ptr, in InlineFunctionInfo() 66 const Declaration *call_decl_ptr) in InlineFunctionInfo() 72 const Declaration *decl_ptr, in InlineFunctionInfo() 73 const Declaration *call_decl_ptr) in InlineFunctionInfo() 106 Declaration &InlineFunctionInfo::GetCallSite() { return m_call_decl; } in GetCallSite() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | CodeCompleteConsumer.cpp | 522 return !(Result.Declaration->getIdentifier() && in isResultFilteredOut() 523 Result.Declaration->getIdentifier()->getName().startswith(Filter)); in isResultFilteredOut() 552 OS << *Results[I].Declaration; in ProcessCodeCompleteResults() 671 if (!Declaration) { in computeCursorKindAndAvailability() 679 switch (getDeclAvailability(Declaration)) { in computeCursorKindAndAvailability() 694 if (const auto *Function = dyn_cast<FunctionDecl>(Declaration)) in computeCursorKindAndAvailability() 698 CursorKind = getCursorKindForDecl(Declaration); in computeCursorKindAndAvailability() 703 if (isa<ObjCInterfaceDecl>(Declaration)) in computeCursorKindAndAvailability() 705 else if (isa<ObjCProtocolDecl>(Declaration)) in computeCursorKindAndAvailability() 739 DeclarationName Name = Declaration->getDeclName(); in getOrderedName()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | TemplateBase.cpp | 208 case Declaration: { in getDependence() 248 case Declaration: in isPackExpansion() 295 case TemplateArgument::Declaration: in getNonTypeTemplateArgumentType() 320 case Declaration: in Profile() 374 case Declaration: in structurallyEquals() 405 case Declaration: in getPackExpansionPattern() 432 case Declaration: { in print() 505 case TemplateArgument::Declaration: in getSourceRange() 551 case TemplateArgument::Declaration: in DiagTemplateArg()
|
| /freebsd-13.1/contrib/ntp/ |
| H A D | configure.ac | 1136 AC_DEFINE([DECL_PLOCK_0], [1], [Declaration style]) 1137 AC_DEFINE([DECL_STIME_1], [1], [Declaration style]) 1144 AC_DEFINE([DECL_BZERO_0], [1], [Declaration style]) 1145 AC_DEFINE([DECL_IOCTL_0], [1], [Declaration style]) 1146 AC_DEFINE([DECL_IPC_0], [1], [Declaration style]) 1153 AC_DEFINE([DECL_STDIO_0], [1], [Declaration style]) 1156 AC_DEFINE([DECL_TIME_0], [1], [Declaration style]) 1171 AC_DEFINE([DECL_BCOPY_0], [1], [Declaration style]) 1174 AC_DEFINE([DECL_IPC_0], [1], [Declaration style]) 1190 AC_DEFINE([DECL_TIME_0], [1], [Declaration style]) [all …]
|
| H A D | config.h.in | 188 /* Declaration style */ 191 /* Declaration style */ 194 /* Declaration style */ 197 /* Declaration style */ 203 /* Declaration style */ 209 /* Declaration style */ 212 /* Declaration style */ 215 /* Declaration style */ 218 /* Declaration style */ 221 /* Declaration style */ [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
| H A D | Nodes.cpp | 77 case syntax::NodeRole::Declaration: in operator <<() 371 syntax::Declaration *syntax::TemplateDeclaration::getDeclaration() { in getDeclaration() 372 return cast_or_null<syntax::Declaration>( in getDeclaration() 373 findChild(syntax::NodeRole::Declaration)); in getDeclaration() 385 syntax::Declaration *syntax::ExplicitTemplateInstantiation::getDeclaration() { in getDeclaration() 386 return cast_or_null<syntax::Declaration>( in getDeclaration() 387 findChild(syntax::NodeRole::Declaration)); in getDeclaration()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | CodeCompleteConsumer.h | 765 const NamedDecl *Declaration = nullptr; variable 864 CodeCompletionResult(const NamedDecl *Declaration, unsigned Priority, 869 : Declaration(Declaration), Priority(Priority), Kind(RK_Declaration), in Declaration() function 901 : Declaration(D), Pattern(Pattern), Priority(Priority), Kind(RK_Pattern), in Declaration() function 911 : Declaration(D), Pattern(Pattern), Priority(Priority), Kind(RK_Pattern), in CodeCompletionResult() 923 return Declaration; in getDeclaration()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Index/ |
| H A D | CommentToXML.cpp | 564 SmallString<128> &Declaration); 590 const DeclInfo *DI, SmallString<128> &Declaration) { in formatTextOfDeclaration() argument 592 StringRef StringDecl(Declaration.c_str(), Declaration.size()); in formatTextOfDeclaration() 596 unsigned Length = Declaration.size(); in formatTextOfDeclaration() 604 Declaration = *FormattedStringDecl; in formatTextOfDeclaration() 946 SmallString<128> Declaration; in visitFullComment() local 947 getSourceTextOfDeclaration(DI, Declaration); in visitFullComment() 948 formatTextOfDeclaration(DI, Declaration); in visitFullComment() 949 appendToResultWithXMLEscaping(Declaration); in visitFullComment()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | TemplateBase.h | 75 Declaration, 165 DeclArg.Kind = Declaration; 277 assert(getKind() == Declaration && "Unexpected kind"); 282 assert(getKind() == Declaration && "Unexpected kind"); 481 Argument.getKind() == TemplateArgument::Declaration || 527 assert(Argument.getKind() == TemplateArgument::Declaration);
|
| H A D | TemplateArgumentVisitor.h | 37 DISPATCH(Declaration); in Visit() 59 VISIT_METHOD(Declaration);
|