Home
last modified time | relevance | path

Searched refs:Definition (Results 1 – 25 of 159) sorted by relevance

1234567

/openbsd-src/gnu/llvm/lldb/source/Core/
H A DFormatEntity.cpp81 using Definition = lldb_private::FormatEntity::Entry::Definition; typedef
87 constexpr Definition g_string_entry[] = {
88 Definition("*", EntryType::ParentString)};
90 constexpr Definition g_addr_entries[] = {
91 Definition("load", EntryType::AddressLoad),
92 Definition("file", EntryType::AddressFile)};
94 constexpr Definition g_file_child_entries[] = {
95 Definition("basename", EntryType::ParentNumber, FileKind::Basename),
96 Definition("dirname", EntryType::ParentNumber, FileKind::Dirname),
97 Definition("fullpath", EntryType::ParentNumber, FileKind::Fullpath)};
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DFormatEntity.h106 struct Definition { struct
118 const Definition *children = nullptr; argument
123 constexpr Definition(const char *name, const FormatEntity::Entry::Type t) in Definition() function
126 constexpr Definition(const char *name, const char *string) in Definition() argument
129 constexpr Definition(const char *name, const FormatEntity::Entry::Type t, in Definition() function
133 constexpr Definition(const char *name, const FormatEntity::Entry::Type t,
135 const Definition *children,
142 static constexpr Definition
144 const Definition (&children)[N],
146 return Definition(name, t, N, children, keep_separator);
H A DPropertiesBase.td5 string Definition;
/openbsd-src/gnu/llvm/clang/lib/Format/
H A DMacroExpander.cpp34 struct MacroExpander::Definition { struct in clang::format::MacroExpander
57 MacroExpander::Definition parse() { in parse()
117 Definition Def;
143 auto Definition = Parser.parse(); in parseDefinition() local
144 Definitions[Definition.Name] = std::move(Definition); in parseDefinition()
160 const Definition &Def = Definitions.find(ID->TokenText)->second; in expand()
H A DMacros.h122 struct Definition;
132 llvm::StringMap<Definition> Definitions;
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DODRDiagsEmitter.h65 assert(FirstID->data().Definition != SecondID->data().Definition && in diagnoseMismatch()
83 assert(FirstProtocol->data().Definition != in diagnoseMismatch()
84 SecondProtocol->data().Definition && in diagnoseMismatch()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
H A DCOFFLinkGraphBuilder.cpp504 const object::coff_aux_section_definition *Definition = in createDefinedSymbol() local
506 if (!Definition || !isComdatSection(Section)) { in createDefinedSymbol()
512 if (Definition->Selection == COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE) { in createDefinedSymbol()
513 auto Target = Definition->getNumber(Symbol.isBigObj()); in createDefinedSymbol()
524 return createCOMDATExportRequest(SymIndex, Symbol, Definition); in createDefinedSymbol()
547 const object::coff_aux_section_definition *Definition) { in createCOMDATExportRequest() argument
549 switch (Definition->Selection) { in createCOMDATExportRequest()
572 << Symbol.getSectionNumber() << " (size: " << Definition->Length in createCOMDATExportRequest()
585 formatv("{0:d}", Definition->Selection)); in createCOMDATExportRequest()
589 Definition->Length}; in createCOMDATExportRequest()
/openbsd-src/gnu/usr.bin/binutils/gdb/doc/
H A DChangeLog74 * gdbint.texinfo (Target Architecture Definition): Add missing
84 * gdbint.texinfo (Host Definition): Delete description of
89 * gdbint.texinfo (Host Definition): Delete description of
96 * gdbint.texinfo (Target Architecture Definition): Delete
101 * gdbint.texinfo (Target Architecture Definition): Delete
132 * gdbint.texinfo (Target Architecture Definition): Remove
137 * gdbint.texinfo (Target Architecture Definition): Remove
146 * gdbint.texinfo (Target Architecture Definition): Deprecate
156 * gdbint.texinfo (Target Architecture Definition): Deprecate
168 * gdbint.texinfo (Target Architecture Definition): Delete
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformMacOSXProperties.td3 let Definition = "platformdarwinkernel" in {
9 let Definition = "platformdarwin" in {
/openbsd-src/gnu/llvm/llvm/tools/yaml2obj/
H A Dyaml2obj.cpp67 StringRef Macro, Definition; in preprocess() local
68 std::tie(Macro, Definition) = Define.split('='); in preprocess()
73 if (!Defines.try_emplace(Macro, Definition).second) { in preprocess()
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DMemorySSAUpdater.h190 MemoryAccess *createMemoryAccessInBB(Instruction *I, MemoryAccess *Definition,
205 MemoryAccess *Definition,
208 MemoryAccess *Definition,
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderDecl.cpp1239 if (DD.Definition == NewDD.Definition) in MergeDefinitionData()
1243 std::make_pair(NewDD.Definition, DD.Definition)); in MergeDefinitionData()
1244 Reader.mergeDefinitionVisibility(DD.Definition, NewDD.Definition); in MergeDefinitionData()
1247 Reader.PendingObjCInterfaceOdrMergeFailures[DD.Definition].push_back( in MergeDefinitionData()
1248 {NewDD.Definition, &NewDD}); in MergeDefinitionData()
1350 if (DD.Definition == NewDD.Definition) in MergeDefinitionData()
1354 std::make_pair(NewDD.Definition, DD.Definition)); in MergeDefinitionData()
1355 Reader.mergeDefinitionVisibility(DD.Definition, NewDD.Definition); in MergeDefinitionData()
1358 Reader.PendingObjCProtocolOdrMergeFailures[DD.Definition].push_back( in MergeDefinitionData()
1359 {NewDD.Definition, &NewDD}); in MergeDefinitionData()
[all …]
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DDecl.cpp2227 return Definition; in isThisDeclarationADefinition()
2229 return Definition; in isThisDeclarationADefinition()
2240 return Definition; in isThisDeclarationADefinition()
2243 return Definition; in isThisDeclarationADefinition()
2247 return Definition; in isThisDeclarationADefinition()
2279 return Definition; in isThisDeclarationADefinition()
2293 if (Kind == Definition) in getActingDefinition()
2306 if (I->isThisDeclarationADefinition(C) == Definition) in getDefinition()
2318 if (Kind == Definition) in hasDefinition()
3046 bool FunctionDecl::hasBody(const FunctionDecl *&Definition) const { in hasBody()
[all …]
H A DDeclBase.cpp495 const Decl *Definition = nullptr; in getExternalSourceSymbolAttr() local
497 Definition = ID->getDefinition(); in getExternalSourceSymbolAttr()
499 Definition = PD->getDefinition(); in getExternalSourceSymbolAttr()
501 Definition = TD->getDefinition(); in getExternalSourceSymbolAttr()
503 if (!Definition) in getExternalSourceSymbolAttr()
504 Definition = this; in getExternalSourceSymbolAttr()
506 if (auto *attr = Definition->getAttr<ExternalSourceSymbolAttr>()) in getExternalSourceSymbolAttr()
973 const FunctionDecl *Definition; in getBodyRBrace() local
974 if (FD->hasBody(Definition)) in getBodyRBrace()
975 return Definition->getSourceRange().getEnd(); in getBodyRBrace()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp461 Argument *Definition; member
481 ArgumentGraph() { SyntheticRoot.Definition = nullptr; } in ArgumentGraph()
491 Node.Definition = A; in operator []()
909 if (!ArgumentSCC[0]->Definition) in addArgumentAttrs()
915 Argument *A = ArgumentSCC[0]->Definition; in addArgumentAttrs()
932 if (Node->Uses.empty() && !Node->Definition->hasNoCaptureAttr()) { in addArgumentAttrs()
944 ArgumentSCCNodes.insert(I->Definition); in addArgumentAttrs()
949 Argument *A = Use->Definition; in addArgumentAttrs()
962 Argument *A = N->Definition; in addArgumentAttrs()
991 Argument *A = N->Definition; in addArgumentAttrs()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DProcessKDPProperties.td3 let Definition = "processkdp" in {
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFProperties.td3 let Definition = "symbolfiledwarf" in {
/openbsd-src/gnu/llvm/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDBProperties.td3 let Definition = "jitloadergdb" in {
/openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernelProperties.td3 let Definition = "dynamicloaderdarwinkernel" in {
/openbsd-src/gnu/llvm/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLogProperties.td3 let Definition = "darwinlog" in {
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h368 : SExpr(COP_Variable), Name(s), Definition(D) { in SExpr()
374 Definition(D), Cvdecl(Cvd) { in SExpr()
379 : SExpr(Vd), Name(Vd.Name), Definition(D), Cvdecl(Vd.Cvdecl) { in Variable()
397 SExpr *definition() { return Definition; } in definition()
398 const SExpr *definition() const { return Definition; } in definition()
402 void setDefinition(SExpr *E) { Definition = E; } in setDefinition()
426 SExpr *Definition; variable
687 auto E0 = Vs.traverse(VarDecl->Definition, Vs.typeCtx(Ctx)); in traverse()
719 assert(Vd->Definition == nullptr); in SFunction()
721 Vd->Definition = this; in SFunction()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemoteProperties.td3 let Definition = "processgdbremote" in {
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/QemuUser/
H A DPlatformQemuUserProperties.td3 let Definition = "platformqemuuser" in {
/openbsd-src/gnu/llvm/libcxx/docs/Status/
H A DSpaceshipPapers.csv9 `LWG3395 <https://wg21.link/LWG3395>`_,Definition for three-way comparison needs to be updated,|Not…
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DTargetProperties.td3 let Definition = "target_experimental" in {
9 let Definition = "target" in {
187 let Definition = "process_experimental" in {
194 let Definition = "process" in {
255 let Definition = "platform" in {
266 let Definition = "thread" in {

1234567